Revision e0a3b19e
Von Sven Schöling vor mehr als 8 Jahren hinzugefügt
SL/Layout/Classic.pm | ||
---|---|---|
use SL::Layout::MenuLeft;
|
||
use SL::Layout::None;
|
||
use SL::Layout::Split;
|
||
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::Split->new(
|
||
left => [ SL::Layout::MenuLeft->new ],
|
||
right => [ SL::Layout::Content->new ],
|
||
right => [ $_[0]->sub_layouts_by_name->{actionbar}, SL::Layout::Content->new ],
|
||
)
|
||
]
|
||
}
|
Auch abrufbar als: Unified diff
ActionBar: Funktionierender Prototyp mit submit und actionbutton