====== getActive ======
{#JAPI Joomla.Framework Application JMenu::getActive #}
Gets the active menu item.
The active menu reflects the link of the current page, provided there's a link to it in one of the visible menus.
===== Syntax =====
object The &getActive ()
===== Examples =====
// get the Singleton instance
$menu = &JMenu::getInstance();
// get the active menu item
$active = &$menu->getActive();
echo '', $active->name ,'';
Might create:
About Joomla!
----
~~DISCUSSION~~