====== fetchBody ====== {#JAPI Joomla.Framework Document JDocument::fetchBody #} This function is used to return the document body. It is an abstract function and can be overriden by a subclass to provide this functionality. ===== Syntax ===== string fetchBody () ===== Examples ===== global $mainframe; $document = &JFactory::getDocument(); $body = $document->fetchBody(); This function in the JDocument class returns an empty string.