class BAlterHooks
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\bbb_hook_order_test\Hook\BAlterHooks
Expanded class hierarchy of BAlterHooks
See also
\Drupal\KernelTests\Core\Hook\HookAlterOrderTest
1 file declares its use of BAlterHooks
- HookAlterOrderTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Hook/ HookAlterOrderTest.php
File
-
core/
modules/ system/ tests/ modules/ HookOrder/ bbb_hook_order_test/ src/ Hook/ BAlterHooks.php, line 18
Namespace
Drupal\bbb_hook_order_test\HookView source
class BAlterHooks {
/**
* Implements hook_test_subtype_alter().
*
* This implementation has no ordering modifications.
*/
public function testSubtypeAlter(array &$calls) : void {
$calls[] = __METHOD__;
}
}
Members
| Title Sort descending | Modifiers | Object type | Summary |
|---|---|---|---|
| BAlterHooks::testSubtypeAlter | public | function | Implements hook_test_subtype_alter(). |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.