public function MenuListBuilder::render in Drupal 10
Same name and namespace in other branches
- 8 core/modules/menu_ui/src/MenuListBuilder.php \Drupal\menu_ui\MenuListBuilder::render()
- 9 core/modules/menu_ui/src/MenuListBuilder.php \Drupal\menu_ui\MenuListBuilder::render()
Builds the entity listing as renderable array for table.html.twig.
@todo Add a link to add a new item to the #empty text.
Overrides EntityListBuilder::render
File
- core/
modules/ menu_ui/ src/ MenuListBuilder.php, line 77
Class
- MenuListBuilder
- Defines a class to build a listing of menu entities.
Namespace
Drupal\menu_uiCode
public function render() {
$build = parent::render();
$build['#attached']['library'][] = "menu_ui/drupal.menu_ui.adminforms";
return $build;
}