class AAlterHooks
This class contains hook implementations.
By default, these will be called in module order, which is predictable due to the alphabetical module names. Some of the implementations are reordered using order attributes.
Hierarchy
- class \Drupal\aaa_hook_order_test\Hook\AAlterHooks
Expanded class hierarchy of AAlterHooks
1 file declares its use of AAlterHooks
- HookAlterOrderTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Hook/ HookAlterOrderTest.php
File
-
core/
modules/ system/ tests/ modules/ HookOrder/ aaa_hook_order_test/ src/ Hook/ AAlterHooks.php, line 17
Namespace
Drupal\aaa_hook_order_test\HookView source
class AAlterHooks {
public function testAlterAfterC(array &$calls) : void {
$calls[] = __METHOD__;
}
public function testSubtypeAlter(array &$calls) : void {
$calls[] = __METHOD__;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
AAlterHooks::testAlterAfterC | public | function | |
AAlterHooks::testSubtypeAlter | public | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.