Browse Source

Stats.pm - BEGIN block VERSION and vars related to export.

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
3.0.x
Joe Atzberger 17 years ago
committed by Joshua Ferraro
parent
commit
e3e8f09a3e
  1. 20
      C4/Stats.pm

20
C4/Stats.pm

@ -23,8 +23,16 @@ require Exporter;
use C4::Context;
use vars qw($VERSION @ISA @EXPORT);
# set the version for version checking
$VERSION = 3.00;
BEGIN {
# set the version for version checking
$VERSION = 3.01;
@ISA = qw(Exporter);
@EXPORT = qw(
&UpdateStats
&TotalPaid
);
}
=head1 NAME
@ -43,14 +51,6 @@ the Koha database, which acts as an activity log.
=over 2
=cut
@ISA = qw(Exporter);
@EXPORT = qw(
&UpdateStats
&TotalPaid
);
=item UpdateStats
&UpdateStats($branch, $type, $value, $other, $itemnumber,

Loading…
Cancel
Save