====== fetchIconClass ======
{#JAPI Joomla.Framework HTML JButton::fetchIconClass #}
Method to get the CSS class name for an icon identifier. This method dan be redefined in the final button class.
===== Syntax =====
string fetchIconClass ( **$identifier** )
| **$identifier** | string | is a string containing the icon identification string. |
===== Examples =====
$bar =& new JToolBar( 'My ToolBar' );
$button =& $bar->loadButtonType( 'Standard' );
echo $button->fetchIconClass( 'example' );
might produce:
icon-32-example
----
~~DISCUSSION~~