summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-09-24 15:11:50 +0200
committerPhilip Häusler <msquare@notrademark.de>2014-09-24 15:11:50 +0200
commit07b65412043c89a6a3176f202498f8a603c15dfb (patch)
treee513a5e183d87e4142dacee4e0c16dbfa05c277b /includes/sys_template.php
parent094715e6eea83c56891716c24b652b35f18337bd (diff)
move language to submenu
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index b18abe53..aaa79993 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -36,6 +36,10 @@ function toolbar_item_link($href, $glyphicon, $label, $selected = false) {
return '<li class="' . ($selected ? 'active' : '') . '"><a href="' . $href . '">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . '</a></li>';
}
+function toolbar_item_divider() {
+ return '<li class="divider"></li>';
+}
+
function toolbar_dropdown($glyphicon, $label, $submenu) {
return '<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a>