API16:JInstallerModule/update
From Joomla! Documentation
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.
Contents |
Description
Custom update method This is really a shell for the install system
Description:JInstallerModule/update
Syntax
update()
Returns
boolean True on success
Defined in
libraries/joomla/installer/adapters/module.php
Importing
jimport( 'joomla.installer.adapters.module' );
Source Body
function update() { // set the overwrite setting $this->parent->setOverwrite(true); $this->parent->setUpgrade(true); // set the route for the install $this->route = 'Update'; // go to install which handles updates properly return $this->install(); }
[Edit See Also] SeeAlso:JInstallerModule/update
Examples
<CodeExamplesForm />
