function NodeTypeListBuilder::getDefaultOperations

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

Overrides ConfigEntityListBuilder::getDefaultOperations

File

core/modules/node/src/NodeTypeListBuilder.php, line 43

Class

NodeTypeListBuilder
Defines a class to build a listing of node type entities.

Namespace

Drupal\node

Code

public function getDefaultOperations(EntityInterface $entity) {
    $operations = parent::getDefaultOperations($entity);
    // Place the edit operation after the operations added by field_ui.module
    // which have the weights 15, 20, 25.
    if (isset($operations['edit'])) {
        $operations['edit']['weight'] = 30;
    }
    return $operations;
}

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