Bug 7143: Follow up patch for Updating about.tt
[koha.git] / C4 / Patroncards.pm
1 package C4::Patroncards;
2
3 BEGIN {
4     use version; our $VERSION = qv('1.0.0_1');
5     use vars qw(@EXPORT @ISA);
6     @ISA = qw(Exporter);
7     our @EXPORT = qw(unpack_UTF8
8                      text_alignment
9                      leading
10                      box
11                      get_borrower_attributes
12                      put_image
13                      get_image
14                      rm_image
15     );
16     use C4::Patroncards::Batch 1.000000;
17     use C4::Patroncards::Layout 1.000000;
18     use C4::Patroncards::Lib 1.000000;
19     use C4::Patroncards::Patroncard 1.000000;
20     use C4::Patroncards::Profile 1.000000;
21     use C4::Patroncards::Template 1.000000;
22 }
23
24 1;