API17

JSessionStorageXcache: Difference between revisions

From Joomla! Documentation

m User contributed notes: moving preparation
m moving preparation
Line 14: Line 14:
|-
|-
|public  
|public  
|[[JSessionStorageXcache::close/11.1|close]]
|[[API17:JSessionStorageXcache::close|close]]
|Close the SessionHandler backend.  
|Close the SessionHandler backend.  
|-
|-
|public  
|public  
|[[JSessionStorageXcache::destroy/11.1|destroy]]
|[[API17:JSessionStorageXcache::destroy|destroy]]
|Destroy the data for a particular session identifier in the SessionHandler backend.  
|Destroy the data for a particular session identifier in the SessionHandler backend.  
|-
|-
|public  
|public  
|[[JSessionStorageXcache::gc/11.1|gc]]
|[[API17:JSessionStorageXcache::gc|gc]]
|Garbage collect stale sessions from the SessionHandler backend.  
|Garbage collect stale sessions from the SessionHandler backend.  
|-
|-
|public  
|public  
|[[JSessionStorageXcache::open/11.1|open]]
|[[API17:JSessionStorageXcache::open|open]]
|Open the SessionHandler backend.  
|Open the SessionHandler backend.  
|-
|-
|public  
|public  
|[[JSessionStorageXcache::read/11.1|read]]
|[[API17:JSessionStorageXcache::read|read]]
|Read the data for a particular session identifier from the SessionHandler backend.  
|Read the data for a particular session identifier from the SessionHandler backend.  
|-
|-
|public  
|public  
|[[JSessionStorageXcache::write/11.1|write]]
|[[API17:JSessionStorageXcache::write|write]]
|Write session data to the SessionHandler backend.  
|Write session data to the SessionHandler backend.  
|-
|-
|public static  
|public static  
|[[JSessionStorageXcache::test/11.1|test]]
|[[API17:JSessionStorageXcache::test|test]]
|Test to see if the SessionHandler is available.  
|Test to see if the SessionHandler is available.  
|-
|-
|protected  
|protected  
|[[JSessionStorageXcache::__construct/11.1|__construct]]
|[[API17:JSessionStorageXcache::__construct|__construct]]
|Constructor.  
|Constructor.  
|-
|-
|}
|}
* '''Defined in''' libraries/joomla/session/storage/xcache.php
* '''Defined in''' libraries/joomla/session/storage/xcache.php
* '''Extends''' [[JSessionStorage/11.1|JSessionStorage]]
* '''Extends''' [[API17:JSessionStorage|JSessionStorage]]
===Importing===
===Importing===
<source lang="php">jimport( 'joomla.session.storage.xcache' );</source>
<source lang="php">jimport( 'joomla.session.storage.xcache' );</source>
===See also===
===See also===
* {{JVer|11.1}} '''JSessionStorageXcache source code''' on [[jplatform:session/storage/xcache.php|BitBucket]]
* {{JVer|11.1}} '''JSessionStorageXcache source code''' on [[jplatform:session/storage/xcache.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Session/11.1|Session]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Session|Session]]
* [[JSessionStorageXcache|Other versions of JSessionStorageXcache]]
* [[API17:JSessionStorageXcache|Other versions of JSessionStorageXcache]]
{{SeeAlso:JSessionStorageXcache}}
{{SeeAlso:JSessionStorageXcache}}
<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">

Revision as of 02:31, 12 May 2013

Joomla 11.1 JSessionStorageXcache

Description

Template:Description:JSessionStorageXcache [Edit Descripton]

Methods

Visibility Method name Description
public close Close the SessionHandler backend.
public destroy Destroy the data for a particular session identifier in the SessionHandler backend.
public gc Garbage collect stale sessions from the SessionHandler backend.
public open Open the SessionHandler backend.
public read Read the data for a particular session identifier from the SessionHandler backend.
public write Write session data to the SessionHandler backend.
public static test Test to see if the SessionHandler is available.
protected __construct Constructor.
  • Defined in libraries/joomla/session/storage/xcache.php
  • Extends JSessionStorage

Importing

jimport( 'joomla.session.storage.xcache' );

See also

Template:SeeAlso:JSessionStorageXcache [Edit See Also]

User contributed notes

<CodeExamplesForm />