API17

Difference between revisions of "JSessionStorageWincache"

From Joomla! Documentation

m (→‎User contributed notes: bad link repair)
m (moving preparation)
(2 intermediate revisions by the same user not shown)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageWincache::close/11.1|close]]
+
|[[API17:JSessionStorageWincache::close|close]]
 
|Close the SessionHandler backend.  
 
|Close the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageWincache::destroy/11.1|destroy]]
+
|[[API17:JSessionStorageWincache::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  
|[[JSessionStorageWincache::gc/11.1|gc]]
+
|[[API17:JSessionStorageWincache::gc|gc]]
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageWincache::open/11.1|open]]
+
|[[API17:JSessionStorageWincache::open|open]]
 
|Open the SessionHandler backend.  
 
|Open the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageWincache::read/11.1|read]]
+
|[[API17:JSessionStorageWincache::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  
|[[JSessionStorageWincache::write/11.1|write]]
+
|[[API17:JSessionStorageWincache::write|write]]
 
|Write session data to the SessionHandler backend.  
 
|Write session data to the SessionHandler backend.  
 
|-
 
|-
 
|public static  
 
|public static  
|[[JSessionStorageWincache::test/11.1|test]]
+
|[[API17:JSessionStorageWincache::test|test]]
 
|Test to see if the SessionHandler is available.  
 
|Test to see if the SessionHandler is available.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSessionStorageWincache::__construct/11.1|__construct]]
+
|[[API17:JSessionStorageWincache::__construct|__construct]]
 
|Constructor.  
 
|Constructor.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/session/storage/wincache.php
 
* '''Defined in''' libraries/joomla/session/storage/wincache.php
* '''Extends''' [[JSessionStorage/11.1|JSessionStorage]]
+
* '''Extends''' [[API17:JSessionStorage|JSessionStorage]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.session.storage.wincache' );</source>
 
<source lang="php">jimport( 'joomla.session.storage.wincache' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JSessionStorageWincache source code''' on [[jplatform:session/storage/wincache.php|BitBucket]]
 
* {{JVer|11.1}} '''JSessionStorageWincache source code''' on [[jplatform:session/storage/wincache.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Session/11.1|Session]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Session|Session]]
* [[JSessionStorageWincache|Other versions of JSessionStorageWincache]]
+
* [[API17:JSessionStorageWincache|Other versions of JSessionStorageWincache]]
 
{{SeeAlso:JSessionStorageWincache}}
 
{{SeeAlso:JSessionStorageWincache}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
Line 69: Line 69:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JSessionStorageWincache]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:31, 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.

Joomla 11.1 JSessionStorageWincache[edit]

Description[edit]

Template:Description:JSessionStorageWincache [Edit Descripton]

Methods[edit]

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/wincache.php
  • Extends JSessionStorage

Importing[edit]

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

See also[edit]

Template:SeeAlso:JSessionStorageWincache [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />