W3cubDocs

/Drupal 8

function template_preprocess_entity_add_list

template_preprocess_entity_add_list(&$variables)

Prepares variables for the list of available bundles.

Default template: entity-add-list.html.twig.

Parameters

array $variables: An associative array containing:

  • bundles: An array of bundles with the label, description, add_link keys.
  • add_bundle_message: The message shown when there are no bundles. Only available if the entity type uses bundle entities.

File

core/modules/system/system.module, line 337
Configuration system that lets administrators modify the workings of the site.

Code

function template_preprocess_entity_add_list(&$variables) {
  foreach ($variables['bundles'] as $bundle_name => $bundle_info) {
    $variables['bundles'][$bundle_name]['description'] = [
      '#markup' => $bundle_info['description'],
    ];
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!system!system.module/function/template_preprocess_entity_add_list/8.1.x