From c8cc24c999de8a30261bbc39497d391fde8ecb00 Mon Sep 17 00:00:00 2001 From: hickert Date: Thu, 19 May 2011 07:42:02 +0000 Subject: [PATCH] Updated management listing git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20873 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../class_cfgMgmtListing.inc | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc b/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc index 05f9b9c68..6a88553e1 100644 --- a/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc +++ b/gosa-plugins/goto-ng/admin/newConfigManagement/class_cfgMgmtListing.inc @@ -2,6 +2,26 @@ 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); + } + + } -- 2.30.2