function galleria_optionsets_load_all in Galleria 7
Fetches all option sets from the database and returns them as an associative array.
3 calls to galleria_optionsets_load_all()
- galleria_field_formatter_settings_form in ./
galleria.module - Implements hook_field_formatter_settings_form().
- galleria_page_optionset_list in includes/
galleria.admin.inc - Menu callback; Listing of all current option sets.
- views_plugin_style_galleria::options_form in includes/
views_plugin_style_galleria.inc - Show a form to edit the style options.
File
- ./
galleria.module, line 189 - A light-weight, customizable image gallery plugin for Drupal based on jQuery
Code
function galleria_optionsets_load_all() {
ctools_include('export');
return ctools_export_crud_load_all('galleria_optionset');
}