tablesort-indicator.html.twig
Theme override for displaying a tablesort indicator.
Available variables:
- style: Either 'asc' or 'desc', indicating the sorting direction.
 
@todo Remove after https://www.drupal.org/node/1973418 is in.
2 theme calls to tablesort-indicator.html.twig
- TableSort::header in core/
lib/ Drupal/ Core/ Utility/ TableSort.php  - Formats a column header.
 - ViewsThemeHooks::preprocessViewsViewTable in core/
modules/ views/ src/ Hook/ ViewsThemeHooks.php  - Prepares variables for views table templates.
 
File
- 
              core/
themes/ claro/ templates/ admin/ tablesort-indicator.html.twig  
View source
- {#
 - /**
 -  * @file
 -  * Theme override for displaying a tablesort indicator.
 -  *
 -  * Available variables:
 -  * - style: Either 'asc' or 'desc', indicating the sorting direction.
 -  *
 -  * @todo Remove after https://www.drupal.org/node/1973418 is in.
 -  */
 - #}
 - {%
 -   set classes = [
 -     'tablesort',
 -     'tablesort--' ~ style,
 -   ]
 - %}
 - <span{{ attributes.addClass(classes) }}>
 -   {% if style in ['asc', 'desc'] %}
 -     <span class="visually-hidden">
 -       {% if style == 'asc' -%}
 -         {{ 'Sort ascending'|t }}
 -       {% else -%}
 -         {{ 'Sort descending'|t }}
 -       {% endif %}
 -     </span>
 -   {% endif %}
 - </span>
 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.