Difference between revisions of "JAuthentication"
From Joomla! Documentation
m (→User contributed notes: moving preparation) |
m (moving preparation) |
||
Line 14: | Line 14: | ||
|- | |- | ||
|public | |public | ||
− | |[[JAuthentication::authenticate | + | |[[API17:JAuthentication::authenticate|authenticate]] |
|Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines. | |Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines. | ||
|- | |- | ||
|public static | |public static | ||
− | |[[JAuthentication::getInstance | + | |[[API17:JAuthentication::getInstance|getInstance]] |
|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. | ||
|- | |- | ||
|protected | |protected | ||
− | |[[JAuthentication::__construct | + | |[[API17:JAuthentication::__construct|__construct]] |
|Constructor. | |Constructor. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/user/authentication.php | * '''Defined in''' libraries/joomla/user/authentication.php | ||
− | * '''Extends''' [[JObservable | + | * '''Extends''' [[API17:JObservable|JObservable]] |
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.user.authentication' );</source> | <source lang="php">jimport( 'joomla.user.authentication' );</source> | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JAuthentication source code''' on [[jplatform:user/authentication.php|BitBucket]] | * {{JVer|11.1}} '''JAuthentication source code''' on [[jplatform:user/authentication.php|BitBucket]] | ||
− | * {{JVer|11.1}} Subpackage [[Subpackage User | + | * {{JVer|11.1}} Subpackage [[API17:Subpackage User|User]] |
− | * [[JAuthentication|Other versions of JAuthentication]] | + | * [[API17:JAuthentication|Other versions of JAuthentication]] |
{{SeeAlso:JAuthentication}} | {{SeeAlso:JAuthentication}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> |
Revision as of 18:45, 11 May 2013
The "API17" 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.
JAuthentication[edit]
Description[edit]
Template:Description:JAuthentication [Edit Descripton]
Methods[edit]
Visibility | Method name | Description |
---|---|---|
public | authenticate | Finds out if a set of login credentials are valid by asking all obvserving objects to run their respective authentication routines. |
public static | getInstance | Returns the global authentication object, only creating it if it doesn't already exist. |
protected | __construct | Constructor. |
- Defined in libraries/joomla/user/authentication.php
- Extends JObservable
Importing[edit]
jimport( 'joomla.user.authentication' );
See also[edit]
JAuthentication source code on BitBucket
Subpackage User
- Other versions of JAuthentication
Template:SeeAlso:JAuthentication [Edit See Also]
User contributed notes[edit]
<CodeExamplesForm />