Bug 28787: Don't request a token if no email address defined
[koha.git] / C4 / Patroncards.pm
1 package C4::Patroncards;
2
3 use Modern::Perl;
4
5 BEGIN {
6     use vars qw(@EXPORT @ISA);
7     @ISA = qw(Exporter);
8     our @EXPORT = qw(unpack_UTF8
9                      text_alignment
10                      leading
11                      box
12                      get_borrower_attributes
13                      put_image
14                      get_image
15                      rm_image
16     );
17     use C4::Patroncards::Batch;
18     use C4::Patroncards::Layout;
19     use C4::Patroncards::Lib qw(
20     box
21     get_borrower_attributes
22     get_image
23     leading
24     put_image
25     rm_image
26     text_alignment
27     unpack_UTF8
28 );
29     use C4::Patroncards::Patroncard;
30     use C4::Patroncards::Profile;
31     use C4::Patroncards::Template;
32 }
33
34 1;