class BHooks
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\BHooks
Expanded class hierarchy of BHooks
1 file declares its use of BHooks
- HookOrderTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Hook/ HookOrderTest.php
File
-
core/
modules/ system/ tests/ modules/ HookOrder/ bbb_hook_order_test/ src/ Hook/ BHooks.php, line 16
Namespace
Drupal\bbb_hook_order_test\HookView source
class BHooks {
public function testHook() : string {
return __METHOD__;
}
public function sparseTestHook() : string {
return __METHOD__;
}
public function testBothParametersHook() : string {
return __METHOD__;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
BHooks::sparseTestHook | public | function | |
BHooks::testBothParametersHook | public | function | |
BHooks::testHook | public | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.