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
bd8026c1
Commit
bd8026c1
authored
6 years ago
by
Eric Bremner
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-2447: Updating quicklinks to use responsive image and proper syntax
parent
b05fb1ce
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-quicklinks-block.html.twig
+1
-1
1 addition, 1 deletion
.../paragraphs/paragraph--uw-para-quicklinks-block.html.twig
uw_fdsu_theme_resp.theme
+37
-12
37 additions, 12 deletions
uw_fdsu_theme_resp.theme
with
38 additions
and
13 deletions
templates/paragraphs/paragraph--uw-para-quicklinks-block.html.twig
+
1
−
1
View file @
bd8026c1
...
@@ -2,5 +2,5 @@
...
@@ -2,5 +2,5 @@
'anchor_link'
:
anchor_link
,
'anchor_link'
:
anchor_link
,
'display_title'
:
display_title
,
'display_title'
:
display_title
,
'title'
:
content.field_uw_block_title
|
field_value
,
'title'
:
content.field_uw_block_title
|
field_value
,
'quicklinks'
:
content.field_uw_
quicklink
'quicklinks'
:
quicklink
s
}
%}
}
%}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
uw_fdsu_theme_resp.theme
+
37
−
12
View file @
bd8026c1
...
@@ -126,21 +126,46 @@ function uw_fdsu_theme_resp_preprocess_paragraph(&$variables) {
...
@@ -126,21 +126,46 @@ function uw_fdsu_theme_resp_preprocess_paragraph(&$variables) {
// Set the anchor link.
// Set the anchor link.
$variables
[
'anchor_link'
]
=
_uw_fdsu_theme_resp_get_field_value_from_paragraph
(
$variables
[
'paragraph'
],
'field_uw_anchor_link'
);
$variables
[
'anchor_link'
]
=
_uw_fdsu_theme_resp_get_field_value_from_paragraph
(
$variables
[
'paragraph'
],
'field_uw_anchor_link'
);
// Set the responsive image variables.
$field_values
=
$variables
[
'paragraph'
]
->
get
(
'field_uw_quicklink'
)
->
getValue
();
// _uw_fdsu_theme_resp_add_responsive_image_variables($variables, 'field_uw_icon_image', 'uw_resp_is_marketing_item');
unset
(
$quicklinks
);
$counter
=
0
;
// Process field_uw_options field which includes multiple entities.
foreach
(
$field_values
as
$field_value
)
{
// Get paragraph entity of field_uw_options field from the target_id.
$paragraph
=
\Drupal\paragraphs\Entity\Paragraph
::
load
(
$field_value
[
'target_id'
]);
// Get the field entity from the paragraph.
$field
=
$paragraph
->
field_uw_icon_image
->
first
();
// Set link section title
// If there is a field to process, process it.
//$variables['quicklinks'] = _uw_fdsu_theme_resp_get_field_value_from_paragraph($variables['paragraph'], array(
if
(
isset
(
$field
))
{
// [0] => [
// Get the sources for the responsive image.
// 'img_src' => 'field_uw_icon_image',
$quicklinks
[
$counter
][
'sources'
]
=
_uw_fdsu_theme_resp_add_responsive_image_variables
(
$variables
,
$field
,
'uw_resp_is_marketing_item'
);
// 'link_section_title' => 'field_uw_link_section_title',
}
// 'links' => 'field_uw_quicklinks_links',
//]);
//vardumper($variables['content']['field_uw_quicklink']);
$sources
=
_uw_fdsu_theme_resp_add_responsive_image_variables
(
$variables
[
'content'
][
'field_uw_quicklink'
][
0
],
'field_uw_icon_image'
,
'uw_resp_is_marketing_item'
,
TRUE
);
// Set the link section title.
vardumper
(
$sources
);
$quicklinks
[
$counter
][
'link_section_title'
]
=
$paragraph
->
get
(
'field_uw_link_section_title'
)
->
getValue
()[
0
][
'value'
];
// Get the links out of the quicklink paragraph.
$links
=
$paragraph
->
get
(
'field_uw_quicklinks_links'
)
->
getValue
();
// Step through each link and set the url and content.
foreach
(
$links
as
$link
)
{
$quicklinks
[
$counter
][
'links'
][]
=
array
(
'link_url'
=>
$link
[
'uri'
],
'link_content'
=>
$link
[
'title'
]
);
}
// Increment the counter used for the quicklinks array.
$counter
++
;
}
// Set the quicklinks variable to be used in the template.
$variables
[
'quicklinks'
]
=
$quicklinks
;
break
;
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