You are here

function _field_group_easy_responsive_tabs_get_identifier in Field Group: Easy Responsive Tabs to Accordion 7

Convert a group identifier to a usable HTML id attribute.

2 calls to _field_group_easy_responsive_tabs_get_identifier()
field_group_pre_render_field_group_easy_responsive_tabs_nav in ./field_group_easy_responsive_tabs.module
Implements field_group_pre_render_<format-type>.
template_preprocess_field_group_easy_responsive_tabs_nav in ./field_group_easy_responsive_tabs.module
Implements template_preprocess_field_group_easy_responsive_tabs_nav().

File

./field_group_easy_responsive_tabs.module, line 348
Module file for the field_group_easy_responsive_tabs module.

Code

function _field_group_easy_responsive_tabs_get_identifier($identifier) {
  return preg_replace('/\\PL/u', '-', drupal_strtolower($identifier));
}