API17

Difference between revisions of "JSessionStorageApc"

From Joomla! Documentation

(Layout updates)
m (moving preparation)
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
=={{JVer|11.1}} JSessionStorageApc==
 +
===Description===
 +
{{Description:JSessionStorageApc}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JSessionStorageApc|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JSessionStorageApc|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
{{Description:JSessionStorageApc}}
 
===Defined in===
 
libraries/joomla/session/storage/apc.php
 
* see source code in [[jplatform:session/storage/apc.php|BitBucket]]
 
===Subpackage===
 
[[Subpackage Session/11.1|Session]]
 
===Extends===
 
[[JSessionStorage/11.1|JSessionStorage]]
 
===Extended by===
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
 +
!Visibility
 
!Method name
 
!Method name
 
!Description
 
!Description
 
|-
 
|-
|[[JSessionStorageApc::__construct/11.1|__construct]]
+
|public
|Constructor.
+
|[[API17:JSessionStorageApc::close|close]]
|-
 
|[[JSessionStorageApc::close/11.1|close]]
 
 
|Close the SessionHandler backend.  
 
|Close the SessionHandler backend.  
 
|-
 
|-
|[[JSessionStorageApc::destroy/11.1|destroy]]
+
|public
 +
|[[API17:JSessionStorageApc::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.  
 
|-
 
|-
|[[JSessionStorageApc::gc/11.1|gc]]
+
|public
 +
|[[API17:JSessionStorageApc::gc|gc]]
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|-
 
|-
|[[JSessionStorageApc::open/11.1|open]]
+
|public
 +
|[[API17:JSessionStorageApc::open|open]]
 
|Open the SessionHandler backend.  
 
|Open the SessionHandler backend.  
 
|-
 
|-
|[[JSessionStorageApc::read/11.1|read]]
+
|public
 +
|[[API17:JSessionStorageApc::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.  
 
|-
 
|-
|[[JSessionStorageApc::write/11.1|write]]
+
|public
 +
|[[API17:JSessionStorageApc::write|write]]
 
|Write session data to the SessionHandler backend.  
 
|Write session data to the SessionHandler backend.  
 
|-
 
|-
|[[JSessionStorageApc::test/11.1|test]]
+
|public static
 +
|[[API17:JSessionStorageApc::test|test]]
 
|Test to see if the SessionHandler is available.  
 
|Test to see if the SessionHandler is available.  
 +
|-
 +
|protected
 +
|[[API17:JSessionStorageApc::__construct|__construct]]
 +
|Constructor.
 
|-
 
|-
 
|}
 
|}
 +
* '''Defined in''' libraries/joomla/session/storage/apc.php
 +
* '''Extends''' [[API17:JSessionStorage|JSessionStorage]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.session.storage.apc' );</source>
 
<source lang="php">jimport( 'joomla.session.storage.apc' );</source>
 
===See also===
 
===See also===
* JSessionStorageApc source code in [[jplatform:session/storage/apc.php|BitBucket]]
+
* {{JVer|11.1}} '''JSessionStorageApc source code''' on [[jplatform:session/storage/apc.php|BitBucket]]
* [[JSessionStorageApc|Other versions of this class]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Session|Session]]
 +
* [[API17:JSessionStorageApc|Other versions of JSessionStorageApc]]
 
{{SeeAlso:JSessionStorageApc}}
 
{{SeeAlso:JSessionStorageApc}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageApc|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageApc|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Examples===
+
===User contributed notes===
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 60: Line 66:
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JSessionStorageApc]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:29, 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 JSessionStorageApc[edit]

Description[edit]

Template:Description:JSessionStorageApc [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/apc.php
  • Extends JSessionStorage

Importing[edit]

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

See also[edit]

Template:SeeAlso:JSessionStorageApc [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />