public function ResponsiveImageStyleListBuilder::getDefaultOperations in Drupal 8
Same name and namespace in other branches
- 9 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 32
Class
- ResponsiveImageStyleListBuilder
- Provides a listing of responsive image styles.
Namespace
Drupal\responsive_imageCode
public function getDefaultOperations(EntityInterface $entity) {
$operations = parent::getDefaultOperations($entity);
$operations['duplicate'] = [
'title' => t('Duplicate'),
'weight' => 15,
'url' => $entity
->toUrl('duplicate-form'),
];
return $operations;
}