function footable_icons in FooTable 7.2
Build a list of icons.
Return value
array A keyed array of in the form of 'name' => 'title'.
1 call to footable_icons()
- footable_plugin_style_footable::options_form in views/
footable_plugin_style_footable.inc - Render the given style.
File
- ./
footable.module, line 483 - Provides Views integration for the jQuery FooTable plugin.
Code
function footable_icons() {
$icons = array(
'plus' => t('Plus'),
'minus' => t('Minus'),
'plus-circle' => t('Plus circle'),
'minus-circle' => t('Minus circle'),
'chevron-left' => t('Chevron left'),
'chevron-right' => t('Chevron right'),
'chevron-up' => t('Chevron up'),
'chevron-down' => t('Chevron down'),
);
drupal_alter('footable_icons', $icons);
return $icons;
}