API17

Difference between revisions of "JCacheStorage::store"

From Joomla! Documentation

(Layout updates)
(Updated to r1448:247ba8d88526)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JCacheStorage::store|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JCacheStorage::store|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JCacheStorage::store ($id, $group, $data)
+
public function store (
 +
        $id
 +
        $group
 +
        $data
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 37: Line 38:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean True on success, false otherwise
boolean True on success, false otherwise
+
* '''Defined''' on line 167 of libraries/joomla/cache/storage.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/cache/storage.php (line 167)
 
* see source code in [[jplatform:cache/storage.php#cl-167|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JCacheStorage::store source code''' on [[jplatform:cache/storage.php#cl-159|BitBucket]]
 +
* {{JVer|11.1}} Class [[JCacheStorage/11.1|JCacheStorage]]
 +
* {{JVer|11.1}} Subpackage [[Subpackage_Cache/11.1|Cache]]
 +
* [[JCacheStorage::store|Other versions of JCacheStorage::store]]
 +
{{SeeAlso:JCacheStorage::store}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JCacheStorage::store|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JCacheStorage::store|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JCacheStorage/11.1|JCacheStorage]]
+
===User contributed notes===
* [[JCacheStorage::store|Other versions of this method]]
 
{{SeeAlso:JCacheStorage::store}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 58: Line 58:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
 
<noinclude>[[Category:JCacheStorage]][[Category:JCacheStorage::store]]</noinclude>
 
<noinclude>[[Category:JCacheStorage]][[Category:JCacheStorage::store]]</noinclude>

Revision as of 20:16, 27 April 2011

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 JCacheStorage::store[edit]

Description[edit]

Store the data to cache by id and group.

Template:Description:JCacheStorage::store [Edit Descripton]

public function store (
        $id
        $group
        $data
)
Parameter Type Default Description
$id string The cache data id
$group string The cache data group
$data string The data to store in cache
  • Returns boolean True on success, false otherwise
  • Defined on line 167 of libraries/joomla/cache/storage.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JCacheStorage::store [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />