projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
E-Mails als HTML verschicken: Bearbeiten Benutzer-Signatur (Admin-Bereich)
[kivitendo-erp.git]
/
SL
/
Layout
/
MaterialMenu.pm
1
package SL::Layout::MaterialMenu;
2
3
use strict;
4
use parent qw(SL::Layout::Base);
5
use SL::Menu;
6
use SL::Controller::Base;
7
8
sub init_menu {
9
SL::Menu->new('mobile');
10
}
11
12
sub pre_content {
13
$_[0]->presenter->render('menu/menu', menu => $_[0]->menu, C => SL::Controller::Base->new);
14
}
15
16
1;