Browse Source

Issue #3212340 by xandeadx: drupal_block() show fatal error if block plugin return NULL

merge-requests/14/head
xandeadx 3 years ago committed by Chi
parent
commit
c336ca8a19
  1. 5
      src/View/BlockViewBuilder.php

5
src/View/BlockViewBuilder.php

@ -135,8 +135,9 @@ class BlockViewBuilder {
if ($block_plugin instanceof TitleBlockPluginInterface) {
$build['content']['#cache']['contexts'][] = 'url';
}
if ($wrapper && !Element::isEmpty($build['content'])) {
// Some blocks returns NULL instead of array when empty.
// @see https://www.drupal.org/project/drupal/issues/3212354
if ($wrapper && is_array($build['content']) && !Element::isEmpty($build['content'])) {
$build += [
'#theme' => 'block',
'#id' => $configuration['id'] ?? NULL,

Loading…
Cancel
Save