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
ebdd3c71
Commit
ebdd3c71
authored
6 years ago
by
Eric Bremner
Browse files
Options
Downloads
Patches
Plain Diff
Fixing responsive images to allow for background images
parent
fcd8baf2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uw_fdsu_theme_resp.theme
+27
-1
27 additions, 1 deletion
uw_fdsu_theme_resp.theme
with
27 additions
and
1 deletion
uw_fdsu_theme_resp.theme
+
27
−
1
View file @
ebdd3c71
...
...
@@ -137,7 +137,7 @@ function _uw_fdsu_theme_resp_get_field_value_from_paragraph($paragraph, $field)
* @param $field_name
* @param $responsive_image_style
*/
function
_uw_fdsu_theme_resp_add_responsive_image_variables
(
&
$variables
,
$field_name
,
$responsive_image_style
)
{
function
_uw_fdsu_theme_resp_add_responsive_image_variables
(
&
$variables
,
$field_name
,
$responsive_image_style
,
$use_separate_variable
=
FALSE
)
{
// Get the field entity from the paragraph.
$field
=
$variables
[
'paragraph'
]
->
get
(
$field_name
)
->
first
();
...
...
@@ -159,5 +159,31 @@ function _uw_fdsu_theme_resp_add_responsive_image_variables(&$variables, $field_
// It sets variables for srcset, media, type and img_element
// for the responsive image style.
template_preprocess_responsive_image
(
$variables
);
// Set the old_sources to the sources in variables.
$old_sources
=
$variables
[
'sources'
];
// Unset the sources variable.
unset
(
$variables
[
'sources'
]);
// Step through each source and only get value.
// This is need so that a render doesn't happen
// and HTML escapes are put in place.
foreach
(
$old_sources
as
$source
)
{
$sources
[]
=
array
(
'srcset'
=>
$source
[
'srcset'
]
->
value
(),
'media'
=>
$source
[
'media'
]
->
value
(),
'type'
=>
$source
[
'type'
]
->
value
(),
);
}
// If not to set sources in variables, return sources.
// Otherwise set the sources in variables.
if
(
$use_separate_variable
)
{
return
$sources
;
}
else
{
$variables
[
'sources'
]
=
$sources
;
}
}
}
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