function MenuListBuilder::getDefaultOperations

Same name in other branches
  1. 9 core/modules/menu_ui/src/MenuListBuilder.php \Drupal\menu_ui\MenuListBuilder::getDefaultOperations()
  2. 8.9.x core/modules/menu_ui/src/MenuListBuilder.php \Drupal\menu_ui\MenuListBuilder::getDefaultOperations()
  3. 10 core/modules/menu_ui/src/MenuListBuilder.php \Drupal\menu_ui\MenuListBuilder::getDefaultOperations()

Overrides ConfigEntityListBuilder::getDefaultOperations

File

core/modules/menu_ui/src/MenuListBuilder.php, line 49

Class

MenuListBuilder
Defines a class to build a listing of menu entities.

Namespace

Drupal\menu_ui

Code

public function getDefaultOperations(EntityInterface $entity) {
    $operations = parent::getDefaultOperations($entity);
    if (isset($operations['edit'])) {
        $operations['edit']['title'] = $this->t('Edit menu');
        $operations['add'] = [
            'title' => $this->t('Add link'),
            'weight' => 20,
            'url' => $entity->toUrl('add-link-form'),
            'query' => [
                'destination' => $entity->toUrl('edit-form')
                    ->toString(),
            ],
        ];
    }
    if (isset($operations['delete'])) {
        $operations['delete']['title'] = $this->t('Delete menu');
    }
    return $operations;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.