Koha/C4/Patroncards.pm
Chris Nighswonger 84d5b28f12 Bringing label, patroncard, and creator modules into conformity with the rest of C4 style.
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-02-08 20:54:34 -05:00

24 lines
666 B
Perl

package C4::Patroncards;
BEGIN {
use version; our $VERSION = qv('1.0.0_1');
use vars qw(@EXPORT, @ISA);
@ISA = qw(Exporter);
our @EXPORT = qw(unpack_UTF8
text_alignment
leading
box
get_borrower_attributes
put_image
get_image
rm_image
);
use C4::Patroncards::Batch 1.000000;
use C4::Patroncards::Layout 1.000000;
use C4::Patroncards::Lib 1.000000;
use C4::Patroncards::Patroncard 1.000000;
use C4::Patroncards::Profile 1.000000;
use C4::Patroncards::Template 1.000000;
}
1;