====== getName ====== {#JAPI Joomla.Framework HTML JButton::getName #} Gets the button name. ===== Syntax ===== string getName () ===== Examples ===== $bar =& new JToolBar( 'My ToolBar' ); $button =& $bar->loadButtonType( 'Standard' ); $button->fetchId( 'Standard', 'send', 'Activate', 'activate', false ); echo $button->getName(); might produce: Standard ---- ~~DISCUSSION~~
$bar =& new JToolBar( 'My ToolBar' ); $button =& $bar->loadButtonType( 'Standard' ); $button->fetchId( 'Standard', 'send', 'Activate', 'activate', false ); echo $button->getName();
Standard