Bug 11349: Change .tmpl -> .tt in scripts using templates
[koha.git] / C4 / Patroncards.pm
1 package C4::Patroncards;
2
3 BEGIN {
4     use version; our $VERSION = qv('3.07.00.049');
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;
17     use C4::Patroncards::Layout;
18     use C4::Patroncards::Lib;
19     use C4::Patroncards::Patroncard;
20     use C4::Patroncards::Profile;
21     use C4::Patroncards::Template;
22 }
23
24 1;