130e3d9c10
This patch touches a lot of code, but basically it removes version information from use C4::* in our code. Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> All script still compiles after the patch (confirmed by pre-applypatch hook)
24 lines
615 B
Perl
24 lines
615 B
Perl
package C4::Patroncards;
|
|
|
|
BEGIN {
|
|
use version; our $VERSION = qv('3.07.00.049');
|
|
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;
|
|
use C4::Patroncards::Layout;
|
|
use C4::Patroncards::Lib;
|
|
use C4::Patroncards::Patroncard;
|
|
use C4::Patroncards::Profile;
|
|
use C4::Patroncards::Template;
|
|
}
|
|
|
|
1;
|