entity-add-list.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/themes/stable9/templates/content-edit/entity-add-list.html.twig
- 9 core/themes/seven/templates/entity-add-list.html.twig
- 9 core/themes/claro/templates/entity-add-list.html.twig
- 9 core/themes/stable/templates/content-edit/entity-add-list.html.twig
- 9 core/modules/system/templates/entity-add-list.html.twig
- 8.9.x core/themes/seven/templates/entity-add-list.html.twig
- 8.9.x core/themes/claro/templates/entity-add-list.html.twig
- 8.9.x core/themes/stable/templates/content-edit/entity-add-list.html.twig
- 8.9.x core/modules/system/templates/entity-add-list.html.twig
- 11.x core/themes/stable9/templates/content-edit/entity-add-list.html.twig
- 11.x core/themes/claro/templates/entity-add-list.html.twig
- 11.x core/modules/system/templates/entity-add-list.html.twig
Theme override to present a list of available bundles.
Available variables:
- bundles: A list of bundles, each with the following properties:
- label: Bundle label.
- description: Bundle description.
- add_link: \Drupal\Core\Link link instance to create an entity of this bundle.
- add_bundle_message: The message shown when there are no bundles. Only available if the entity type uses bundle entities.
See also
template_preprocess_entity_add_list()
1 theme call to entity-add-list.html.twig
- EntityController::addPage in core/
lib/ Drupal/ Core/ Entity/ Controller/ EntityController.php - Displays add links for the available bundles.
File
-
core/
themes/ claro/ templates/ entity-add-list.html.twig
View source
- {#
- /**
- * @file
- * Theme override to present a list of available bundles.
- *
- * Available variables:
- * - bundles: A list of bundles, each with the following properties:
- * - label: Bundle label.
- * - description: Bundle description.
- * - add_link: \Drupal\Core\Link link instance to create an entity of this
- * bundle.
- * - add_bundle_message: The message shown when there are no bundles. Only
- * available if the entity type uses bundle entities.
- *
- * @see template_preprocess_entity_add_list()
- */
- #}
- {%
- set item_classes = [
- 'admin-item',
- ]
- %}
- {% if bundles is not empty %}
- <dl{{ attributes.addClass('admin-list') }}>
- {% for bundle in bundles %}
- {#
- Add 'admin-item__link' class to the link attributes.
- This is needed for keeping the original attributes of the link's url.
- #}
- {% set bundle_attributes = bundle.add_link.url.getOption('attributes') ?: {} %}
- {% set link_attributes = create_attribute(bundle_attributes).addClass('admin-item__link') %}
- <div{{ create_attribute({class: item_classes}) }}>
- <dt class="admin-item__title">
- <a href="{{ bundle.add_link.url }}"{{ link_attributes|without('href') }}>
- {{ bundle.add_link.text }}
- </a>
- </dt>
- {# Don't print empty description wrapper if there is no description #}
- {% if bundle.description %}
- <dd class="admin-item__description">{{ bundle.description }}</dd>
- {% endif %}
- </div>
- {% endfor %}
- </dl>
- {% elseif add_bundle_message is not empty %}
- <p>
- {{ add_bundle_message }}
- </p>
- {% endif %}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.