API17

Difference between revisions of "JSessionStorage::read"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Read the data for a particular session identifier from the SessionHandler backend.  
 
Read the data for a particular session identifier from the SessionHandler backend.  
  
{{Description:JSessionStorage::read}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JSessionStorage::read|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JSessionStorage::read ($id)
+
public function read ($id)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 25: Line 22:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' string The session data.
string The session data.
+
* '''Defined''' on line 114 of libraries/joomla/session/storage.php
===Defined in===
 
libraries/joomla/session/storage.php (line 120)
 
* see source code in [[jplatform:session/storage.php#cl-120|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JSessionStorage::read source code''' on [[jplatform:session/storage.php#cl-106|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JSessionStorage::read|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JSessionStorage|JSessionStorage]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Session|Session]]
* [[JSessionStorage/11.1|JSessionStorage]]
+
* [[API17:JSessionStorage::read|Other versions of JSessionStorage::read]]
* [[JSessionStorage::read|Other versions of this method]]
+
 
{{SeeAlso:JSessionStorage::read}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JSessionStorage::read
 
category=JSessionStorage::read
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JSessionStorage]][[Category:JSessionStorage::read]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:39, 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 JSessionStorage::read[edit]

Description[edit]

Read the data for a particular session identifier from the SessionHandler backend.


public function read ($id)
Parameter Type Default Description
$id string The session identifier.
  • Returns string The session data.
  • Defined on line 114 of libraries/joomla/session/storage.php

See also[edit]


User contributed notes[edit]

Code Examples[edit]