You are here

public function ExtraFieldBlock::getPreviewFallbackString in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Plugin/Block/ExtraFieldBlock.php \Drupal\layout_builder\Plugin\Block\ExtraFieldBlock::getPreviewFallbackString()

Overrides BlockPluginTrait::getPreviewFallbackString

1 call to ExtraFieldBlock::getPreviewFallbackString()
ExtraFieldBlock::build in core/modules/layout_builder/src/Plugin/Block/ExtraFieldBlock.php
Builds and returns the renderable array for this block plugin.

File

core/modules/layout_builder/src/Plugin/Block/ExtraFieldBlock.php, line 143

Class

ExtraFieldBlock
Provides a block that renders an extra field from an entity.

Namespace

Drupal\layout_builder\Plugin\Block

Code

public function getPreviewFallbackString() {
  $entity = $this
    ->getEntity();
  $extra_fields = $this->entityFieldManager
    ->getExtraFields($entity
    ->getEntityTypeId(), $entity
    ->bundle());
  return new TranslatableMarkup('"@field" field', [
    '@field' => $extra_fields['display'][$this->fieldName]['label'],
  ]);
}