function flexslider_optionset_load_all in Flex Slider 7
Same name and namespace in other branches
- 7.2 flexslider.module \flexslider_optionset_load_all()
Fetches all option sets from the database and returns them as an associative array.
4 calls to flexslider_optionset_load_all()
- flexslider_fields_field_formatter_settings_form in flexslider_fields/
flexslider_fields.module - Implements hook_field_formatter_settings_form().
- flexslider_page_optionset_list in ./
flexslider.admin.inc - Menu callback; Listing of all current option sets.
- flexslider_views_plugin_style_flexslider::options_form in flexslider_views/
flexslider_views_plugin_style_flexslider.inc - Show a form to edit the style options.
- flexslider_views_slideshow_views_slideshow_slideshow_type_form in flexslider_views_slideshow/
flexslider_views_slideshow.views_slideshow.inc - Configuration form within the Views Slideshow settings pane
File
- ./
flexslider.module, line 205 - A light-weight, customizable image gallery plugin for Drupal based on jQuery
Code
function flexslider_optionset_load_all() {
ctools_include('export');
$optionsets = ctools_export_crud_load_all('flexslider_optionset');
return $optionsets;
}