class DAlterHooks
This class contains hook implementations.
By default, these will be called in module order, which is predictable due to the alphabetical module names.
Hierarchy
- class \Drupal\ddd_hook_order_test\Hook\DAlterHooks
Expanded class hierarchy of DAlterHooks
See also
\Drupal\KernelTests\Core\Hook\HookAlterOrderTest
1 file declares its use of DAlterHooks
- HookAlterOrderTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Hook/ HookAlterOrderTest.php
File
-
core/
modules/ system/ tests/ modules/ HookOrder/ ddd_hook_order_test/ src/ Hook/ DAlterHooks.php, line 17
Namespace
Drupal\ddd_hook_order_test\HookView source
class DAlterHooks {
/**
* Implements hook_test_alter().
*
* This implementation has no ordering modifications.
*/
public function testAlter(array &$calls) : void {
$calls[] = __METHOD__;
}
/**
* 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 |
|---|---|---|---|
| DAlterHooks::testAlter | public | function | Implements hook_test_alter(). |
| DAlterHooks::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.