kivitendo/SL/Controller/Layout/Classic.pm @ fb005f3f
4a12c839 | Sven Schöling | package SL::Controller::Layout::Classic;
|
||
use strict;
|
||||
use parent qw(SL::Controller::Layout::Base);
|
||||
use SL::Controller::Layout::Top;
|
||||
use SL::Controller::Layout::MenuLeft;
|
||||
sub new {
|
||||
my ($class, @slurp) = @_;
|
||||
my $self = $class->SUPER::new(@slurp);
|
||||
a8814e0e | Sven Schöling | $self->add_sub_layouts([
|
||
SL::Controller::Layout::Top->new,
|
||||
SL::Controller::Layout::MenuLeft->new,
|
||||
f7f03503 | Sven Schöling | SL::Controller::Layout::None->new,
|
||
a8814e0e | Sven Schöling | ]);
|
||
0f179c9a | Sven Schöling | |||
4a12c839 | Sven Schöling | $self;
|
||
}
|
||||
1;
|