From ae587968dadd1dd3feb7881c93f80fb921ebff3d Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 19 Nov 2006 09:23:26 +0000 Subject: [PATCH] removed get_configDescriptions() --- lam/docs/devel/mod_config.htm | 56 ----------------------------------- 1 file changed, 56 deletions(-) diff --git a/lam/docs/devel/mod_config.htm b/lam/docs/devel/mod_config.htm index 9aae47e0..995366ac 100644 --- a/lam/docs/devel/mod_config.htm +++ b/lam/docs/devel/mod_config.htm @@ -5,7 +5,6 @@ -

Module HowTo - Configuration options


@@ -193,61 +192,6 @@ check for the nonexistant option "cmpGID" and define it as optional. This will do the comparison check.


-

3. Descriptions

-What is still missing is a descriptive title for the fieldset in the -configuration editor and a description for each configuration option -which is displayed when the user saves the settings.
-
-These descriptions are defined with get_configDescriptions() -or meta['config_descriptions'].
-
-Example:
-
-The posixGroup module will -set a title for the fieldset and a description for the three -configuration options.
-
- - - - - - -
    /**
-    * Returns meta data that is interpreted by parent -class
-    *
-    * @return array array with meta data
-    */
-    function -get_metaData() {
-        $return = array();
-        // configuration descriptions
-        $return['config_descriptions'] = array(
-            'legend' => -_("GID ranges for Unix groups"),
-            'descriptions' -=> array(
-               - 'posixGroup_minGID' => _("Minimum GID number for Unix groups"),
-               - 'posixGroup_maxGID' => _("Maximum GID number for Unix groups"),
-               - 'posixGroup_pwdHash' => _("Password hash type for Unix -groups"),
-            )
-        );
-        [...]
-
-
-This will set the fieldset title to "GID ranges for Unix groups" and -the descriptions for the settings list.
- -

-