From d46f234e2234db731981456c431eefb7c9d07b50 Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 8 Apr 2011 15:20:28 +0000 Subject: [PATCH] Added comments git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20669 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../class_newConfigManagement.inc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/gosa-plugins/goto-ng/admin/newConfigManagement/class_newConfigManagement.inc b/gosa-plugins/goto-ng/admin/newConfigManagement/class_newConfigManagement.inc index 3f1dac386..e146ea10d 100644 --- a/gosa-plugins/goto-ng/admin/newConfigManagement/class_newConfigManagement.inc +++ b/gosa-plugins/goto-ng/admin/newConfigManagement/class_newConfigManagement.inc @@ -465,6 +465,9 @@ class newConfigManagement extends plugin } } + + /*! \brief Initiates the creation of a new item + */ function newEntry($type) { $method = $this->cfgItemMap[$type]; @@ -475,6 +478,9 @@ class newConfigManagement extends plugin } + /*! \brief Extracts the item-path out of a path. + * e.g. /debian/squeeze/test/module -> /test/module + */ function getItemPath($fullPath) { $fPath = $fullPath.'/'; @@ -488,6 +494,10 @@ class newConfigManagement extends plugin return(NULL); } + + /*! \brief Extracts the releaes path out of a path. + * e.g. /debian/squeeze/test/module -> /debian/squeeze + */ function getReleasePath($fullPath) { $fullPath.='/'; @@ -500,7 +510,8 @@ class newConfigManagement extends plugin } return(NULL); } - + + function saveItemChanges() { $item = $this->currentObject; -- 2.30.2