You are here

public function BlockContent::isReusable in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::isReusable()
  2. 9 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::isReusable()

Determines if the block is reusable or not.

Return value

bool Returns TRUE if reusable and FALSE otherwise.

Overrides BlockContentInterface::isReusable

1 call to BlockContent::isReusable()
BlockContent::postSave in core/modules/block_content/src/Entity/BlockContent.php
Acts on a saved entity before the insert or update hook is invoked.

File

core/modules/block_content/src/Entity/BlockContent.php, line 293

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function isReusable() {
  return (bool) $this
    ->get('reusable')->value;
}