Lines 30-37
use C4::Creators::Layout;
Link Here
|
30 |
use C4::Creators::Template; |
30 |
use C4::Creators::Template; |
31 |
use C4::Creators; |
31 |
use C4::Creators; |
32 |
use C4::Labels; |
32 |
use C4::Labels; |
|
|
33 |
use C4::Labels::Layout; |
33 |
|
34 |
|
34 |
my $cgi = new CGI; |
35 |
my $cgi = new CGI; |
|
|
36 |
my $layout = C4::Labels::Layout->new(); |
35 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
37 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
36 |
{ |
38 |
{ |
37 |
template_name => "labels/label-home.tt", |
39 |
template_name => "labels/label-home.tt", |
Lines 46-52
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
Link Here
|
46 |
my $op = $cgi->param('op') || ''; |
48 |
my $op = $cgi->param('op') || ''; |
47 |
my $layout_id = $cgi->param('layout_id') || $cgi->param('element_id') || ''; |
49 |
my $layout_id = $cgi->param('layout_id') || $cgi->param('element_id') || ''; |
48 |
my $layout_choice = $cgi->param('layout_choice') || ''; |
50 |
my $layout_choice = $cgi->param('layout_choice') || ''; |
49 |
my $layout = C4::Labels::Layout->new(); |
|
|
50 |
|
51 |
|
51 |
sub _set_selected { |
52 |
sub _set_selected { |
52 |
my ($type_list, $object, $data_type) = @_; |
53 |
my ($type_list, $object, $data_type) = @_; |
53 |
- |
|
|