Joomla CMS
4.2.2
Documentation des API du CMS Joomla en version 4.2.2
|
Fonctions membres publiques | |
__construct ($installerScript) | |
install (InstallerAdapter $adapter) | |
update (InstallerAdapter $adapter) | |
uninstall (InstallerAdapter $adapter) | |
preflight (string $type, InstallerAdapter $adapter) | |
postflight (string $type, InstallerAdapter $adapter) | |
__set (string $name, $value) | |
__get (string $name) | |
__call (string $name, array $arguments) | |
Fonctions membres privées | |
callOnScript (string $name, array $arguments) | |
Attributs privés | |
$installerScript | |
Legacy installer script which delegates the methods to the internal instance when possible.
__construct | ( | $installerScript | ) |
\stdClass | $installerScript | The script instance |
__call | ( | string | $name, |
array | $arguments | ||
) |
Calls the function with the given name on the internal script with the given name and arguments.
string | $name | The name of the function |
array | $arguments | The arguments |
Références $name.
__get | ( | string | $name | ) |
Returns the variable from the internal script.
string | $name | The name of the variable |
__set | ( | string | $name, |
$value | |||
) |
Sets the variable to the internal script.
string | $name | The name of the variable |
mixed | $value | The value of the variable |
Références $value.
|
private |
install | ( | InstallerAdapter | $adapter | ) |
Function called after the extension is installed.
InstallerAdapter | $adapter | The adapter calling this method |
Implémente InstallerScriptInterface.
postflight | ( | string | $type, |
InstallerAdapter | $adapter | ||
) |
Function called after extension installation/update/removal procedure commences.
string | $type | The type of change (install or discover_install, update, uninstall) |
InstallerAdapter | $adapter | The adapter calling this method |
Implémente InstallerScriptInterface.
Références $type.
preflight | ( | string | $type, |
InstallerAdapter | $adapter | ||
) |
Function called before extension installation/update/removal procedure commences.
string | $type | The type of change (install or discover_install, update, uninstall) |
InstallerAdapter | $adapter | The adapter calling this method |
Implémente InstallerScriptInterface.
Références $type.
uninstall | ( | InstallerAdapter | $adapter | ) |
Function called after the extension is uninstalled.
InstallerAdapter | $adapter | The adapter calling this method |
Implémente InstallerScriptInterface.
update | ( | InstallerAdapter | $adapter | ) |
Function called after the extension is updated.
InstallerAdapter | $adapter | The adapter calling this method |
Implémente InstallerScriptInterface.
|
private |