You are here

function galleria_optionset_load in Galleria 7

Fetches the given option set and returns it as an object or NULL, if no set could be found.

2 calls to galleria_optionset_load()
galleria_field_formatter_settings_summary in ./galleria.module
Implements hook_field_formatter_settings_summary().
template_preprocess_galleria_container in theme/theme.inc
Template preprocess handler for 'galleria_container' theme.

File

./galleria.module, line 197
A light-weight, customizable image gallery plugin for Drupal based on jQuery

Code

function galleria_optionset_load($optionset_name) {
  ctools_include('export');
  return ctools_export_crud_load('galleria_optionset', $optionset_name);
}