InstallerScriptInterface
Base install script interface for use by extensions providing helper methods for common behaviours.
since |
4.2.0 |
---|---|
package |
Joomla CMS |
Methods
install
Function called after the extension is installed.
install(\Joomla\CMS\Installer\InstallerAdapter adapter) :
since |
4.2.0 |
---|
Arguments
- adapter
InstallerAdapter
The adapter calling this method
Response
bool
True on success
postflight
Function called after extension installation/update/removal procedure commences.
postflight( type, \Joomla\CMS\Installer\InstallerAdapter adapter) :
since |
4.2.0 |
---|
Arguments
- type
string
The type of change (install or discover_install, update, uninstall)- adapter
InstallerAdapter
The adapter calling this method
Response
bool
True on success
preflight
Function called before extension installation/update/removal procedure commences.
preflight( type, \Joomla\CMS\Installer\InstallerAdapter adapter) :
since |
4.2.0 |
---|
Arguments
- type
string
The type of change (install or discover_install, update, uninstall)- adapter
InstallerAdapter
The adapter calling this method
Response
bool
True on success
uninstall
Function called after the extension is uninstalled.
uninstall(\Joomla\CMS\Installer\InstallerAdapter adapter) :
since |
4.2.0 |
---|
Arguments
- adapter
InstallerAdapter
The adapter calling this method
Response
bool
True on success
update
Function called after the extension is updated.
update(\Joomla\CMS\Installer\InstallerAdapter adapter) :
since |
4.2.0 |
---|
Arguments
- adapter
InstallerAdapter
The adapter calling this method
Response
bool
True on success