API16

JUpdater/update

From Joomla! Documentation

< API16:JUpdater

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.

Syntax[edit]

update($id)
Parameter Name Default Value Description
$id

Defined in[edit]

libraries/joomla/updater/updater.php

Importing[edit]

jimport( 'joomla.updater.updater' );

Source Body[edit]

public function update($id) {
        $updaterow =& JTable::getInstance('update');
        $updaterow->load($id);
        $update = new JUpdate();
        if($update->loadFromXML($updaterow->detailsurl)) {
                return $update->install();
        }
        return false;
}



Examples[edit]

Code Examples[edit]