JAuthentication/getInstance
From Joomla! Documentation
< API16:JAuthentication
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]
Returns the global authentication object, only creating it if it doesn't already exist.
<! removed transcluded page call, red link never existed >
Syntax[edit]
static getInstance()
Returns[edit]
object The global object
Defined in[edit]
libraries/joomla/user/authentication.php
Importing[edit]
jimport( 'joomla.user.authentication' );
Source Body[edit]
public static function getInstance()
{
static $instances;
if (!isset ($instances)) {
$instances = array ();
}
if (empty ($instances[0])) {
$instances[0] = new JAuthentication();
}
return $instances[0];
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]