-
Notifications
You must be signed in to change notification settings - Fork 46
/
apigee-entity--app.html.twig
50 lines (47 loc) · 2.2 KB
/
apigee-entity--app.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{#
/**
* @file
* 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".
*
* @see \Drupal\apigee_edge\Entity\EdgeEntityViewBuilder::getBuildDefaults()
* @see \Drupal\Core\Entity\EntityViewBuilder::getBuildDefaults()
* @see template_preprocess_apigee_entity()
* @see https://www.drupal.org/project/drupal/issues/2808481
*
* @ingroup themeable
*/
#}
{% if entity.getEntityTypeId in ['developer_app', 'team_app'] %}
{% set classes = [
'apigee-entity--app',
'apigee-entity--app--view-mode-' ~ view_mode|clean_class
] %}
{% endif %}
{% include 'apigee-entity.html.twig' %}