public function BlockContent::getInstances in Drupal 10
Same name and namespace in other branches
- 8 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::getInstances()
- 9 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::getInstances()
Gets the configured instances of this custom block.
Return value
array Array of Drupal\block\Core\Plugin\Entity\Block entities.
Overrides BlockContentInterface::getInstances
1 call to BlockContent::getInstances()
- BlockContent::delete in core/
modules/ block_content/ src/ Entity/ BlockContent.php - Deletes an entity permanently.
File
- core/
modules/ block_content/ src/ Entity/ BlockContent.php, line 147
Class
- BlockContent
- Defines the custom block entity class.
Namespace
Drupal\block_content\EntityCode
public function getInstances() {
return \Drupal::entityTypeManager()
->getStorage('block')
->loadByProperties([
'plugin' => 'block_content:' . $this
->uuid(),
]);
}