page_manager_test.module in Page Manager 8
Same filename and directory in other branches
Helper module for page_manager test.
File
tests/modules/page_manager_test/page_manager_test.moduleView source
<?php
/**
* @file
* Helper module for page_manager test.
*/
use Drupal\Core\Block\BlockPluginInterface;
/**
* Implements hook_block_view_alter().
*/
function page_manager_test_block_view_alter(array &$build, BlockPluginInterface $block) {
$label = $build['#configuration']['label'];
if ($label == 'Label to be altered') {
// Change the block label for PageManagerAdminTest::doTestAlterBlock()
$build['#configuration']['label'] = 'Altered label';
}
}
Functions
Name | Description |
---|---|
page_manager_test_block_view_alter | Implements hook_block_view_alter(). |