API16

Difference between revisions of "JAuthentication/getInstance"

From Joomla! Documentation

< API16:JAuthentication
(New page: ===Description=== Returns the global authentication object, only creating it if it doesn't already exist. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Descrip...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Returns the global authentication object, only creating it if it doesn't already exist.
 
Returns the global authentication object, only creating it if it doesn't already exist.
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JAuthentication/getInstance|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JAuthentication/getInstance}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 38: Line 36:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JAuthentication/getInstance|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JAuthentication/getInstance}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=getInstance
 
  category=getInstance
 
  category=JAuthentication
 
  category=JAuthentication
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:19, 24 March 2017

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]