You are here

protected function NodeListBuilder::getDefaultOperations in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/node/src/NodeListBuilder.php \Drupal\node\NodeListBuilder::getDefaultOperations()

Gets this list's default operations.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity the operations are for.

Return value

array The array structure is identical to the return value of self::getOperations().

Overrides EntityListBuilder::getDefaultOperations

File

core/modules/node/src/NodeListBuilder.php, line 139
Contains \Drupal\node\NodeListBuilder.

Class

NodeListBuilder
Defines a class to build a listing of node entities.

Namespace

Drupal\node

Code

protected function getDefaultOperations(EntityInterface $entity) {
  $operations = parent::getDefaultOperations($entity);
  $destination = $this->redirectDestination
    ->getAsArray();
  foreach ($operations as $key => $operation) {
    $operations[$key]['query'] = $destination;
  }
  return $operations;
}