projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of github.com:kivitendo/kivitendo-erp
[kivitendo-erp.git]
/
SL
/
Layout
/
Classic.pm
1
package SL::Layout::Classic;
2
3
use strict;
4
use parent qw(SL::Layout::Base);
5
6
use SL::Layout::Top;
7
use SL::Layout::MenuLeft;
8
use SL::Layout::None;
9
10
sub init_sub_layouts {
11
[
12
SL::Layout::None->new,
13
SL::Layout::Top->new,
14
SL::Layout::MenuLeft->new,
15
]
16
}
17
18
1;