View | Details | Raw Unified | Return to bug 13758
Collapse All | Expand All

(-)a/Koha.pm (-1 / +48 lines)
Lines 1-5 Link Here
1
package Koha;
1
package Koha;
2
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
3
use Modern::Perl;
21
use Modern::Perl;
4
22
5
use vars qw{ $VERSION };
23
use vars qw{ $VERSION };
Lines 18-20 sub version { Link Here
18
}
36
}
19
37
20
1;
38
1;
21
- 
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

Return to bug 13758