Bug 7941 : Fix version numbers in modules
[koha.git] / C4 / Creators.pm
1 package C4::Creators;
2
3 # Copyright 2010 Foundations
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 BEGIN {
21     use version; our $VERSION = qv('3.07.00.049');
22     use vars qw(@EXPORT @ISA);
23     @ISA = qw(Exporter);
24     our @EXPORT = qw(get_all_templates
25                      get_all_layouts
26                      get_all_profiles
27                      get_all_image_names
28                      get_batch_summary
29                      get_label_summary
30                      get_card_summary
31                      get_barcode_types
32                      get_label_types
33                      get_font_types
34                      get_text_justification_types
35                      get_output_formats
36                      get_column_names
37                      get_table_names
38                      get_unit_values
39                      html_table
40     );
41     use C4::Creators::Lib 1.000000;
42     use C4::Creators::PDF 1.000000;
43 }
44
45 1;