group-settings-help.html.twig in Open Social 8.9
Theme override to display help text for file fields.
Available variables:
- popover: Markup to display the descriptions as a popover instead.
See also
2 theme calls to group-settings-help.html.twig
- social_group_preprocess_group in modules/
social_features/ social_group/ social_group.module - Prepares variables for profile templates.
- social_group_preprocess_group__hero in modules/
social_features/ social_group/ social_group.module - Implements hook_preprocess_HOOK().
File
themes/socialbase/templates/group/group-settings-help.html.twigView source
- {#
- /**
- * @file
- * Theme override to display help text for file fields.
- *
- * Available variables:
- * - popover: Markup to display the descriptions as a popover instead.
- *
- * @see template_preprocess_group_settings_help()
- */
- #}
- {% if popover %}
- {{ popover_toggle }}
- <div class="hidden help-block" id="{{ popover_id }}">
- {{ popover_info }}
- </div>
- {% endif %}