Method |
Description |
|
get ( string $name ) : mixed |
Get an Elgg configuration value, possibly loading it from the DB's config table |
|
getCachePath ( ) : string |
Get the cache directory path for this installation |
|
getDataPath ( ) : string |
Get the data directory path for this installation |
|
getPluginsPath ( ) : string |
Get the plugin path for this installation |
|
getSiteUrl ( ) : string |
Get the URL for the current (or specified) site |
|
getVolatile ( string $name ) : mixed |
Get a config value for the current site if it's already loaded. This should be used instead of
reading directly from global $CONFIG. |
|
loadSettingsFile ( ) : void |
Merge the settings file into the storage object |
|
remove ( string $name ) : boolean |
Removes a configuration setting |
|
save ( string $name, mixed $value ) : boolean |
Save a configuration setting |
|
set ( string $name, mixed $value ) : void |
Set an Elgg configuration value |
|