function block_drupal_alter_foo_alter
Same name in other branches
- 9 core/modules/system/tests/modules/common_test/common_test.module \block_drupal_alter_foo_alter()
- 8.9.x core/modules/system/tests/modules/common_test/common_test.module \block_drupal_alter_foo_alter()
- 10 core/modules/system/tests/modules/common_test/common_test.module \block_drupal_alter_foo_alter()
- 11.x core/modules/system/tests/modules/common_test/common_test.module \block_drupal_alter_foo_alter()
Implements hook_TYPE_alter() on behalf of block module.
This is for verifying that drupal_alter(array(TYPE1, TYPE2), ...) allows hook_module_implements_alter() to affect the order in which module implementations are executed.
File
-
modules/
simpletest/ tests/ common_test.module, line 201
Code
function block_drupal_alter_foo_alter(&$data, &$arg2 = NULL, &$arg3 = NULL) {
$data['foo'] .= ' block';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.