status-report-counter.html.twig
Default theme implementation for the status report counter.
Available variables:
- amount: The number shown on counter.
 - text: The text shown on counter.
 - severity: The severity of the counter.
 
2 theme calls to status-report-counter.html.twig
- ReviewForm::buildForm in core/
modules/ migrate_drupal_ui/ src/ Form/ ReviewForm.php  - Form constructor.
 - StatusReportPage::preRenderCounters in core/
modules/ system/ src/ Element/ StatusReportPage.php  - The #pre_render callback to create counter elements.
 
File
- 
              core/
modules/ system/ templates/ status-report-counter.html.twig  
View source
- {#
 - /**
 -  * @file
 -  * Default theme implementation for the status report counter.
 -  *
 -  * Available variables:
 -  * - amount: The number shown on counter.
 -  * - text: The text shown on counter.
 -  * - severity: The severity of the counter.
 -  *
 -  * @ingroup themeable
 -  */
 - #}
 - <span class="system-status-counter__status-icon system-status-counter__status-icon--{{ severity }}"></span>
 - <span>{{ amount }} {{ text }}</span>
 - <a href="#{{ severity }}"><span class="visually-hidden">{{ text }} </span>{{ 'Details'|t }}</a>
 
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.