ImageStyleListBuilder::getDefaultOperations

public ImageStyleListBuilder::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/image/src/ImageStyleListBuilder.php, line 35

Class

ImageStyleListBuilder
Defines a class to build a listing of image style entities.

Namespace

Drupal\image

Code

public function getDefaultOperations(EntityInterface $entity) {
  $flush = array(
    'title' => t('Flush'),
    'weight' => 200,
    'url' => $entity->urlInfo('flush-form'),
  );

  return parent::getDefaultOperations($entity) + array(
    'flush' => $flush,
  );
}
doc_Drupal
2016-10-29 09:19:59
Comments
Leave a Comment

Please login to continue.