function jquerymobile_icon_options in jQuery Mobile module 7.2
List of available icons.
Return value
array Returns an array of icon names
1 call to jquerymobile_icon_options()
- _jquerymobile_button_settings in ./
jquerymobile.module - Generate the attributes array for the given button settings.
File
- ./
jquerymobile.module, line 364
Code
function jquerymobile_icon_options() {
return array(
'arrow-l' => 'arrow-l',
'arrow-r' => 'arrow-r',
'arrow-u' => 'arrow-u',
'arrow-d' => 'arrow-d',
'delete' => 'delete',
'plus' => 'plus',
'minus' => 'minus',
'check' => 'check',
'gear' => 'gear',
'refresh' => 'refresh',
'forward' => 'forward',
'back' => 'back',
'grid' => 'grid',
'star' => 'star',
'alert' => 'alert',
'info' => 'info',
'home' => 'home',
'search' => 'search',
);
}