API16:JFactory/getDocument
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
Get a document object
Description:JFactory/getDocument
Syntax
static getDocument()
Returns
object
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
public static function getDocument() { if (!is_object(JFactory::$document)) { JFactory::$document = JFactory::_createDocument(); } return JFactory::$document; }
[Edit See Also] SeeAlso:JFactory/getDocument
Examples
<CodeExamplesForm />
