JCachePage/1.5
From Joomla! Documentation
< JCachePage(Difference between revisions)
(Layout updates) |
m (→See also: fixing link to API) |
||
| Line 39: | Line 39: | ||
<source lang="php">jimport( 'joomla.cache.handler.page' );</source> | <source lang="php">jimport( 'joomla.cache.handler.page' );</source> | ||
===See also=== | ===See also=== | ||
| − | * {{JVer|1.5}} '''JCachePage''' on [http://api.joomla.org/Joomla-Framework/Cache/JCachePage.html api.joomla.org] | + | * {{JVer|1.5}} '''JCachePage''' on [http://api.joomla.org/1.5/Joomla-Framework/Cache/JCachePage.html api.joomla.org] |
* {{JVer|1.5}} '''JCachePage source code''' on [[jframework15:cache/handler/page.php|JoomlaCode]] | * {{JVer|1.5}} '''JCachePage source code''' on [[jframework15:cache/handler/page.php|JoomlaCode]] | ||
* {{JVer|1.5}} Subpackage [[Subpackage Cache/1.5|Cache]] | * {{JVer|1.5}} Subpackage [[Subpackage Cache/1.5|Cache]] | ||
Latest revision as of 14:15, 13 February 2013
[edit]
JCachePage
[edit] Description
JCachePage is a concrete cache handler. It caches and returns the body of the page. [Edit Descripton]
[edit] Methods
| Visibility | Method name | Description |
|---|---|---|
| public | _makeId | Generate a page cache id. |
| public | _noChange | There is no change in page data so send a not modified header and die gracefully. |
| public | _setEtag | Set the ETag header in the response. |
| public | get | Get the cached page data. |
| public | store | Stop the cache buffer and store the cached data. |
- Defined in libraries/joomla/cache/handler/page.php
- Extends JCache
[edit] Importing
jimport( 'joomla.cache.handler.page' );
[edit] See also
-
JCachePage on api.joomla.org
-
JCachePage source code on JoomlaCode
-
Subpackage Cache
- Other versions of JCachePage
SeeAlso:JCachePage [Edit See Also]
[edit] User contributed notes
<CodeExamplesForm />