1 common_test.module | block_backdrop_alter_foo_alter(&$data, &$arg2 = NULL, &$arg3 = NULL) |
Implements hook_TYPE_alter() on behalf of block module.
This is for verifying that backdrop_alter(array(TYPE1, TYPE2), ...) allows hook_module_implements_alter() to affect the order in which module implementations are executed.
File
- core/
modules/ simpletest/ tests/ common_test.module, line 231 - Helper module for the Common tests.
Code
function block_backdrop_alter_foo_alter(&$data, &$arg2 = NULL, &$arg3 = NULL) {
$data['foo'] .= ' block';
}