public 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
File
- core/modules/block_content/src/Entity/BlockContent.php, line 122
Class
- BlockContent
- Defines the custom block entity class.
Namespace
Drupal\block_content\Entity
Code
public function getInstances() { return \Drupal::entityTypeManager()->getStorage('block')->loadByProperties(array('plugin' => 'block_content:' . $this->uuid())); }
Please login to continue.