API15:JDocument/loadRenderer
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
Load a renderer
Description:JDocument/loadRenderer
Syntax
& loadRenderer($type)
| Parameter Name | Default Value | Description |
|---|---|---|
| $type | The renderer type |
Returns
object
Defined in
libraries/joomla/document/document.php
Importing
jimport( 'joomla.document.document' );
Source Body
function &loadRenderer( $type ) { $null = null; $class = 'JDocumentRenderer'.$type; if( !class_exists( $class ) ) { $path = dirname(__FILE__).DS.$this->_type.DS.'renderer'.DS.$type.'.php'; if(file_exists($path)) { require_once($path); } else { JError::raiseError(500,JText::_('Unable to load renderer class')); } } if ( !class_exists( $class ) ) { return $null; } $instance = new $class($this); return $instance; }
[Edit See Also] SeeAlso:JDocument/loadRenderer
Examples
<CodeExamplesForm />
