JFactory/getDocument
出典: Joomla! ドキュメンテーション
Returns a reference to the global document object, only creating it if it doesn't already exist. The object returned will be of type JDocument.
Syntax
object JDocument getDocument()
Example
In this example, the current page title is retrieved.
$doc =& JFactory::getDocument(); echo 'Current title is: ' . $doc->getTitle();
See also
自動更新 2012/05/24 23:51:32
