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
e1ab6e0b
Commit
e1ab6e0b
authored
6 years ago
by
l26yan
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-2448 Get all variables related to options block to an array for twig file use
parent
02708195
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/paragraphs/paragraph--uw-para-options-block.html.twig
+5
-14
5 additions, 14 deletions
...tes/paragraphs/paragraph--uw-para-options-block.html.twig
uw_fdsu_theme_resp.theme
+27
-1
27 additions, 1 deletion
uw_fdsu_theme_resp.theme
with
32 additions
and
15 deletions
templates/paragraphs/paragraph--uw-para-options-block.html.twig
+
5
−
14
View file @
e1ab6e0b
{%
set
options
=
[]
%}
{%
for
item
in
content.field_uw_options
|
field_value
%}
{%
set
options
=
options
|
merge
([
{
link_description
:
item
[
'#paragraph'
]
.
field_uw_link_description.value
,
link_uri
:
item
[
'#paragraph'
]
.
field_uw_option_link.value
[
0
][
'uri'
],
link_title
:
item
[
'#paragraph'
]
.
field_uw_option_link.value
[
0
][
'title'
],
link_colouring
:
item
[
'#paragraph'
]
.
field_uw_option_colouring.value
,
}
])
%}
{%
endfor
%}
{%
include
'@organisms/single-page/options-block/options-block.twig'
with
{
'display_title'
:
display_title
,
'title'
:
content.field_uw_block_title
|
field_value
,
'options'
:
options
,
'link_description'
:
link_description
,
'link_uri'
:
link_uri
,
'link_title'
:
link_title
,
'link_colouring'
:
link_colouring
,
'sources'
:
sources
,
'output_image_tag'
:
output_image_tag
,
'img_element'
:
img_element
[
'#uri'
],
'alt'
:
alt
}
%}
}
%}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
uw_fdsu_theme_resp.theme
+
27
−
1
View file @
e1ab6e0b
...
...
@@ -124,6 +124,7 @@ function uw_fdsu_theme_resp_preprocess_paragraph(&$variables) {
//Get value from field_uw_options field;
$field_values
=
$variables
[
'paragraph'
]
->
get
(
'field_uw_options'
)
->
getValue
();
$i
=
0
;
foreach
(
$field_values
as
$field_value
)
{
...
...
@@ -144,13 +145,38 @@ function uw_fdsu_theme_resp_preprocess_paragraph(&$variables) {
// Set uri and image style id.
$variables
[
'uri'
]
=
$file
->
getFileUri
();
$variables
[
'responsive_image_style_id'
]
=
'uw_resp_is_sph_header_image'
;
// Call template function from responsive image core module.
// It sets variables for srcset, media, type and img_element
// for the responsive image style.
template_preprocess_responsive_image
(
$variables
);
// Add all variables to an array.
$options2
[
$i
][
'alt'
]
=
$variables
[
'alt'
];
$options2
[
$i
][
'uri'
]
=
$variables
[
'uri'
];
$options2
[
$i
][
'responsive_image_style_id'
]
=
$variables
[
'responsive_image_style_id'
];
$options2
[
$i
][
'sources'
]
=
$variables
[
'sources'
];
$options2
[
$i
][
'output_image_tag'
]
=
$variables
[
'output_image_tag'
];
$options2
[
$i
][
'img_element'
]
=
$variables
[
'img_element'
];
}
// Get colouring value and add to the variable array.
$link_colouring
=
$p
->
field_uw_option_colouring
->
first
()
->
getValue
();
$options2
[
$i
][
'link_colouring'
]
=
$link_colouring
[
'value'
];
// Get link description and add to the variable array.
$link_description
=
$p
->
field_uw_link_description
->
first
()
->
getValue
();
$options2
[
$i
][
'link_description'
]
=
$link_description
[
'value'
];
// Get link uri and title and add to the variable array.
$link
=
$p
->
field_uw_option_link
->
first
()
->
getValue
();
$options2
[
$i
][
'link_uri'
]
=
$link
[
'uri'
];
$options2
[
$i
][
'link_title'
]
=
$link
[
'title'
];
$i
++
;
}
$variables
[
'options2'
]
=
$options2
;
vardumper
(
$options2
);
break
;
}
}
...
...
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