====== getTitle ====== {#JAPI Joomla.Framework Document JDocument::getTitle #} Gets the title of the current document. ===== Syntax ===== string getTitle () ===== Examples ===== This example displays the title of the current document. global $mainframe; $document = &JFactory::getDocument(); echo "Title: " . $document->getTitle(); Might produce: Title: Joomla! 1.5 Documentation Test Bed