form-element-label.html.twig in Open Social 8.2
Same filename and directory in other branches
- 8.9 themes/socialbase/templates/form/form-element-label.html.twig
- 8 themes/socialbase/templates/form/form-element-label.html.twig
- 8.3 themes/socialbase/templates/form/form-element-label.html.twig
- 8.4 themes/socialbase/templates/form/form-element-label.html.twig
- 8.5 themes/socialbase/templates/form/form-element-label.html.twig
- 8.6 themes/socialbase/templates/form/form-element-label.html.twig
- 8.7 themes/socialbase/templates/form/form-element-label.html.twig
- 8.8 themes/socialbase/templates/form/form-element-label.html.twig
Default theme implementation for a form element label.
Available variables:
- element: an input element.
- title: The label's text.
- title_display: Elements title_display setting.
- description: element description.
- required: An indicator for whether the associated form element is required.
- attributes: A list of HTML attributes for the label.
See also
File
themes/socialbase/templates/form/form-element-label.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for a form element label.
- *
- * Available variables:
- * - element: an input element.
- * - title: The label's text.
- * - title_display: Elements title_display setting.
- * - description: element description.
- * - required: An indicator for whether the associated form element is required.
- * - attributes: A list of HTML attributes for the label.
- *
- * @see template_preprocess_form_element_label()
- *
- * @ingroup templates
- */
- #}
-
- {%-
- set classes = [
- 'control-label',
- title_display == 'after' ? 'option',
- title_display == 'invisible' ? 'sr-only',
- title_display == 'above' ? 'control-label--above',
- required ? 'js-form-required',
- required ? 'form-required',
- ]
- -%}
-
- {%- if title is not empty -%}
- {{ element }}
- <label{{ attributes.addClass(classes) }}>{{ title }}
- {%- if description -%}
- <p class="help-block">{{ description }}</p>
- {%- endif -%}
- </label>
- {%- if required and title_display != 'invisible' -%}
- <span class="form-required">*</span>
- {%- endif -%}
- {%- endif -%}