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
- 10 core/themes/stable9/templates/content-edit/entity-add-list.html.twig
- 10 core/themes/claro/templates/entity-add-list.html.twig
- 10 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
Default theme implementation 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: Link 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/
modules/ system/ templates/ entity-add-list.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation 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: Link 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()
- *
- * @ingroup themeable
- */
- #}
- {% if bundles is not empty %}
- <dl>
- {% for bundle in bundles %}
- <dt>{{ bundle.add_link }}</dt>
- <dd>{{ bundle.description }}</dd>
- {% endfor %}
- </dl>
- {% elseif add_bundle_message is not empty %}
- <p>
- {{ add_bundle_message }}
- </p>
- {% endif %}
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.