API15:JInstaller
From Joomla! Documentation
(Difference between revisions)
(New page: <span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JInstaller}}
===Defined in===
...) |
|||
| Line 84: | Line 84: | ||
|Returns a reference to the global Installer object, only creating it if it doesn't already exist. | |Returns a reference to the global Installer object, only creating it if it doesn't already exist. | ||
|} | |} | ||
| + | |||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.installer.installer' );</source> | <source lang="php">jimport( 'joomla.installer.installer' );</source> | ||
Latest revision as of 12:38, 25 March 2010
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[Edit Descripton] Description:JInstaller
Contents |
[edit] Defined in
libraries/joomla/installer/installer.php
[edit] 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. |
[edit] Importing
jimport( 'joomla.installer.installer' );
[Edit See Also] SeeAlso:JInstaller
[edit] Examples
<CodeExamplesForm />
