Layout: Content als eigenes Layout und Split compositor
[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 use SL::Layout::Split;
10 use SL::Layout::Content;
11
12 sub init_sub_layouts {
13   [
14     SL::Layout::None->new,
15     SL::Layout::Top->new,
16     SL::Layout::Split->new(
17       left  => [ SL::Layout::MenuLeft->new ],
18       right => [ SL::Layout::Content->new ],
19     )
20   ]
21 }
22
23 1;