public ResponsiveImageStyleListBuilder::getDefaultOperations(EntityInterface $entity)
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 34
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; }
Please login to continue.