API15:JTemplate/enableTemplateCache
From Joomla! Documentation
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
Code Examples