API16

JInstallerPlugin/update

From Joomla! Documentation

< API16:JInstallerPlugin

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


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

Syntax[edit]

update()


Returns[edit]

boolean True on success

Defined in[edit]

libraries/joomla/installer/adapters/plugin.php

Importing[edit]

jimport( 'joomla.installer.adapters.plugin' );

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]