API16

API16:JInstallerModule/update

From Joomla! Documentation

Description

Custom update method This is really a shell for the install system


<! removed transcluded page call, red link never existed >

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();
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples