API15:JInstaller
From Joomla! Documentation
Defined in
libraries/joomla/installer/installer.php
Methods
| Method name | Description |
|---|---|
| __construct | Constructor |
| getOverwrite | Get the allow overwrite switch |
| setOverwrite | Set the allow overwrite switch |
| getDBO | Get the database connector object |
| getManifest | Get the installation manifest object |
| getPath | Get an installer path by name |
| setPath | Sets an installer path by name |
| pushStep | Pushes a step onto the installer stack for rolling back steps |
| setAdapter | Set an installer adapter by name |
| abort | Installation abort method |
| install | Package installation method |
| update | Package update method |
| uninstall | Package uninstallation method |
| setupInstall | Prepare for installation: this method sets the installation directory, finds and checks the installation file and verifies the installation type |
| parseQueries | Backward compatible Method to parse through a queries element of the installation manifest file and take appropriate action. |
| parseSQLFiles | Method to extract the name of a discreet installation sql file from the installation manifest file. |
| parseFiles | Method to parse through a files element of the installation manifest and take appropriate action. |
| parseLanguages | Method to parse through a languages element of the installation manifest and take appropriate action. |
| parseMedia | Method to parse through a media element of the installation manifest and take appropriate action. |
| getParams | Method to parse the parameters of an extension, build the INI string for it's default parameters, and return the INI string. |
| copyFiles | Copy files from source directory to the target directory |
| removeFiles | Method to parse through a files element of the installation manifest and remove the files that were installed |
| copyManifest | Copies the installation manifest file to the extension folder in the given client |
| getInstance | Returns a reference to the global Installer object, only creating it if it doesn't already exist. |
Importing
jimport( 'joomla.installer.installer' );
Examples
Code Examples