You are here

function flexslider_optionset_exists in Flex Slider 7

Same name and namespace in other branches
  1. 7.2 flexslider.module \flexslider_optionset_exists()

Checks whether an option set with the given name already exists.

1 string reference to 'flexslider_optionset_exists'
flexslider_form_optionset_add in ./flexslider.admin.inc
Form builder; Form for adding a new option set.

File

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

Code

function flexslider_optionset_exists($optionset_name) {
  ctools_include('export');
  return ctools_export_crud_load('flexslider_optionset', $optionset_name) !== NULL;
}