projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Pflichtenheft: Zugriff auf nicht vorhandenes »visible_item« verhindern
[kivitendo-erp.git]
/
SL
/
Layout
/
CssMenu.pm
1
package SL::Layout::CssMenu;
2
3
use strict;
4
use parent qw(SL::Layout::Base);
5
6
sub use_stylesheet {
7
qw(icons16.css),
8
}
9
10
sub pre_content {
11
$_[0]->presenter->render('menu/menuv3', menu => $_[0]->menu);
12
}
13
14
1;