API15:JTemplate/enableTemplateCache
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
enable a template cache
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
enableTemplateCache($handler, $folder)
| Parameter Name | Default Value | Description |
|---|---|---|
| $handler | name of the template cache | |
| $folder | folder to store the cached files |
Returns
boolean true on success, patError otherwise
Defined in
libraries/joomla/template/template.php
Importing
jimport( 'joomla.template.template' );
Source Body
function enableTemplateCache( $handler, $folder ) { $info = array( 'cacheFolder' => $folder, 'lifetime' => 'auto', 'prefix' => 'global__', 'filemode' => 0755 ); $result = $this->useTemplateCache( 'File', $info ); return $result; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
