API17

Difference between revisions of "JCacheController"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
m (preparing for archive only)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<span class="editsection" style="font-size:76%;">
+
=={{JVer|11.1}} JCacheController==
<nowiki>[</nowiki>[[Description:JCacheController|Edit Descripton]]<nowiki>]</nowiki>
+
===Description===
</span>
+
 
{{Description:JCacheController}}
+
 
===Defined in===
 
libraries/joomla/cache/controller.php
 
===Subpackage===
 
[[Subpackage Cache/11.1|Cache]]
 
===Extends===
 
===Extended by===
 
* [[JCacheControllerCallback/11.1|JCacheControllerCallback]]
 
* [[JCacheControllerOutput/11.1|JCacheControllerOutput]]
 
* [[JCacheControllerPage/11.1|JCacheControllerPage]]
 
* [[JCacheControllerView/11.1|JCacheControllerView]]
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
 +
!Visibility
 
!Method name
 
!Method name
 
!Description
 
!Description
 
|-
 
|-
|[[JCacheController::__call/11.1|__call]]
+
|public
 +
|[[API17:JCacheController::__call|__call]]
 
|
 
|
 
|-
 
|-
|[[JCacheController::__construct/11.1|__construct]]
+
|public
 +
|[[API17:JCacheController::__construct|__construct]]
 
|Constructor.  
 
|Constructor.  
 
|-
 
|-
|[[JCacheController::get/11.1|get]]
+
|public
 +
|[[API17:JCacheController::get|get]]
 
|Get stored cached data by id and group.  
 
|Get stored cached data by id and group.  
 
|-
 
|-
|[[JCacheController::setCaching/11.1|setCaching]]
+
|public
 +
|[[API17:JCacheController::setCaching|setCaching]]
 
|Set caching enabled state.  
 
|Set caching enabled state.  
 
|-
 
|-
|[[JCacheController::setLifeTime/11.1|setLifeTime]]
+
|public
 +
|[[API17:JCacheController::setLifeTime|setLifeTime]]
 
|Set cache lifetime.  
 
|Set cache lifetime.  
 
|-
 
|-
|[[JCacheController::store/11.1|store]]
+
|public
 +
|[[API17:JCacheController::store|store]]
 
|Store data to cache by id and group.  
 
|Store data to cache by id and group.  
 
|-
 
|-
|[[JCacheController::addIncludePath/11.1|addIncludePath]]
+
|public static
 +
|[[API17:JCacheController::addIncludePath|addIncludePath]]
 
|Add a directory where  should search for controllers.  
 
|Add a directory where  should search for controllers.  
 
|-
 
|-
|[[JCacheController::getInstance/11.1|getInstance]]
+
|public static
 +
|[[API17:JCacheController::getInstance|getInstance]]
 
|Returns a reference to a cache adapter object, always creating it.  
 
|Returns a reference to a cache adapter object, always creating it.  
 
|-
 
|-
 
|}
 
|}
 +
* '''Defined in''' libraries/joomla/cache/controller.php
 +
* '''Extended by'''
 +
** [[API17:JCacheControllerCallback|JCacheControllerCallback]]
 +
** [[API17:JCacheControllerOutput|JCacheControllerOutput]]
 +
** [[API17:JCacheControllerPage|JCacheControllerPage]]
 +
** [[API17:JCacheControllerView|JCacheControllerView]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.cache.controller' );</source>
 
<source lang="php">jimport( 'joomla.cache.controller' );</source>
 
===See also===
 
===See also===
* [[JCacheController|Other versions of this class]]
+
* {{JVer|11.1}} '''JCacheController source code''' on [[jplatform:cache/controller.php|BitBucket]]
{{SeeAlso:JCacheController}}
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Cache|Cache]]
<span class="editsection" style="font-size:76%;">
+
* [[API17:JCacheController|Other versions of JCacheController]]
<nowiki>[</nowiki>[[SeeAlso:JCacheController|Edit See Also]]<nowiki>]</nowiki>
+
 
</span>
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JCacheController
 
category=JCacheController
category=CodeExample
+
namespace=CodeExample
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JCacheController]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 20:24, 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 JCacheController[edit]

Description[edit]

Methods[edit]

Visibility Method name Description
public __call
public __construct Constructor.
public get Get stored cached data by id and group.
public setCaching Set caching enabled state.
public setLifeTime Set cache lifetime.
public store Store data to cache by id and group.
public static addIncludePath Add a directory where should search for controllers.
public static getInstance Returns a reference to a cache adapter object, always creating it.

Importing[edit]

jimport( 'joomla.cache.controller' );

See also[edit]


User contributed notes[edit]

Code Examples[edit]