overlay-disable-message.html.twig

Default theme implementation for the message about disabling the overlay.

Available variables:

  • profile_link: The link to this user's account.
  • dismiss_link: The link to dismiss the overlay.

See also

template_preprocess()

template_preprocess_overlay_disable_message()

1 theme call to overlay-disable-message.html.twig
overlay_disable_message in drupal/core/modules/overlay/overlay.module
Returns a renderable array representing a message for disabling the overlay.

File

drupal/core/modules/overlay/templates/overlay-disable-message.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the message about disabling the overlay.
  5. *
  6. * Available variables:
  7. * - profile_link: The link to this user's account.
  8. * - dismiss_link: The link to dismiss the overlay.
  9. *
  10. * @see template_preprocess()
  11. * @see template_preprocess_overlay_disable_message()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <div id="overlay-disable-message" class="clearfix">
  17. <h3 class="element-invisible">{{ 'Options for the administrative overlay'|t }}</h3>
  18. {{ profile_link }} {{ dismiss_link }}
  19. </div>

Related topics