Bug 14494: Prevent slow checkout if the patron does not have an expiry date
[koha.git] / Koha.pm
1 package Koha;
2
3 # Copyright 2015 BibLibre
4 # Copyright 2015 Theke Solutions
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22
23 use vars qw{ $VERSION };
24
25 #the kohaversion is divided in 4 parts :
26 # - #1 : the major number. 3 atm
27 # - #2 : the functional release. 00 atm
28 # - #3 : the subnumber, moves only on a public release
29 # - #4 : the developer version. The 4th number is the database subversion.
30 #        used by developers when the database changes. updatedatabase take care of the changes itself
31 #        and is automatically called by Auth.pm when needed.
32 $VERSION = "3.21.00.014";
33
34 sub version {
35     return $VERSION;
36 }
37
38 1;
39
40 =head1 NAME
41
42 Koha - The world's first free and open source library system.
43
44 =head1 SYNOPSIS
45
46 At the moment this module only provides a version subroutine.
47
48 =head1 METHODS
49
50 =head2 version
51
52     use Koha;
53
54     my $version = Koha::version;
55
56 =head1 SEE ALSO
57
58 C4::Context
59
60 kohaversion.pl
61
62 =head1 AUTHORS
63
64 Jonathan Druart <jonathan.druart@biblibre.com>
65
66 Tomas Cohen Arazi <tomascohen@gmail.com>
67
68 =cut