You are here

private-message.html.twig in Private Message 8

Same filename and directory in other branches
  1. 8.2 templates/private-message.html.twig

Default theme implementation to display a private message.

Available variables:

  • private_message: The private message entity with limited access to object properties and methods.
  • content: All private message items. Use {{ content }} to print them all, or print a subset such as {{ content.field_example }}. Use {{ content|without('field_example') }} to temporarily suppress the printing of a given child element.
  • url: Direct URL of the current private message.
  • view_mode: View mode; for example, "teaser" or "full".
  • logged_in: Flag for authenticated user status. Will be true when the current user is a logged-in member.

File

templates/private-message.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a private message.
  5. *
  6. * Available variables:
  7. * - private_message: The private message entity
  8. * with limited access to object properties and methods.
  9. * - content: All private message items. Use {{ content }} to print them all,
  10. * or print a subset such as {{ content.field_example }}. Use
  11. * {{ content|without('field_example') }} to temporarily suppress the printing
  12. * of a given child element.
  13. * - url: Direct URL of the current private message.
  14. * - view_mode: View mode; for example, "teaser" or "full".
  15. * - logged_in: Flag for authenticated user status. Will be true when the
  16. * current user is a logged-in member.
  17. *
  18. * @see template_preprocess_private_message()
  19. *
  20. * @ingroup themeable
  21. */
  22. #}
  23. {{ content }}