Skip to content
Snippets Groups Projects
Commit e1ab6e0b authored by l26yan's avatar l26yan
Browse files

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
{% 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
......@@ -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;
}
}
......
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