Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques | |
__construct ($store='none', array $options=array()) | |
__get ($name) | |
getState () | |
getExpire () | |
getToken ($forceNew=false) | |
hasToken ($tCheck, $forceExpire=true) | |
getIterator () | |
getName () | |
getId () | |
isActive () | |
isNew () | |
initialise (Input $input, DispatcherInterface $dispatcher=null) | |
get ($name, $default=null, $namespace='default') | |
set ($name, $value=null, $namespace='default') | |
has ($name, $namespace='default') | |
clear ($name, $namespace='default') | |
start () | |
destroy () | |
restart () | |
fork () | |
close () | |
Fonctions membres publiques statiques | |
static | getInstance ($handler, array $options=array()) |
static | getStores () |
Fonctions membres protégées | |
_start () | |
setExpire ($expire) | |
setState ($state) | |
_setCookieParams () | |
_createToken ($length=32) | |
createToken ($length=32) | |
_setCounter () | |
setCounter () | |
_setTimers () | |
setTimers () | |
_setOptions (array $options) | |
setOptions (array $options) | |
_validate ($restart=false) | |
validate ($restart=false) | |
Attributs protégés | |
$state = 'inactive' | |
$expire = 15 | |
$store | |
$security = array('fix_browser') | |
$force_ssl = false | |
$cookie_domain | |
$cookie_path | |
$cookie_httponly = true | |
$cookie_samesite | |
$storeName | |
Attributs protégés statiques | |
static | $instance |
Attributs privés | |
$input | |
$dispatcher | |
Class for managing HTTP sessions
Provides access to session-state values as well as session-level settings and lifetime management methods. Based on the standard PHP session handling mechanism it provides more advanced features such as expire timeouts.
__construct | ( | $store = 'none' , |
|
array | $options = array() |
||
) |
Constructor
string | $store | The type of storage for the session. |
array | $options | Optional parameters |
Références $options, Session\$store, Session\_setCookieParams(), Session\_setOptions(), Storage\getInstance(), et Session\setState().
__get | ( | $name | ) |
|
protected |
Create a token-string
integer | $length | Length of string { |
Références Session\createToken().
Référencé par Session\getToken().
|
protected |
Set session cookie parameters
Références Session\$cookie_domain, Session\$cookie_httponly, Session\$cookie_path, et Session\$cookie_samesite.
Référencé par Session\__construct().
|
protected |
Set counter of session usage
Références Session\setCounter().
Référencé par Session\restart(), et Session\start().
|
protected |
Set additional session options
array | $options | List of parameter |
Références Session\setOptions().
Référencé par Session\__construct().
|
protected |
Set the session timers
Références Session\setTimers().
Référencé par Session\start().
|
protected |
Start a session.
Creates a session (or resumes the current one based on the state of the session)
Write and Close handlers are called after destructing objects since PHP 5.0.5. Thus destructors can use sessions but session handler can't use objects. So we are moving session closure before destructing objects.
Replace with session_register_shutdown() when dropping compatibility with PHP 5.3
Références Session\getState(), et null.
Référencé par Session\restart(), et Session\start().
|
protected |
Do some checks for security reason
If one check failed, session data has to be cleaned.
boolean | $restart | Reactivate session |
Références Session\validate().
Référencé par Session\restart(), et Session\start().
clear | ( | $name, | |
$namespace = 'default' |
|||
) |
Unset data from the session store
string | $name | Name of variable |
string | $namespace | Namespace to use, default to 'default' { |
Références $name, $value, Session\getState(), et null.
close | ( | ) |
Writes session data and ends session
Session data is usually stored after your script terminated without the need to call JSession::close(), but as session data is locked to prevent concurrent writes only one script may operate on a session at any time. When using framesets together with sessions you will experience the frames loading one by one due to this locking. You can reduce the time needed to load all the frames by ending the session as soon as all changes to session variables are done.
|
protected |
Create a token-string
integer | $length | Length of string { |
Référencé par Session\_createToken().
destroy | ( | ) |
Frees all session variables and destroys all data registered to a session
This method resets the $_SESSION variable and destroys all of the data associated with the current session in its storage (file or DB). It forces new session to be started after this method is called. It does not unset the session cookie.
Références Session\getName(), Session\getState(), et Session\setState().
Référencé par Session\restart().
fork | ( | ) |
Create a new session and copy variables from the old one
Références Session\getState().
get | ( | $name, | |
$default = null , |
|||
$namespace = 'default' |
|||
) |
Get data from the session store
string | $name | Name of a variable |
mixed | $default | Default value of a variable if not set |
string | $namespace | Namespace to use, default to 'default' { |
Références $default, $name, et Session\getState().
getExpire | ( | ) |
Get expiration time in minutes
Références Session\$expire.
Référencé par Session\setOptions(), et Session\validate().
getId | ( | ) |
|
static |
Returns the global Session object, only creating it if it doesn't already exist.
string | $handler | The type of session handler. |
array | $options | An array of configuration options (for new sessions only). |
Références $options.
getIterator | ( | ) |
Retrieve an external iterator.
getName | ( | ) |
Get session name
Références Session\getState().
Référencé par Session\destroy().
getState | ( | ) |
Get current state of session
Références Session\$state.
Référencé par Session\_start(), Session\clear(), Session\destroy(), Session\fork(), Session\get(), Session\getId(), Session\getName(), Session\has(), Session\isActive(), Session\restart(), Session\set(), et Session\start().
|
static |
getToken | ( | $forceNew = false | ) |
Get a session token, if a token isn't set yet one will be generated.
Tokens are used to secure forms from spamming attacks. Once a token has been generated the system will check the post request to see if it is present, if not it will invalidate the session.
boolean | $forceNew | If true, force a new token to be created |
Références Session\_createToken(), et null.
has | ( | $name, | |
$namespace = 'default' |
|||
) |
Check whether data exists in the session store
string | $name | Name of variable |
string | $namespace | Namespace to use, default to 'default' { |
Références $name, et Session\getState().
Référencé par Session\setTimers().
hasToken | ( | $tCheck, | |
$forceExpire = true |
|||
) |
Method to determine if a token exists in the session. If not the session will be set to expired
string | $tCheck | Hashed token to be verified |
boolean | $forceExpire | If true, expires the session |
Références Session\setState().
initialise | ( | Input | $input, |
DispatcherInterface | $dispatcher = null |
||
) |
Check whether this session is currently created
Input | $input | Input object for the session to use. |
DispatcherInterface | $dispatcher | Dispatcher object for the session to use. |
Références Session\$dispatcher, et Session\$input.
isActive | ( | ) |
isNew | ( | ) |
Check whether this session is currently created
Références $counter.
restart | ( | ) |
Restart an expired or locked session.
Références Session\_setCounter(), Session\_start(), Session\_validate(), Session\destroy(), Session\getState(), et Session\setState().
set | ( | $name, | |
$value = null , |
|||
$namespace = 'default' |
|||
) |
Set data into the session store.
string | $name | Name of a variable. |
mixed | $value | Value of a variable. |
string | $namespace | Namespace to use, default to 'default' { |
Références $name, $value, Session\getState(), et null.
|
protected |
Set counter of session usage
Références $counter.
Référencé par Session\_setCounter().
|
protected |
Set the session expiration
integer | $expire | Maximum age of unused session in minutes |
Références Session\$expire.
Référencé par Session\setOptions().
|
protected |
Set additional session options
array | $options | List of parameter |
Références $options, Session\getExpire(), et Session\setExpire().
Référencé par Session\_setOptions().
|
protected |
Set the session state
string | $state | Internal state |
Références Session\$state.
Référencé par Session\__construct(), Session\destroy(), Session\hasToken(), Session\restart(), Session\start(), et Session\validate().
|
protected |
Set the session timers
Références $start, et Session\has().
Référencé par Session\_setTimers().
start | ( | ) |
Start a session.
Références Session\_setCounter(), Session\_setTimers(), Session\_start(), Session\_validate(), Session\getState(), et Session\setState().
|
protected |
Do some checks for security reason
If one check failed, session data has to be cleaned.
boolean | $restart | Reactivate session |
Références elseif, Session\getExpire(), null, et Session\setState().
Référencé par Session\_validate().
|
protected |
Référencé par Session\_setCookieParams().
|
protected |
Référencé par Session\_setCookieParams().
|
protected |
Référencé par Session\_setCookieParams().
|
protected |
Référencé par Session\_setCookieParams().
|
private |
Référencé par Session\initialise().
|
protected |
Référencé par Session\getExpire(), et Session\setExpire().
|
protected |
|
private |
Référencé par Session\initialise().
|
staticprotected |
|
protected |
|
protected |
Référencé par Session\getState(), et Session\setState().
|
protected |
Référencé par Session\__construct().
|
protected |