You are here

protected function FixedBlockContent::getBlockContentStorage in Fixed Block Content 8

Gets the block content entity type storage.

Return value

\Drupal\Core\Entity\EntityStorageInterface The block content entity storage.

File

src/Entity/FixedBlockContent.php, line 317

Class

FixedBlockContent
Configuration entity for the fixed block content.

Namespace

Drupal\fixed_block_content\Entity

Code

protected function getBlockContentStorage() {
  return $this
    ->entityTypeManager()
    ->getStorage('block_content');
}