class TestHookReorderHookLast
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_collector_test\Hook\TestHookReorderHookLast
Expanded class hierarchy of TestHookReorderHookLast
1 file declares its use of TestHookReorderHookLast
- TestHookReorderHookFirst.php in core/
modules/ system/ tests/ modules/ HookCollector/ aaa_hook_collector_test/ src/ Hook/ TestHookReorderHookFirst.php
File
-
core/
modules/ system/ tests/ modules/ HookCollector/ bbb_hook_collector_test/ src/ Hook/ TestHookReorderHookLast.php, line 17
Namespace
Drupal\bbb_hook_collector_test\HookView source
class TestHookReorderHookLast {
/**
* This pair tests ReorderHook.
*/
public function customHookOverride() : string {
// This normally would run second.
// We override that order here with Order::First.
// We override, that order in aaa_hook_collector_test with
// ReorderHook.
return __METHOD__;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
TestHookReorderHookLast::customHookOverride | public | function | This pair tests ReorderHook. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.