You are here

apigee-entity--app.html.twig in Apigee Edge 8

Generic theme implementation to display a developer- or team app entity.

Available variables:

  • entity: The entity with limited access to object properties and methods. Only method names starting with "get", "has", or "is" and a few common methods such as "id", "label", and "bundle" are available. For example:

    • entity.getEntityTypeId() will return the entity type ID.
    • entity.hasField('field_example') returns TRUE if the entity includes field_example. (This does not indicate the presence of a value in this field.)

    Calling other methods, such as entity.delete(), will result in an exception. See \Drupal\apigee_edge\Entity\EdgeEntityInterface for a full list of methods.

  • label: The title of the entity.
  • content: All rendered field 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 entity.
  • attributes: HTML attributes for the containing element.
  • title_attributes: Same as attributes, except applied to the main title tag that appears in the template.
  • content_attributes: Same as attributes, except applied to the main content tag that appears in the template.
  • title_prefix: Additional output populated by modules, intended to be displayed in front of the main title tag that appears in the template.
  • title_suffix: Additional output populated by modules, intended to be displayed after the main title tag that appears in the template.
  • view_mode: View mode; for example, "teaser" or "full".

File

templates/apigee-entity--app.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Generic theme implementation to display a developer- or team app entity.
  5. * Available variables:
  6. * - entity: The entity with limited access to object properties and methods.
  7. * Only method names starting with "get", "has", or "is" and a few common
  8. * methods such as "id", "label", and "bundle" are available. For example:
  9. * - entity.getEntityTypeId() will return the entity type ID.
  10. * - entity.hasField('field_example') returns TRUE if the entity includes
  11. * field_example. (This does not indicate the presence of a value in this
  12. * field.)
  13. * Calling other methods, such as entity.delete(), will result in an exception.
  14. * See \Drupal\apigee_edge\Entity\EdgeEntityInterface for a full list of
  15. * methods.
  16. * - label: The title of the entity.
  17. * - content: All rendered field items. Use {{ content }} to print them all,
  18. * or print a subset such as {{ content.field_example }}. Use
  19. * {{ content|without('field_example') }} to temporarily suppress the printing
  20. * of a given child element.
  21. * - url: Direct URL of the current entity.
  22. * - attributes: HTML attributes for the containing element.
  23. * - title_attributes: Same as attributes, except applied to the main title
  24. * tag that appears in the template.
  25. * - content_attributes: Same as attributes, except applied to the main
  26. * content tag that appears in the template.
  27. * - title_prefix: Additional output populated by modules, intended to be
  28. * displayed in front of the main title tag that appears in the template.
  29. * - title_suffix: Additional output populated by modules, intended to be
  30. * displayed after the main title tag that appears in the template.
  31. * - view_mode: View mode; for example, "teaser" or "full".
  32. *
  33. * @see \Drupal\apigee_edge\Entity\EdgeEntityViewBuilder::getBuildDefaults()
  34. * @see \Drupal\Core\Entity\EntityViewBuilder::getBuildDefaults()
  35. * @see template_preprocess_apigee_entity()
  36. * @see https://www.drupal.org/project/drupal/issues/2808481
  37. *
  38. * @ingroup themeable
  39. */
  40. #}
  41. {% if entity.getEntityTypeId in ['developer_app', 'team_app'] %}
  42. {% set classes = [
  43. 'apigee-entity--app',
  44. 'apigee-entity--app--view-mode-' ~ view_mode|clean_class
  45. ] %}
  46. {% endif %}
  47. {% include 'apigee-entity.html.twig' %}