projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
075607c
)
ActionBar: V3 Layout
author
Sven Schöling
<s.schoeling@linet-services.de>
Thu, 20 Oct 2016 09:40:54 +0000
(11:40 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 28 Feb 2017 09:04:33 +0000
(10:04 +0100)
SL/Layout/V3.pm
patch
|
blob
|
history
diff --git
a/SL/Layout/V3.pm
b/SL/Layout/V3.pm
index
bc4ecb7
..
dc39a18
100644
(file)
--- a/
SL/Layout/V3.pm
+++ b/
SL/Layout/V3.pm
@@
-6,13
+6,17
@@
use parent qw(SL::Layout::Base);
use SL::Layout::None;
use SL::Layout::Top;
use SL::Layout::CssMenu;
+use SL::Layout::ActionBar;
use SL::Layout::Content;
sub init_sub_layouts {
+ $_[0]->sub_layouts_by_name->{actionbar} = SL::Layout::ActionBar->new;
+
[
SL::Layout::None->new,
SL::Layout::Top->new,
SL::Layout::CssMenu->new,
+ $_[0]->sub_layouts_by_name->{actionbar},
SL::Layout::Content->new,
]
}