You are here

protected function Broken::brokenMessage in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Block/Plugin/Block/Broken.php \Drupal\Core\Block\Plugin\Block\Broken::brokenMessage()
  2. 9 core/lib/Drupal/Core/Block/Plugin/Block/Broken.php \Drupal\Core\Block\Plugin\Block\Broken::brokenMessage()

Generate message with debugging information as to why the block is broken.

Return value

array Render array containing debug information.

File

core/lib/Drupal/Core/Block/Plugin/Block/Broken.php, line 88

Class

Broken
Defines a fallback plugin for missing block plugins.

Namespace

Drupal\Core\Block\Plugin\Block

Code

protected function brokenMessage() {
  $build['message'] = [
    '#markup' => $this
      ->t('This block is broken or missing. You may be missing content or you might need to enable the original module.'),
  ];
  return $build;
}