Revision 5a55ac86
Von Sven Schöling vor etwa 7 Jahren hinzugefügt
SL/Layout/ActionBar.pm | ||
---|---|---|
10 | 10 |
use SL::Layout::ActionBar::Link; |
11 | 11 |
use SL::Layout::ActionBar::Separator; |
12 | 12 |
|
13 |
use SL::Presenter::Tag qw(html_tag); |
|
14 |
|
|
13 | 15 |
use constant HTML_CLASS => 'layout-actionbar'; |
14 | 16 |
|
15 | 17 |
use Rose::Object::MakeMethods::Generic ( |
... | ... | |
30 | 32 |
|
31 | 33 |
my $content = join '', map { $_->render } @{ $self->actions }; |
32 | 34 |
return if !$content; |
33 |
$::request->presenter->html_tag('div', $content, class => HTML_CLASS);
|
|
35 |
html_tag('div', $content, class => HTML_CLASS); |
|
34 | 36 |
} |
35 | 37 |
|
36 | 38 |
sub javascripts_inline { |
Auch abrufbar als: Unified diff
Presenter: Neue Struktur im Layout umgesetzt