File Coverage

File:C4/Creators.pm
Coverage:100.0%

linestmtbrancondsubtimecode
1package C4::Creators;
2
3BEGIN {
4
3
3
3
3
44822
28865
44
26
    use version; our $VERSION = qv('1.0.0_1');
5
3
3
3
848
4
367
    use vars qw(@EXPORT @ISA);
6
3
74
    @ISA = qw(Exporter);
7
3
68
    our @EXPORT = qw(get_all_templates
8                     get_all_layouts
9                     get_all_profiles
10                     get_all_image_names
11                     get_batch_summary
12                     get_label_summary
13                     get_card_summary
14                     get_barcode_types
15                     get_label_types
16                     get_font_types
17                     get_text_justification_types
18                     get_output_formats
19                     get_column_names
20                     get_table_names
21                     get_unit_values
22                     html_table
23    );
24
3
3
3
247
132
510
    use C4::Creators::Lib 1.000000;
25
3
3
3
173
114
63
    use C4::Creators::PDF 1.000000;
26}
27
281;