tmgmt-local-translation-form-element-status.html.twig in Translation Management Tool 8
Default theme implementation for local form element status.
Available variables:
- wrapper_attributes: The HTML attributes object of status wrapper.
 - icon_url: The URL of the icon in use.
 - title: The title of the icon.
 
1 theme call to tmgmt-local-translation-form-element-status.html.twig
- LocalTaskItemForm::formElement in translators/
tmgmt_local/ src/ Form/ LocalTaskItemForm.php  - Builds a translation form element.
 
File
translators/tmgmt_local/templates/tmgmt-local-translation-form-element-status.html.twigView source
- {#
 - /**
 -  * @file
 -  * Default theme implementation for local form element status.
 -  *
 -  * Available variables:
 -  * - wrapper_attributes: The HTML attributes object of status wrapper.
 -  * - icon_url: The URL of the icon in use.
 -  * - title: The title of the icon.
 -  *
 -  * @ingroup themeable
 -  */
 - #}
 - <div{{ wrapper_attributes }}>
 -   <img src="{{ icon_url }}" alt="{{ title }}"/><span></span>
 - </div>