You are here

function views_fieldsets_name_is_fieldset in Views fieldsets 7.2

Same name and namespace in other branches
  1. 7 views_fieldsets.module \views_fieldsets_name_is_fieldset()

Helper to ...

Establishes whether a field is a Views Fieldsets field BY ITS NAME.

Deprecated since 2012-06-27.

File

./views_fieldsets.module, line 429
Hooks, helpers and theming for the Views Fieldsets module.

Code

function views_fieldsets_name_is_fieldset($field_name) {
  return 0 < preg_match('/^fieldset(_\\d+)?$/', $field_name);
}