X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Flayout_builder%2Fsrc%2FEventSubscriber%2FBlockComponentRenderArray.php;h=276e680b43382ab3b99231f152d0c2d451574f2b;hb=1c1cb0980bfa6caf0c24cce671b6bb541dc87583;hp=c2e3bfb188899606daad512542260c377b03d872;hpb=0bf8d09d2542548982e81a441b1f16e75873a04f;p=yaffs-website diff --git a/web/core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php b/web/core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php index c2e3bfb18..276e680b4 100644 --- a/web/core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php +++ b/web/core/modules/layout_builder/src/EventSubscriber/BlockComponentRenderArray.php @@ -5,6 +5,8 @@ namespace Drupal\layout_builder\EventSubscriber; use Drupal\block_content\Access\RefinableDependentAccessInterface; use Drupal\Core\Access\AccessResult; use Drupal\Core\Block\BlockPluginInterface; +use Drupal\Core\Render\Element; +use Drupal\Core\Render\PreviewFallbackInterface; use Drupal\Core\Session\AccountInterface; use Drupal\layout_builder\Access\LayoutPreviewAccessAllowed; use Drupal\layout_builder\Event\SectionComponentBuildRenderArrayEvent; @@ -98,6 +100,9 @@ class BlockComponentRenderArray implements EventSubscriberInterface { '#weight' => $event->getComponent()->getWeight(), 'content' => $block->build(), ]; + if ($event->inPreview() && Element::isEmpty($build['content']) && $block instanceof PreviewFallbackInterface) { + $build['content']['#markup'] = $block->getPreviewFallbackString(); + } $event->setBuild($build); } }