JInstallerModule/update
From Joomla! Documentation
< API16:JInstallerModule
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Custom update method This is really a shell for the install system
<! removed transcluded page call, red link never existed >
Syntax[edit]
update()
Returns[edit]
boolean True on success
Defined in[edit]
libraries/joomla/installer/adapters/module.php
Importing[edit]
jimport( 'joomla.installer.adapters.module' );
Source Body[edit]
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();
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]