summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a072d3c)
raw | patch | inline | side by side (parent: a072d3c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 19 May 2011 07:42:02 +0000 (07:42 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 19 May 2011 07:42:02 +0000 (07:42 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20873 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc | patch | blob | history |
diff --git a/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc b/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc
index 05f9b9c68753fbf807375fe3449e7ce8585a57d9..6a88553e191103aa1668f10c84b4107f25f3796a 100644 (file)
class cfgMgmtListing extends listing{
+ function renderNavigation()
+ {
+ $result= array();
+ $enableBack = true;
+ $enableRoot = true;
+ $enableHome = true;
+
+ $listhead ="";
+ $enableHome = false;
+
+ /* Draw root button */
+ $result["ROOT"]= image('images/lists/root.png', 'ROOT', _("Root"));
+ $result["BACK"]= image('images/lists/back.png', 'BACK', _("Go to preceding level"));
+ $result["HOME"]= image('images/lists/home.png', 'HOME', _("Go to current users level"));
+ $result["RELOAD"]= image('images/lists/reload.png', 'REFRESH', _("Reload list"));
+
+ return ($result);
+ }
+
+
}