
| Current Path : /var/www/html/strat/web/modules/contrib/webform/templates/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/modules/contrib/webform/templates/webform-progress-tracker.html.twig |
{#
/**
* @file
* Default theme implementation for webform wizard progress tracker.
*
* Available variables:
* - webform: A webform.
* - pages: Associative array of wizard pages.
* - progress: Array of wizard progress containing page titles.
* - current_page: Current wizard page key.
* - current_index: The current wizard page index.
* - max_pages: Maximum number of pages that progress text should be displayed on.
*
* @see template_preprocess_webform_progress_tracker()
* @see https://www.w3.org/WAI/tutorials/forms/multi-page/
*
* @ingroup themeable
*/
#}
{{ attach_library('webform/webform.progress.tracker') }}
<ul class="webform-progress-tracker progress-tracker progress-tracker--center" data-webform-progress-steps>
{% for index, page in progress %}
{% set is_completed = index < current_index %}
{% set is_active = index == current_index %}
{%
set classes = [
'progress-step',
is_completed ? 'is-complete',
is_active ? 'is-active',
]
%}
{%
set attributes = create_attribute()
.setAttribute('data-webform-' ~ page.type, page.name)
.setAttribute('title', page.title)
.setAttribute('class', '')
.addClass(classes)
%}
{% if is_active %}
{% set attributes = attributes.setAttribute('aria-current', 'step') %}
{% endif %}
<li{{ attributes }}>
<div class="progress-marker" data-webform-progress-step data-webform-progress-link data-text="{{ index + 1 }}"></div>
{% if progress|length < max_pages %}
<div class="progress-text">
<div class="progress-title" data-webform-progress-link>
<span class="visually-hidden" data-webform-progress-state>{% if is_active or is_completed %}{{ is_active ? 'Current'|t : 'Completed'|t }}{% endif %}</span>
{{ page.title }}
</div>
</div>
{% endif %}
</li>
{% endfor %}
</ul>