API15:JTemplate/setTemplateCachePrefix
From Joomla! Documentation
Description
Set the prefix of the template cache
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setTemplateCachePrefix($prefix)
| Parameter Name | Default Value | Description |
|---|---|---|
| $prefix | the prefix of the template cache |
Returns
boolean true on success, patError otherwise
Defined in
libraries/joomla/template/template.php
Importing
jimport( 'joomla.template.template' );
Source Body
function setTemplateCachePrefix( $prefix )
{
if (!$this->_tmplCache) {
return false;
}
$this->_tmplCache->_params['prefix'] = $prefix;
return true;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples