Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 BEGIN {
23     use vars qw(@EXPORT @ISA);
24     @ISA = qw(Exporter);
25     our @EXPORT = qw(get_all_templates
26                      get_all_layouts
27                      get_all_profiles
28                      get_all_image_names
29                      get_batch_summary
30                      get_label_summary
31                      get_card_summary
32                      get_barcode_types
33                      get_label_types
34                      get_font_types
35                      get_text_justification_types
36                      get_output_formats
37                      get_table_names
38                      get_unit_values
39                      html_table
40     );
41     use C4::Creators::Lib;
42     use C4::Creators::PDF;
43 }
44
45 1;