You are here

public function ResponsiveImageStyleListBuilder::getDefaultOperations in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/responsive_image/src/ResponsiveImageStyleListBuilder.php \Drupal\responsive_image\ResponsiveImageStyleListBuilder::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 ConfigEntityListBuilder::getDefaultOperations

File

core/modules/responsive_image/src/ResponsiveImageStyleListBuilder.php, line 39
Contains \Drupal\responsive_image\ResponsiveImageStyleListBuilder.

Class

ResponsiveImageStyleListBuilder
Provides a listing of responsive image styles.

Namespace

Drupal\responsive_image

Code

public function getDefaultOperations(EntityInterface $entity) {
  $operations = parent::getDefaultOperations($entity);
  $operations['duplicate'] = array(
    'title' => t('Duplicate'),
    'weight' => 15,
    'url' => $entity
      ->urlInfo('duplicate-form'),
  );
  return $operations;
}