Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

field--node--uid.html.twig

Same filename in this branch
  1. 11.1.x core/profiles/demo_umami/themes/umami/templates/classy/field/field--node--uid.html.twig
  2. 11.1.x core/themes/stable9/templates/field/field--node--uid.html.twig
  3. 11.1.x core/themes/claro/templates/classy/field/field--node--uid.html.twig
  4. 11.1.x core/modules/node/templates/field--node--uid.html.twig

Theme override for the node user field.

This is an override of field.html.twig for the node user field. See that template for documentation about its details and overrides.

Available variables:

  • attributes: HTML attributes for the containing span element.
  • items: List of all the field items. Each item contains:
    • attributes: List of HTML attributes for each item.
    • content: The field item content.
  • entity_type: The entity type to which the field belongs.
  • field_name: The name of the field.
  • field_type: The type of the field.
  • label_display: The display settings for the label.
  • is_inline: If false, display an ordinary field. If true, display an inline format, suitable for inside elements such as <span>, <h2> and so on.

@todo Delete as part of https://www.drupal.org/node/3015623

See also

field.html.twig

node_preprocess_field__node()

File

core/themes/starterkit_theme/templates/field/field--node--uid.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for the node user field.
  5. *
  6. * This is an override of field.html.twig for the node user field. See that
  7. * template for documentation about its details and overrides.
  8. *
  9. * Available variables:
  10. * - attributes: HTML attributes for the containing span element.
  11. * - items: List of all the field items. Each item contains:
  12. * - attributes: List of HTML attributes for each item.
  13. * - content: The field item content.
  14. * - entity_type: The entity type to which the field belongs.
  15. * - field_name: The name of the field.
  16. * - field_type: The type of the field.
  17. * - label_display: The display settings for the label.
  18. * - is_inline: If false, display an ordinary field.
  19. * If true, display an inline format, suitable for inside elements such as
  20. * <span>, <h2> and so on.
  21. *
  22. * @see field.html.twig
  23. * @see node_preprocess_field__node()
  24. *
  25. * @todo Delete as part of https://www.drupal.org/node/3015623
  26. */
  27. #}
  28. {% if not is_inline %}
  29. {% include "field.html.twig" %}
  30. {% else %}
  31. {%
  32. set classes = [
  33. 'field',
  34. 'field--name-' ~ field_name|clean_class,
  35. 'field--type-' ~ field_type|clean_class,
  36. 'field--label-' ~ label_display,
  37. ]
  38. %}
  39. <span{{ attributes.addClass(classes) }}>
  40. {%- for item in items -%}
  41. {{ item.content }}
  42. {%- endfor -%}
  43. </span>
  44. {% endif %}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal