Skip to content
Snippets Groups Projects
Commit 602bc7cd authored by Eric Bremner's avatar Eric Bremner Committed by Kevin Paxman
Browse files

ISTWCMS-6711: trying to fix the details labels

parent bc9dd78b
No related branches found
No related tags found
1 merge request!122ISTWCMS-6711: fixing label for details
...@@ -30,7 +30,7 @@ Prefix 'details' class to avoid collision with Modernizr. ...@@ -30,7 +30,7 @@ Prefix 'details' class to avoid collision with Modernizr.
] ]
%} %}
<summary{{ summary_attributes.addClass(summary_classes) }}> <summary{{ summary_attributes.addClass(summary_classes) }}>
<label for="{{ form_field_id }}">{{ title }}</label> <label{% if form_field_id %} for="{{ form_field_id }}"{% endif %}>{{ title }}</label>
</summary> </summary>
{%- endif -%} {%- endif -%}
<div class="seven-details__wrapper details-wrapper"> <div class="seven-details__wrapper details-wrapper">
......
...@@ -693,11 +693,38 @@ function uw_fdsu_theme_resp_preprocess_container(&$variables) { ...@@ -693,11 +693,38 @@ function uw_fdsu_theme_resp_preprocess_container(&$variables) {
*/ */
function uw_fdsu_theme_resp_preprocess_details(&$variables) { function uw_fdsu_theme_resp_preprocess_details(&$variables) {
// Add the form field id to the variables. // ISTWCMS-6711: this comes from the label not having the
// This comes from ISTWCMS-6711, we are // correct for in it. So we are going to check if this is
// removing the -collapsible if there is // a better exposed filter and if so then add the correct
// one there and using the html id. If there // based on the type of exposed filter it is. The date
// is no -collapsible, it will just use the // filter needs special treatment, since it is using the
// html id. // wrapper as the data drupal selector, and we need it to
$variables['form_field_id'] = str_replace('-collapsible', '', $variables['attributes']['id']); // use the -value. If it is not a bef, then check if there
// is a data drupal selector and use it as the form field id.
if (
isset($variables['element'][0]['#context']['#plugin_type']) &&
$variables['element'][0]['#context']['#plugin_type'] == 'bef'
) {
// If this is a date picker, then change the form field id
// to use -value instead of -wrapper. If not then just use
// the straight data drupal selector.
if ($variables['element'][0]['#context']['#plugin_id'] == 'bef_datepicker') {
$variables['form_field_id'] = str_replace(
'-wrapper',
'-value',
$variables['element'][0]['#attributes']['data-drupal-selector']
);
}
else {
$variables['form_field_id'] = $variables['element'][0]['#attributes']['data-drupal-selector'];
}
}
else {
// If there is a data drupal selector use it for form field id.
if (isset($variables['element'][0]['#attributes']['data-drupal-selector'])) {
$variables['form_field_id'] = $variables['element'][0]['#attributes']['data-drupal-selector'];
}
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment