Skip to content
Snippets Groups Projects
Commit bd8026c1 authored by Eric Bremner's avatar Eric Bremner
Browse files

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
...@@ -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': quicklinks
} %} } %}
\ No newline at end of file
...@@ -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;
} }
......
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