API15

JTemplate/enableTemplateCache

From Joomla! Documentation

< API15:JTemplate
Revision as of 17:23, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== enable a template cache <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</n...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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.

Description[edit]

enable a template cache

[Edit Descripton]

Template:Description:JTemplate/enableTemplateCache

Syntax[edit]

enableTemplateCache($handler, $folder)
Parameter Name Default Value Description
$handler name of the template cache
$folder folder to store the cached files

Returns[edit]

boolean true on success, patError otherwise

Defined in[edit]

libraries/joomla/template/template.php

Importing[edit]

jimport( 'joomla.template.template' );

Source Body[edit]

function enableTemplateCache( $handler, $folder )
{
        $info = array(
                'cacheFolder'   => $folder,
                'lifetime'              => 'auto',
                'prefix'                => 'global__',
                'filemode'              => 0755
        );
        $result = $this->useTemplateCache( 'File', $info );

        return $result;
}

[Edit See Also] Template:SeeAlso:JTemplate/enableTemplateCache

Examples[edit]

<CodeExamplesForm />