Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
uw_fdsu_theme_resp
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_fdsu_theme_resp
Commits
602bc7cd
Commit
602bc7cd
authored
1 year ago
by
Eric Bremner
Committed by
Kevin Paxman
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-6711: trying to fix the details labels
parent
bc9dd78b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!122
ISTWCMS-6711: fixing label for details
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/elements/details.html.twig
+1
-1
1 addition, 1 deletion
templates/elements/details.html.twig
uw_fdsu_theme_resp.theme
+34
-7
34 additions, 7 deletions
uw_fdsu_theme_resp.theme
with
35 additions
and
8 deletions
templates/elements/details.html.twig
+
1
−
1
View file @
602bc7cd
...
@@ -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"
>
...
...
This diff is collapsed.
Click to expand it.
uw_fdsu_theme_resp.theme
+
34
−
7
View file @
602bc7cd
...
@@ -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'
];
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment