JSessionStorageXcache/1.5

From Joomla! Documentation
< JSessionStorageXcache(Difference between revisions)
Jump to: navigation, search
(Bulk upload by Doxiki2)
 
m (See also: fixing link to API)
 
(One intermediate revision by one user not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
=={{JVer|1.5}} JSessionStorageXcache==
 +
===Description===
 +
{{Description:JSessionStorageXcache}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JSessionStorageXcache|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JSessionStorageXcache|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
{{Description:JSessionStorageXcache}}
 
===Defined in===
 
libraries/joomla/session/storage/xcache.php
 
===Subpackage===
 
[[Subpackage Session/1.5|Session]]
 
===Extends===
 
[[JSessionStorage/1.5|JSessionStorage]]
 
===Extended by===
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
 +
!Visibility
 
!Method name
 
!Method name
 
!Description
 
!Description
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::__construct/1.5|__construct]]
 
|[[JSessionStorageXcache::__construct/1.5|__construct]]
 
|Constructor.  
 
|Constructor.  
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::close/1.5|close]]
 
|[[JSessionStorageXcache::close/1.5|close]]
 
|Close the SessionHandler backend.  
 
|Close the SessionHandler backend.  
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::destroy/1.5|destroy]]
 
|[[JSessionStorageXcache::destroy/1.5|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
 
|[[JSessionStorageXcache::gc/1.5|gc]]
 
|[[JSessionStorageXcache::gc/1.5|gc]]
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::open/1.5|open]]
 
|[[JSessionStorageXcache::open/1.5|open]]
 
|Open the SessionHandler backend.  
 
|Open the SessionHandler backend.  
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::read/1.5|read]]
 
|[[JSessionStorageXcache::read/1.5|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
 
|[[JSessionStorageXcache::write/1.5|write]]
 
|[[JSessionStorageXcache::write/1.5|write]]
 
|Write session data to the SessionHandler backend.  
 
|Write session data to the SessionHandler backend.  
 
|-
 
|-
 +
|public
 
|[[JSessionStorageXcache::test/1.5|test]]
 
|[[JSessionStorageXcache::test/1.5|test]]
 
|Test to see if the SessionHandler is available.  
 
|Test to see if the SessionHandler is available.  
 
|-
 
|-
 
|}
 
|}
 +
* '''Defined in''' libraries/joomla/session/storage/xcache.php
 +
* '''Extends''' [[JSessionStorage/1.5|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|1.5}} '''JSessionStorageXcache''' on [http://api.joomla.org/1.5/Joomla-Framework/Session/JSessionStorageXcache.html api.joomla.org]
 +
* {{JVer|1.5}} '''JSessionStorageXcache source code''' on [[jframework15:session/storage/xcache.php|JoomlaCode]]
 +
* {{JVer|1.5}} Subpackage [[Subpackage Session/1.5|Session]]
 +
* [[JSessionStorageXcache|Other versions of JSessionStorageXcache]]
 +
{{SeeAlso:JSessionStorageXcache}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageXcache|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageXcache|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JSessionStorageXcache}}
+
===User contributed notes===
* [[JSessionStorageXcache|Other versions of this class]]
+
* [http://api.joomla.org/Joomla-Framework/Session/JSessionStorageXcache.html JSessionStorageXcache on api.joomla.org]
+
===Examples===
+
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 59: Line 67:
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
 
<noinclude>[[Category:Framework]][[Category:Framework 1.5]][[Category:JSessionStorageXcache]]</noinclude>
 
<noinclude>[[Category:Framework]][[Category:Framework 1.5]][[Category:JSessionStorageXcache]]</noinclude>

Latest revision as of 16:05, 13 February 2013

[edit] Joomla 1.5 JSessionStorageXcache

[edit] Description

Description:JSessionStorageXcache [Edit Descripton]

[edit] Methods

Visibility Method name Description
public __construct Constructor.
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 test Test to see if the SessionHandler is available.
  • Defined in libraries/joomla/session/storage/xcache.php
  • Extends JSessionStorage

[edit] Importing

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

[edit] See also

SeeAlso:JSessionStorageXcache [Edit See Also]

[edit] User contributed notes

<CodeExamplesForm />


Personal tools
Namespaces

Variants
Actions
Navigation
Joomla! Sites
Toolbox