function BlockRenderAlterContent::preRender
Same name in other branches
- 9 core/modules/block/tests/modules/block_test/src/BlockRenderAlterContent.php \Drupal\block_test\BlockRenderAlterContent::preRender()
- 10 core/modules/block/tests/modules/block_test/src/BlockRenderAlterContent.php \Drupal\block_test\BlockRenderAlterContent::preRender()
- 11.x core/modules/block/tests/modules/block_test/src/BlockRenderAlterContent.php \Drupal\block_test\BlockRenderAlterContent::preRender()
#pre_render callback for a block to alter its content.
File
-
core/
modules/ block/ tests/ modules/ block_test/ src/ BlockRenderAlterContent.php, line 15
Class
- BlockRenderAlterContent
- Implements a trusted preRender callback.
Namespace
Drupal\block_testCode
public static function preRender(array $build) {
$build['#prefix'] = 'Hiya!<br>';
return $build;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.