1 package C4::Labels::Template;
6 use base qw(C4::Creators::Template);
8 use autouse 'Data::Dumper' => qw(Dumper);
11 use version; our $VERSION = qv('3.07.00.049');
14 use constant TEMPLATE_TABLE => 'creator_templates';
16 __PACKAGE__ =~ m/^C4::(.+)::.+$/;
21 push @_, "creator", $me;
22 return $self->SUPER::new(@_);
27 push @_, "table_name", TEMPLATE_TABLE, "creator", $me;
28 return $self->SUPER::retrieve(@_);
33 push @_, "table_name", TEMPLATE_TABLE, "creator", $me;
34 return $self->SUPER::delete(@_);
39 push @_, "table_name", TEMPLATE_TABLE, "creator", $me;
40 return $self->SUPER::save(@_);