Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
__construct () | |
getState () | |
attach ($observer) | |
detach ($observer) | |
authenticate ($credentials, $options=array()) | |
Fonctions membres publiques inherited from JObject | |
__construct ($properties=null) | |
__toString () | |
def ($property, $default=null) | |
get ($property, $default=null) | |
getProperties ($public=true) | |
getError ($i=null, $toString=true) | |
getErrors () | |
set ($property, $value=null) | |
setProperties ($properties) | |
setError ($error) |
Fonctions membres publiques statiques | |
static | getInstance () |
static | authorise ($response, $options=array()) |
Attributs publics | |
const | STATUS_SUCCESS = 1 |
const | STATUS_CANCEL = 2 |
const | STATUS_FAILURE = 4 |
const | STATUS_EXPIRED = 8 |
const | STATUS_DENIED = 16 |
const | STATUS_UNKNOWN = 32 |
Attributs protégés | |
$observers = array() | |
$state = null | |
$methods = array() | |
Attributs protégés inherited from JObject | |
$_errors = array() |
Attributs protégés statiques | |
static | $instance |
Définition à la ligne 19 du fichier authentication.php.
JAuthentication::__construct | ( | ) |
Constructor
Définition à la ligne 101 du fichier authentication.php.
Références JText\_(), JLog\add(), et JLog\WARNING.
JAuthentication::attach | ( | $observer | ) |
Attach an observer object
object | $observer | An observer object to attach |
Définition à la ligne 150 du fichier authentication.php.
JAuthentication::authenticate | ( | $credentials, | |
$options = array() |
|||
) |
Finds out if a set of login credentials are valid by asking all observing objects to run their respective authentication routines.
array | $credentials | Array holding the user credentials. |
array | $options | Array holding user options. |
Définition à la ligne 255 du fichier authentication.php.
Références JLog\add(), JText\sprintf(), et JLog\WARNING.
|
static |
Authorises that a particular user should be able to login
JAuthenticationResponse | $response | response including username of the user to authorise |
array | $options | list of options |
Définition à la ligne 327 du fichier authentication.php.
Références JEventDispatcher\getInstance().
JAuthentication::detach | ( | $observer | ) |
Detach an observer object
object | $observer | An observer object to detach. |
Définition à la ligne 218 du fichier authentication.php.
|
static |
Returns the global authentication object, only creating it if it doesn't already exist.
Définition à la ligne 119 du fichier authentication.php.
JAuthentication::getState | ( | ) |
Get the state of the JAuthentication object
Définition à la ligne 136 du fichier authentication.php.
|
staticprotected |
Définition à la ligne 94 du fichier authentication.php.
|
protected |
Définition à la ligne 88 du fichier authentication.php.
|
protected |
Définition à la ligne 72 du fichier authentication.php.
|
protected |
Définition à la ligne 80 du fichier authentication.php.
const JAuthentication::STATUS_CANCEL = 2 |
Status to indicate cancellation of authentication (unused) STATUS_CANCEL cancelled request (unused)
Définition à la ligne 35 du fichier authentication.php.
const JAuthentication::STATUS_DENIED = 16 |
This is the status code returned when the account has been denied (prevent login) STATUS_DENIED denied request (will prevent login)
Définition à la ligne 57 du fichier authentication.php.
const JAuthentication::STATUS_EXPIRED = 8 |
This is the status code returned when the account has expired (prevent login) STATUS_EXPIRED an expired account (will prevent login)
Définition à la ligne 50 du fichier authentication.php.
const JAuthentication::STATUS_FAILURE = 4 |
This is the status code returned when the authentication failed (prevent login if no success) STATUS_FAILURE failed request
Définition à la ligne 42 du fichier authentication.php.
const JAuthentication::STATUS_SUCCESS = 1 |
This is the status code returned when the authentication is success (permit login) STATUS_SUCCESS successful response
Définition à la ligne 27 du fichier authentication.php.
const JAuthentication::STATUS_UNKNOWN = 32 |
This is the status code returned when the account doesn't exist (not an error) STATUS_UNKNOWN unknown account (won't permit or prevent login)
Définition à la ligne 64 du fichier authentication.php.