You are here

public function BlockContent::getInstances in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 120
Contains \Drupal\block_content\Entity\BlockContent.

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function getInstances() {
  return entity_load_multiple_by_properties('block', array(
    'plugin' => 'block_content:' . $this
      ->uuid(),
  ));
}