API17

Difference between revisions of "JSessionStorageNone"

From Joomla! Documentation

m (→‎User contributed notes: bad link repair)
m (preparing for archive only)
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JSessionStorageNone==
 
=={{JVer|11.1}} JSessionStorageNone==
 
===Description===
 
===Description===
{{Description:JSessionStorageNone}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JSessionStorageNone|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
Line 14: Line 12:
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageNone::close/11.1|close]]
+
|[[API17:JSessionStorageNone::close|close]]
 
|Close the SessionHandler backend.  
 
|Close the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageNone::destroy/11.1|destroy]]
+
|[[API17:JSessionStorageNone::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  
|[[JSessionStorageNone::gc/11.1|gc]]
+
|[[API17:JSessionStorageNone::gc|gc]]
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|Garbage collect stale sessions from the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageNone::open/11.1|open]]
+
|[[API17:JSessionStorageNone::open|open]]
 
|Open the SessionHandler backend.  
 
|Open the SessionHandler backend.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageNone::read/11.1|read]]
+
|[[API17:JSessionStorageNone::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  
|[[JSessionStorageNone::register/11.1|register]]
+
|[[API17:JSessionStorageNone::register|register]]
 
|Register the functions of this class with PHP's session handler.  
 
|Register the functions of this class with PHP's session handler.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSessionStorageNone::write/11.1|write]]
+
|[[API17:JSessionStorageNone::write|write]]
 
|Write session data to the SessionHandler backend.  
 
|Write session data to the SessionHandler backend.  
 
|-
 
|-
 
|public static  
 
|public static  
|[[JSessionStorageNone::test/11.1|test]]
+
|[[API17:JSessionStorageNone::test|test]]
 
|Test to see if the SessionHandler is available.  
 
|Test to see if the SessionHandler is available.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/session/storage/none.php
 
* '''Defined in''' libraries/joomla/session/storage/none.php
* '''Extends''' [[JSessionStorage/11.1|JSessionStorage]]
+
* '''Extends''' [[API17:JSessionStorage|JSessionStorage]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.session.storage.none' );</source>
 
<source lang="php">jimport( 'joomla.session.storage.none' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JSessionStorageNone source code''' on [[jplatform:session/storage/none.php|BitBucket]]
 
* {{JVer|11.1}} '''JSessionStorageNone source code''' on [[jplatform:session/storage/none.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Session/11.1|Session]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Session|Session]]
* [[JSessionStorageNone|Other versions of JSessionStorageNone]]
+
* [[API17:JSessionStorageNone|Other versions of JSessionStorageNone]]
{{SeeAlso:JSessionStorageNone}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JSessionStorageNone|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JSessionStorageNone
 
category=JSessionStorageNone
category=CodeExample
+
namespace=CodeExample
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
Line 69: Line 65:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JSessionStorageNone]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:41, 24 March 2017

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 JSessionStorageNone[edit]

Description[edit]

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 register Register the functions of this class with PHP's session handler.
public write Write session data to the SessionHandler backend.
public static test Test to see if the SessionHandler is available.
  • Defined in libraries/joomla/session/storage/none.php
  • Extends JSessionStorage

Importing[edit]

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

See also[edit]


User contributed notes[edit]

Code Examples[edit]