API15:JTemplate/setTemplateCachePrefix
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
Set the prefix of the template cache
Description:JTemplate/setTemplateCachePrefix
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; }
[Edit See Also] SeeAlso:JTemplate/setTemplateCachePrefix
Examples
<CodeExamplesForm />
