block--quisuisje.html.twig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a block.
  5. *
  6. * Available variables:
  7. * - plugin_id: The ID of the block implementation.
  8. * - label: The configured label of the block if visible.
  9. * - configuration: A list of the block's configuration values.
  10. * - label: The configured label for the block.
  11. * - label_display: The display settings for the label.
  12. * - provider: The module or other provider that provided this block plugin.
  13. * - Block plugin specific settings will also be stored here.
  14. * - content: The content of this block.
  15. * - attributes: array of HTML attributes populated by modules, intended to
  16. * be added to the main container tag of this template.
  17. * - id: A valid HTML ID and guaranteed unique.
  18. * - title_attributes: Same as attributes, except applied to the main title
  19. * tag that appears in the template.
  20. * - title_prefix: Additional output populated by modules, intended to be
  21. * displayed in front of the main title tag that appears in the template.
  22. * - title_suffix: Additional output populated by modules, intended to be
  23. * displayed after the main title tag that appears in the template.
  24. *
  25. * @see template_preprocess_block()
  26. */
  27. #}
  28. <div{{ attributes.addClass('panel panel-default') }}>
  29. <ul>
  30. <li>Id: {{ user.id }}</li>
  31. <li>Name: {{ user.getAccountName }}</li>
  32. <li>Display name: {{ user.getDisplayName }}</li>
  33. <li>Email: {{ user.getEmail }}</li>
  34. <li>Language: {{ user.getPreferredLangcode }}</li>
  35. <li>Last access: {{ user.getLastAccessedTime }}</li>
  36. <li>Roles:
  37. <ul>
  38. {% for role in user.getRoles(true) %}
  39. <li>{{ role }}</li>
  40. {% endfor %}
  41. </ul></li>
  42. <li>Time zone: {{ user.getTimezone }}</li>
  43. <li>Username: {{ user.getUsername }}</li>
  44. </ul>
  45. </div>