Property | Type | Description | |
---|---|---|---|
$Files | Files object | ||
$arrCache | array | Cache | |
$arrData | array | Data | |
$blnHasLcf | boolean | Local file existance | |
$blnIsModified | boolean | Modification indicator | |
$objInstance | Object instance (Singleton) | ||
$strBottom | string | Bottom content | |
$strTop | string | Top content |
Method | Description | |
---|---|---|
__clone ( ) | Prevent cloning of the object (Singleton) | |
__destruct ( ) | Automatically save the local configuration | |
add ( string $strKey, mixed $varValue ) | Add a configuration variable to the local configuration file | |
delete ( string $strKey ) | Remove a configuration variable | |
get ( string $strKey ) : mixed | null | Return a configuration value | |
getActiveModules ( ) : array | Return all active modules as array | |
getInstance ( ) : static | Return the current object instance (Singleton) | |
has ( string $strKey ) : boolean | Check whether a configuration value exists | |
isComplete ( ) : boolean | Return true if the installation is complete | |
persist ( string $strKey, mixed $varValue ) | Permanently set a configuration value | |
preload ( ) | Preload the default and local configuration | |
remove ( string $strKey ) | Permanently remove a configuration value | |
save ( ) | Save the local configuration file | |
set ( string $strKey, string $varValue ) | Temporarily set a configuration value | |
update ( string $strKey, mixed $varValue ) | Alias for Config::add() |
Method | Description | |
---|---|---|
__construct ( ) | Prevent direct instantiation (Singleton) | |
escape ( mixed $varValue ) : mixed | Escape a value depending on its type | |
initialize ( ) | Load all configuration files | |
loadParameters ( ) | Override the database and SMTP parameters | |
markModified ( ) | Mark the object as modified |
public getActiveModules ( ) : array | ||
return | array | An array of active modules |
public static getInstance ( ) : static | ||
return | static | The object instance |
public static isComplete ( ) : boolean | ||
return | boolean | True if the installation is complete |
protected static loadParameters ( ) |
public static preload ( ) |
protected static bool $blnHasLcf | ||
return | boolean |
protected bool $blnIsModified | ||
return | boolean |
protected static Config,contao $objInstance | ||
return |