You are here

public function DsTestBlock::build in Display Suite 8.4

Same name and namespace in other branches
  1. 8.2 tests/modules/ds_test/src/Plugin/Block/DsTestBlock.php \Drupal\ds_test\Plugin\Block\DsTestBlock::build()
  2. 8.3 tests/modules/ds_test/src/Plugin/Block/DsTestBlock.php \Drupal\ds_test\Plugin\Block\DsTestBlock::build()

Builds and returns the renderable array for this block plugin.

If a block should not be rendered because it has no content, then this method must also ensure to return no content: it must then only return an empty array, or an empty array with #cache set (with cacheability metadata indicating the circumstances for it being empty).

Return value

array A renderable array representing the content of the block.

Overrides BlockPluginInterface::build

See also

\Drupal\block\BlockViewBuilder

File

tests/modules/ds_test/src/Plugin/Block/DsTestBlock.php, line 32

Class

DsTestBlock
Defines a Display suite test block.

Namespace

Drupal\ds_test\Plugin\Block

Code

public function build() {
  $build = [];
  $build[]['#markup'] = $this::BODY_TEXT;
  return $build;
}