public function SystemHelpBlock::build

Builds and returns the renderable array for this block plugin.

Return value

array A renderable array representing the content of the block.

Overrides BlockPluginInterface::build

See also

\Drupal\block\BlockRenderController

File

drupal/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php, line 43
Contains \Drupal\system\Plugin\Block\SystemHelpBlock.

Class

SystemHelpBlock
Provides a 'System Help' block.

Namespace

Drupal\system\Plugin\Block

Code

public function build() {
  return array(
    '#children' => $this->help,
  );
}