function BlockContentTypeListBuilder::getDefaultOperations
Same name and namespace in other branches
- 10 core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::getDefaultOperations()
- 9 core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::getDefaultOperations()
- 8.9.x core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::getDefaultOperations()
- main core/modules/block_content/src/BlockContentTypeListBuilder.php \Drupal\block_content\BlockContentTypeListBuilder::getDefaultOperations()
Overrides ConfigEntityListBuilder::getDefaultOperations
File
-
core/
modules/ block_content/ src/ BlockContentTypeListBuilder.php, line 19
Class
- BlockContentTypeListBuilder
- Defines a class to build a listing of block type entities.
Namespace
Drupal\block_contentCode
protected function getDefaultOperations(EntityInterface $entity) {
$args = func_get_args();
$cacheability = $args[1] ?? new CacheableMetadata();
$operations = parent::getDefaultOperations($entity, $cacheability);
// Place the edit operation after the operations added by field_ui.module
// which have the weights 15, 20, 25.
if (isset($operations['edit'])) {
$operations['edit']['weight'] = 30;
}
return $operations;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.