ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
|
INIFile Parser Early access in init proceess! Avoid further dependencies like logging or other services Description: A Simpe Ini File Implementation to keep settings in a simple file instead of in a DB Based upon class.INIfile.php by Mircho Mirev mirch Usage Examples: $ini = new IniFile("./ini.ini"); Read entire group in an associative array $grp = $ini->read_group("MAIN"); //prints the variables in the group if ($grp) for(reset($grp); $key=key($grp); next($grp)) { echo "GROUP ". o@ma cropo int. comMore...
Public Member Functions | |
__construct (string $a_ini_file_name) | |
Constructor. More... | |
read () | |
read from ini file More... | |
parse () | |
load and parse an inifile More... | |
write () | |
save ini-file-data to filesystem More... | |
show () | |
returns the content of IniFile More... | |
getGroupCount () | |
returns number of groups More... | |
readGroups () | |
returns an array with the names of all the groups More... | |
groupExists (string $a_group_name) | |
checks if a group exists More... | |
readGroup (string $a_group_name) | |
returns an associative array of the variables in one group More... | |
addGroup (string $a_group_name) | |
adds a new group More... | |
removeGroup (string $a_group_name) | |
removes a group More... | |
variableExists (string $a_group, string $a_var_name) | |
returns if a variable exists or not More... | |
readVariable (string $a_group, string $a_var_name) | |
reads a single variable from a group More... | |
setVariable (string $a_group_name, string $a_var_name, string $a_var_value) | |
sets a variable in a group More... | |
error (string $a_errmsg) | |
getError () | |
Data Fields | |
string | $INI_FILE_NAME = "" |
name of file More... | |
string | $ERROR = "" |
error var More... | |
array | $GROUPS = array() |
sections in ini-file More... | |
string | $CURRENT_GROUP = "" |
actual section More... | |
INIFile Parser Early access in init proceess! Avoid further dependencies like logging or other services Description: A Simpe Ini File Implementation to keep settings in a simple file instead of in a DB Based upon class.INIfile.php by Mircho Mirev mirch Usage Examples: $ini = new IniFile("./ini.ini"); Read entire group in an associative array $grp = $ini->read_group("MAIN"); //prints the variables in the group if ($grp) for(reset($grp); $key=key($grp); next($grp)) { echo "GROUP ". o@ma cropo int. com
$key."=".$grp[$key]."<br>"; } //set a variable to a value $ini->setVariable("NEW","USER","JOHN"); //Save the file $ini->save_data();
Definition at line 47 of file class.ilIniFile.php.
ilIniFile::__construct | ( | string | $a_ini_file_name | ) |
Constructor.
Definition at line 72 of file class.ilIniFile.php.
References error().
ilIniFile::addGroup | ( | string | $a_group_name | ) |
adds a new group
Definition at line 249 of file class.ilIniFile.php.
References error(), and groupExists().
Referenced by ilGlobalCacheSettingsAdapter\storeToIniFile().
ilIniFile::error | ( | string | $a_errmsg | ) |
Definition at line 309 of file class.ilIniFile.php.
Referenced by __construct(), addGroup(), parse(), read(), readGroup(), readVariable(), removeGroup(), setVariable(), and write().
ilIniFile::getError | ( | ) |
ilIniFile::getGroupCount | ( | ) |
returns number of groups
Definition at line 202 of file class.ilIniFile.php.
ilIniFile::groupExists | ( | string | $a_group_name | ) |
checks if a group exists
Definition at line 224 of file class.ilIniFile.php.
Referenced by addGroup(), readGroup(), removeGroup(), and setVariable().
ilIniFile::parse | ( | ) |
load and parse an inifile
Definition at line 102 of file class.ilIniFile.php.
References Vendor\Package\$e, and error().
Referenced by read().
ilIniFile::read | ( | ) |
read from ini file
Definition at line 85 of file class.ilIniFile.php.
References error(), and parse().
ilIniFile::readGroup | ( | string | $a_group_name | ) |
returns an associative array of the variables in one group
Definition at line 236 of file class.ilIniFile.php.
References error(), and groupExists().
Referenced by ilGlobalCacheSettingsAdapter\readFromIniFile(), show(), and write().
ilIniFile::readGroups | ( | ) |
returns an array with the names of all the groups
Definition at line 210 of file class.ilIniFile.php.
References ILIAS\User\Profile\next.
Referenced by show(), and write().
ilIniFile::readVariable | ( | string | $a_group, |
string | $a_var_name | ||
) |
reads a single variable from a group
Definition at line 285 of file class.ilIniFile.php.
References error().
Referenced by ilTimeZone\initDefaultTimeZone(), and ilGlobalCacheSettingsAdapter\readFromIniFile().
ilIniFile::removeGroup | ( | string | $a_group_name | ) |
removes a group
Definition at line 263 of file class.ilIniFile.php.
References error(), and groupExists().
Referenced by ilGlobalCacheSettingsAdapter\storeToIniFile().
ilIniFile::setVariable | ( | string | $a_group_name, |
string | $a_var_name, | ||
string | $a_var_value | ||
) |
sets a variable in a group
Definition at line 298 of file class.ilIniFile.php.
References error(), and groupExists().
Referenced by ilGlobalCacheSettingsAdapter\storeToIniFile().
ilIniFile::show | ( | ) |
returns the content of IniFile
Definition at line 170 of file class.ilIniFile.php.
References ILIAS\User\Profile\next, readGroup(), and readGroups().
ilIniFile::variableExists | ( | string | $a_group, |
string | $a_var_name | ||
) |
returns if a variable exists or not
Definition at line 277 of file class.ilIniFile.php.
ilIniFile::write | ( | ) |
save ini-file-data to filesystem
Definition at line 130 of file class.ilIniFile.php.
References $res, error(), ILIAS\User\Profile\next, readGroup(), and readGroups().
Referenced by ilGlobalCacheSettingsAdapter\storeToIniFile().
string ilIniFile::$CURRENT_GROUP = "" |
actual section
Definition at line 67 of file class.ilIniFile.php.
string ilIniFile::$ERROR = "" |
array ilIniFile::$GROUPS = array() |
sections in ini-file
Definition at line 62 of file class.ilIniFile.php.
string ilIniFile::$INI_FILE_NAME = "" |
name of file
Definition at line 52 of file class.ilIniFile.php.