<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://gwiki3.thatlinuxbox.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ablankstein</id>
		<title>GeeklogWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://gwiki3.thatlinuxbox.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ablankstein"/>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/Special:Contributions/Ablankstein"/>
		<updated>2026-04-05T02:01:22Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.5</generator>

	<entry>
		<id>http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4620</id>
		<title>Configuration Class</title>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4620"/>
				<updated>2008-05-11T16:50:45Z</updated>
		
		<summary type="html">&lt;p&gt;Ablankstein: /* Function Reference */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Adding Configuration Paramaters ==&lt;br /&gt;
&lt;br /&gt;
To add configuration settings to the config, several files must be altered.&lt;br /&gt;
&lt;br /&gt;
First, admin/install/config-install.php must be altered by adding a new $c-&amp;gt;add() line. This will also involves adding entries to the core config lang arrays in the language files.&lt;br /&gt;
&lt;br /&gt;
Then, the same $c-&amp;gt;add() line must be added to the function create_ConfValues() in the sql/updates/m*sql_1.x_to_1.x.php files.&lt;br /&gt;
&lt;br /&gt;
== Function Reference ==&lt;br /&gt;
&lt;br /&gt;
'''public add()'''&lt;br /&gt;
&lt;br /&gt;
This function will add a variable to the database&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
 string ''$param_name''&lt;br /&gt;
   name of the parameter to add&lt;br /&gt;
 mixed  ''$default_value''    &lt;br /&gt;
   the default value of the parameter (also will be the initial value)&lt;br /&gt;
 string ''$type''             &lt;br /&gt;
   This is the type of the configuration variable&lt;br /&gt;
   If the configuration variable is an array, prefix this string with&lt;br /&gt;
       '@' if the administrator should NOT be able to add or remove keys&lt;br /&gt;
       '*' if the administrator should be able to add named keys&lt;br /&gt;
       '%' if the administrator should be able to add numbered keys&lt;br /&gt;
   These symbols can be repeated like such: @@text if the configuration variable is an array of arrays of text.&lt;br /&gt;
   The base variable types are:&lt;br /&gt;
       'text'    textbox displayed     string  value stored&lt;br /&gt;
       'select'  selectbox displayed   string  value stored&lt;br /&gt;
       'hidden'  no display            string  value stored&lt;br /&gt;
 int ''$subgroup''&lt;br /&gt;
   subgroup of the variable - the integer is the index of the lang array for the subgroup&lt;br /&gt;
 int ''$fieldset''&lt;br /&gt;
   the fieldset to display the variable under - the integer is the index of the lang array for the fieldset&lt;br /&gt;
 int  ''$selection_array''&lt;br /&gt;
   These are the possible selections for the 'select' type. This MUST be passed if you use the 'select' type - otherwise it will just display a textbox (defaults to NULL) - the integer is the index of the lang array for the selection array &lt;br /&gt;
 int    ''$sort''&lt;br /&gt;
   sort rank on the user interface (ascending, defaults to 0)&lt;br /&gt;
 boolean ''$set''            &lt;br /&gt;
   Whether or not this parameter is set (defaults to TRUE)&lt;br /&gt;
 string  ''$group''&lt;br /&gt;
   The group (or plugin) for the config option (defaults to &amp;quot;Core&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''public static get_instance()'''&lt;br /&gt;
&lt;br /&gt;
This function will return an instance of the config class. If an instance does not exist, then it will create a new one. Only one instance will ever exist.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''group_name''&lt;br /&gt;
    This is simply the group name that this config object will control - for the main gl settings this is 'Core'&lt;br /&gt;
&lt;br /&gt;
'''public config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the core config array.&lt;br /&gt;
&lt;br /&gt;
'''public set()'''&lt;br /&gt;
&lt;br /&gt;
This function sets a configuration variable to a value in the database and in the current array. If the variable does not already exist, nothing will happen.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''variable_name''&lt;br /&gt;
    This is the name of the variable to change&lt;br /&gt;
 mixed ''value''&lt;br /&gt;
    This is the new value for the variable.&lt;br /&gt;
 string  ''$group''&lt;br /&gt;
    The group (or plugin) for the config option (defaults to &amp;quot;Core&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;get_config()'''&lt;br /&gt;
This returns the config array for the given group.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''$group''&lt;br /&gt;
    The group (or plugin) for the config array&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;init_config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the configuration variables array (e.g. $_CONF) and initializes the core config values.&lt;br /&gt;
&lt;br /&gt;
'''public set_configfile()'''&lt;br /&gt;
&lt;br /&gt;
This function sets the secure configuration file (database related settings) for the configuration class to read. This should only need to be called for the 'Core' group. It also ''must'' be called before load_baseconfig()&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''$sf''&lt;br /&gt;
    This is the path and name of the secure configuration file.&lt;br /&gt;
&lt;br /&gt;
'''public load_baseconfig()'''&lt;br /&gt;
&lt;br /&gt;
This function reads the secure configuration file and loads lib-database.php. This needs to be called in the 'Core' group before &amp;amp;init_config() can be used. It only needs to be called once.&lt;/div&gt;</summary>
		<author><name>Ablankstein</name></author>	</entry>

	<entry>
		<id>http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4619</id>
		<title>Configuration Class</title>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4619"/>
				<updated>2008-05-11T16:46:05Z</updated>
		
		<summary type="html">&lt;p&gt;Ablankstein: /* Function Reference */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Adding Configuration Paramaters ==&lt;br /&gt;
&lt;br /&gt;
To add configuration settings to the config, several files must be altered.&lt;br /&gt;
&lt;br /&gt;
First, admin/install/config-install.php must be altered by adding a new $c-&amp;gt;add() line. This will also involves adding entries to the core config lang arrays in the language files.&lt;br /&gt;
&lt;br /&gt;
Then, the same $c-&amp;gt;add() line must be added to the function create_ConfValues() in the sql/updates/m*sql_1.x_to_1.x.php files.&lt;br /&gt;
&lt;br /&gt;
== Function Reference ==&lt;br /&gt;
&lt;br /&gt;
'''public add()'''&lt;br /&gt;
&lt;br /&gt;
This function will add a variable to the database&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
 string ''$param_name''&lt;br /&gt;
   name of the parameter to add&lt;br /&gt;
 mixed  ''$default_value''    &lt;br /&gt;
   the default value of the parameter (also will be the initial value)&lt;br /&gt;
 string ''$type''             &lt;br /&gt;
   This is the type of the configuration variable&lt;br /&gt;
   If the configuration variable is an array, prefix this string with&lt;br /&gt;
       '@' if the administrator should NOT be able to add or remove keys&lt;br /&gt;
       '*' if the administrator should be able to add named keys&lt;br /&gt;
       '%' if the administrator should be able to add numbered keys&lt;br /&gt;
   These symbols can be repeated like such: @@text if the configuration variable is an array of arrays of text.&lt;br /&gt;
   The base variable types are:&lt;br /&gt;
       'text'    textbox displayed     string  value stored&lt;br /&gt;
       'select'  selectbox displayed   string  value stored&lt;br /&gt;
       'hidden'  no display            string  value stored&lt;br /&gt;
 int ''$subgroup''&lt;br /&gt;
   subgroup of the variable - the integer is the index of the lang array for the subgroup&lt;br /&gt;
 int ''$fieldset''&lt;br /&gt;
   the fieldset to display the variable under - the integer is the index of the lang array for the fieldset&lt;br /&gt;
 int  ''$selection_array''&lt;br /&gt;
   These are the possible selections for the 'select' type. This MUST be passed if you use the 'select' type - otherwise it will just display a textbox (defaults to NULL) - the integer is the index of the lang array for the selection array &lt;br /&gt;
 int    ''$sort''&lt;br /&gt;
   sort rank on the user interface (ascending, defaults to 0)&lt;br /&gt;
 boolean ''$set''            &lt;br /&gt;
   Whether or not this parameter is set (defaults to TRUE)&lt;br /&gt;
 string  ''$group''&lt;br /&gt;
   The group (or plugin) for the config option (defaults to &amp;quot;Core&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''public static get_instance()'''&lt;br /&gt;
&lt;br /&gt;
This function will return an instance of the config class. If an instance does not exist, then it will create a new one. Only one instance will ever exist.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''group_name''&lt;br /&gt;
    This is simply the group name that this config object will control - for the main gl settings this is 'Core'&lt;br /&gt;
&lt;br /&gt;
'''public config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the core config array.&lt;br /&gt;
&lt;br /&gt;
'''public set()'''&lt;br /&gt;
&lt;br /&gt;
This function sets a configuration variable to a value in the database and in the current array. If the variable does not already exist, nothing will happen.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''variable_name''&lt;br /&gt;
    This is the name of the variable to change&lt;br /&gt;
 mixed ''value''&lt;br /&gt;
    This is the new value for the variable.&lt;br /&gt;
 string  ''$group''&lt;br /&gt;
   The group (or plugin) for the config option (defaults to &amp;quot;Core&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;init_config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the configuration variables array (e.g. $_CONF) and initializes the core config values.&lt;br /&gt;
&lt;br /&gt;
'''public set_configfile()'''&lt;br /&gt;
&lt;br /&gt;
This function sets the secure configuration file (database related settings) for the configuration class to read. This should only need to be called for the 'Core' group. It also ''must'' be called before load_baseconfig()&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''$sf''&lt;br /&gt;
    This is the path and name of the secure configuration file.&lt;br /&gt;
&lt;br /&gt;
'''public load_baseconfig()'''&lt;br /&gt;
&lt;br /&gt;
This function reads the secure configuration file and loads lib-database.php. This needs to be called in the 'Core' group before &amp;amp;init_config() can be used. It only needs to be called once.&lt;/div&gt;</summary>
		<author><name>Ablankstein</name></author>	</entry>

	<entry>
		<id>http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4318</id>
		<title>Configuration Class</title>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4318"/>
				<updated>2007-09-09T12:40:37Z</updated>
		
		<summary type="html">&lt;p&gt;Ablankstein: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Adding Configuration Paramaters ==&lt;br /&gt;
&lt;br /&gt;
To add configuration settings to the config, several files must be altered.&lt;br /&gt;
&lt;br /&gt;
First, admin/install/config-install.php must be altered by adding a new $c-&amp;gt;add() line. This will also involves adding entries to the core config lang arrays in the language files.&lt;br /&gt;
&lt;br /&gt;
Then, the same $c-&amp;gt;add() line must be added to the function create_ConfValues() in the sql/updates/m*sql_1.x_to_1.x.php files.&lt;br /&gt;
&lt;br /&gt;
== Function Reference ==&lt;br /&gt;
&lt;br /&gt;
'''public add()'''&lt;br /&gt;
&lt;br /&gt;
This function will add a variable to the database&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
 string ''$param_name''&lt;br /&gt;
   name of the parameter to add&lt;br /&gt;
 mixed  ''$default_value''    &lt;br /&gt;
   the default value of the parameter (also will be the initial value)&lt;br /&gt;
 string ''$type''             &lt;br /&gt;
   This is the type of the configuration variable&lt;br /&gt;
   If the configuration variable is an array, prefix this string with&lt;br /&gt;
       '@' if the administrator should NOT be able to add or remove keys&lt;br /&gt;
       '*' if the administrator should be able to add named keys&lt;br /&gt;
       '%' if the administrator should be able to add numbered keys&lt;br /&gt;
   These symbols can be repeated like such: @@text if the configuration variable is an array of arrays of text.&lt;br /&gt;
   The base variable types are:&lt;br /&gt;
       'text'    textbox displayed     string  value stored&lt;br /&gt;
       'select'  selectbox displayed   string  value stored&lt;br /&gt;
       'hidden'  no display            string  value stored&lt;br /&gt;
 int ''$subgroup''&lt;br /&gt;
   subgroup of the variable - the integer is the index of the lang array for the subgroup&lt;br /&gt;
 int ''$fieldset''&lt;br /&gt;
   the fieldset to display the variable under - the integer is the index of the lang array for the fieldset&lt;br /&gt;
 int  ''$selection_array''&lt;br /&gt;
   These are the possible selections for the 'select' type. This MUST be passed if you use the 'select' type - otherwise it will just display a textbox (defaults to NULL) - the integer is the index of the lang array for the selection array &lt;br /&gt;
 int    ''$sort''&lt;br /&gt;
   sort rank on the user interface (ascending, defaults to 0)&lt;br /&gt;
 boolean ''$set''            &lt;br /&gt;
   Whether or not this parameter is set (defaults to TRUE)&lt;br /&gt;
&lt;br /&gt;
'''public static create()'''&lt;br /&gt;
&lt;br /&gt;
This function will return an instance of the config class. If an instance with the given group/reference name does not exist, then it will create a new one. This function insures that there is only one instance for a given group name.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''group_name''&lt;br /&gt;
    This is simply the group name that this config object will control - for the main gl settings this is 'Core'&lt;br /&gt;
&lt;br /&gt;
'''public set()'''&lt;br /&gt;
&lt;br /&gt;
This function sets a configuration variable to a value in the database and in the current array. If the variable does not already exist, nothing will happen.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''variable_name''&lt;br /&gt;
    This is the name of the variable to change&lt;br /&gt;
 mixed ''value''&lt;br /&gt;
    This is the new value for the variable.&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;init_config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the configuration variables array (e.g. $_CONF)&lt;br /&gt;
&lt;br /&gt;
'''public set_configfile()'''&lt;br /&gt;
&lt;br /&gt;
This function sets the secure configuration file (database related settings) for the configuration class to read. This should only need to be called for the 'Core' group. It also ''must'' be called before load_baseconfig()&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''$sf''&lt;br /&gt;
    This is the path and name of the secure configuration file.&lt;br /&gt;
&lt;br /&gt;
'''public load_baseconfig()'''&lt;br /&gt;
&lt;br /&gt;
This function reads the secure configuration file and loads lib-database.php. This needs to be called in the 'Core' group before &amp;amp;init_config() can be used. It only needs to be called once.&lt;/div&gt;</summary>
		<author><name>Ablankstein</name></author>	</entry>

	<entry>
		<id>http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4311</id>
		<title>Configuration Class</title>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4311"/>
				<updated>2007-08-17T16:10:34Z</updated>
		
		<summary type="html">&lt;p&gt;Ablankstein: /* Function Reference */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Function Reference ==&lt;br /&gt;
&lt;br /&gt;
'''public add()'''&lt;br /&gt;
&lt;br /&gt;
This function will add a variable to the database&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
 string ''$param_name''&lt;br /&gt;
   name of the parameter to add&lt;br /&gt;
 mixed  ''$default_value''    &lt;br /&gt;
   the default value of the parameter (also will be the initial value)&lt;br /&gt;
 string ''$display_name''     &lt;br /&gt;
   name that will be displayed on the user interface&lt;br /&gt;
 string ''$type''             &lt;br /&gt;
   This is the type of the configuration variable&lt;br /&gt;
   If the configuration variable is an array, prefix this string with&lt;br /&gt;
       '@' if the administrator should NOT be able to add or remove keys&lt;br /&gt;
       '*' if the administrator should be able to add named keys&lt;br /&gt;
       '%' if the administrator should be able to add numbered keys&lt;br /&gt;
   These symbols can be repeated like such: @@text if the configuration variable is an array of arrays of text.&lt;br /&gt;
   The base variable types are:&lt;br /&gt;
       'text'    textbox displayed     string  value stored&lt;br /&gt;
       'select'  selectbox displayed   string  value stored&lt;br /&gt;
       'hidden'  no display            string  value stored&lt;br /&gt;
 string ''$subgroup''&lt;br /&gt;
   subgroup of the variable&lt;br /&gt;
 string ''$fieldset''&lt;br /&gt;
   the fieldset to display the variable under&lt;br /&gt;
 array  ''$selection_array''&lt;br /&gt;
   These are the possible selections for the 'select' type. This MUST be passed if you use the 'select' type - otherwise it will just display a textbox (defaults to NULL)&lt;br /&gt;
 int    ''$sort''&lt;br /&gt;
   sort rank on the user interface (ascending, defaults to 0)&lt;br /&gt;
 boolean ''$set''            &lt;br /&gt;
   Whether or not this parameter is set (defaults to TRUE)&lt;br /&gt;
&lt;br /&gt;
'''public static create()'''&lt;br /&gt;
&lt;br /&gt;
This function will return an instance of the config class. If an instance with the given group/reference name does not exist, then it will create a new one. This function insures that there is only one instance for a given group name.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''group_name''&lt;br /&gt;
    This is simply the group name that this config object will control - for the main gl settings this is 'Core'&lt;br /&gt;
&lt;br /&gt;
'''public set()'''&lt;br /&gt;
&lt;br /&gt;
This function sets a configuration variable to a value in the database and in the current array. If the variable does not already exist, nothing will happen.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''variable_name''&lt;br /&gt;
    This is the name of the variable to change&lt;br /&gt;
 mixed ''value''&lt;br /&gt;
    This is the new value for the variable.&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;init_config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the configuration variables array (e.g. $_CONF)&lt;br /&gt;
&lt;br /&gt;
'''public set_configfile()'''&lt;br /&gt;
&lt;br /&gt;
This function sets the secure configuration file (database related settings) for the configuration class to read. This should only need to be called for the 'Core' group. It also ''must'' be called before load_baseconfig()&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string ''$sf''&lt;br /&gt;
    This is the path and name of the secure configuration file.&lt;br /&gt;
&lt;br /&gt;
'''public load_baseconfig()'''&lt;br /&gt;
&lt;br /&gt;
This function reads the secure configuration file and loads lib-database.php. This needs to be called in the 'Core' group before &amp;amp;init_config() can be used. It only needs to be called once.&lt;/div&gt;</summary>
		<author><name>Ablankstein</name></author>	</entry>

	<entry>
		<id>http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4310</id>
		<title>Configuration Class</title>
		<link rel="alternate" type="text/html" href="http://gwiki3.thatlinuxbox.com/index.php?title=Configuration_Class&amp;diff=4310"/>
				<updated>2007-08-17T16:03:53Z</updated>
		
		<summary type="html">&lt;p&gt;Ablankstein: Added Some Functions Reference&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Function Reference ==&lt;br /&gt;
&lt;br /&gt;
'''public add()'''&lt;br /&gt;
&lt;br /&gt;
This function will add a variable to the database&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
 string ''$param_name''&lt;br /&gt;
   name of the parameter to add&lt;br /&gt;
 mixed  ''$default_value''    &lt;br /&gt;
   the default value of the parameter (also will be the initial value)&lt;br /&gt;
 string ''$display_name''     &lt;br /&gt;
   name that will be displayed on the user interface&lt;br /&gt;
 string ''$type''             &lt;br /&gt;
   This is the type of the configuration variable&lt;br /&gt;
   If the configuration variable is an array, prefix this string with&lt;br /&gt;
       '@' if the administrator should NOT be able to add or remove keys&lt;br /&gt;
       '*' if the administrator should be able to add named keys&lt;br /&gt;
       '%' if the administrator should be able to add numbered keys&lt;br /&gt;
   These symbols can be repeated like such: @@text if the configuration variable is an array of arrays of text.&lt;br /&gt;
   The base variable types are:&lt;br /&gt;
       'text'    textbox displayed     string  value stored&lt;br /&gt;
       'select'  selectbox displayed   string  value stored&lt;br /&gt;
       'hidden'  no display            string  value stored&lt;br /&gt;
 string ''$subgroup''&lt;br /&gt;
   subgroup of the variable&lt;br /&gt;
 string ''$fieldset''&lt;br /&gt;
   the fieldset to display the variable under&lt;br /&gt;
 array  ''$selection_array''&lt;br /&gt;
   These are the possible selections for the 'select' type. This MUST be passed if you use the 'select' type - otherwise it will just display a textbox (defaults to NULL)&lt;br /&gt;
 int    ''$sort''&lt;br /&gt;
   sort rank on the user interface (ascending, defaults to 0)&lt;br /&gt;
 boolean ''$set''            &lt;br /&gt;
   Whether or not this parameter is set (defaults to TRUE)&lt;br /&gt;
&lt;br /&gt;
'''public static create()'''&lt;br /&gt;
&lt;br /&gt;
This function will return an instance of the config class. If an instance with the given group/reference name does not exist, then it will create a new one. This function insures that there is only one instance for a given group name.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string group_name&lt;br /&gt;
    This is simply the group name that this config object will control - for the main gl settings this is 'Core'&lt;br /&gt;
&lt;br /&gt;
'''public set()'''&lt;br /&gt;
&lt;br /&gt;
This function sets a configuration variable to a value in the database and in the current array. If the variable does not already exist, nothing will happen.&lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
 string variable_name&lt;br /&gt;
    This is the name of the variable to change&lt;br /&gt;
 mixed value&lt;br /&gt;
    This is the new value for the variable.&lt;br /&gt;
&lt;br /&gt;
'''public &amp;amp;init_config()'''&lt;br /&gt;
&lt;br /&gt;
This function returns a reference to the configuration variables array (e.g. $_CONF)&lt;/div&gt;</summary>
		<author><name>Ablankstein</name></author>	</entry>

	</feed>