JCacheControllerOutput: Difference between revisions
From Joomla! Documentation
m →User contributed notes: moving preparation |
m preparing for archive only |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
=={{JVer|11.1}} JCacheControllerOutput== | =={{JVer|11.1}} JCacheControllerOutput== | ||
===Description=== | ===Description=== | ||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
| Line 14: | Line 12: | ||
|- | |- | ||
|public | |public | ||
|[[JCacheControllerOutput::end | |[[API17:JCacheControllerOutput::end|end]] | ||
|Stop the cache buffer and store the cached data. | |Stop the cache buffer and store the cached data. | ||
|- | |- | ||
|public | |public | ||
|[[JCacheControllerOutput::start | |[[API17:JCacheControllerOutput::start|start]] | ||
|Start the cache. | |Start the cache. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/cache/controller/output.php | * '''Defined in''' libraries/joomla/cache/controller/output.php | ||
* '''Extends''' [[JCacheController | * '''Extends''' [[API17:JCacheController|JCacheController]] | ||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.cache.controller.output' );</source> | <source lang="php">jimport( 'joomla.cache.controller.output' );</source> | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JCacheControllerOutput source code''' on [[jplatform:cache/controller/output.php|BitBucket]] | * {{JVer|11.1}} '''JCacheControllerOutput source code''' on [[jplatform:cache/controller/output.php|BitBucket]] | ||
* {{JVer|11.1}} Subpackage [[Subpackage Cache | * {{JVer|11.1}} Subpackage [[API17:Subpackage Cache|Cache]] | ||
* [[JCacheControllerOutput|Other versions of JCacheControllerOutput]] | * [[API17:JCacheControllerOutput|Other versions of JCacheControllerOutput]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JCacheControllerOutput | category=JCacheControllerOutput | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
Latest revision as of 02:25, 25 March 2017
JCacheControllerOutput
Description
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | end | Stop the cache buffer and store the cached data. |
| public | start | Start the cache. |
- Defined in libraries/joomla/cache/controller/output.php
- Extends JCacheController
Importing
jimport( 'joomla.cache.controller.output' );
See also
JCacheControllerOutput source code on BitBucket
Subpackage Cache- Other versions of JCacheControllerOutput
User contributed notes
Code Examples