API16:JInstaller/getInstance
From Joomla! Documentation
Description
Returns the global Installer object, only creating it if it doesn't already exist.
<! removed transcluded page call, red link never existed >
Syntax
static getInstance()
Returns
object An installer object
Defined in
libraries/joomla/installer/installer.php
Importing
jimport( 'joomla.installer.installer' );
Source Body
public static function getInstance()
{
static $instance;
if (!isset ($instance)) {
$instance = new JInstaller();
}
return $instance;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples