BAlterHooks.php
Namespace
Drupal\bbb_hook_order_test\HookFile
-
core/
modules/ system/ tests/ modules/ HookOrder/ bbb_hook_order_test/ src/ Hook/ BAlterHooks.php
View source
<?php
declare (strict_types=1);
namespace Drupal\bbb_hook_order_test\Hook;
use Drupal\Core\Hook\Attribute\Hook;
/**
* 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.
*/
class BAlterHooks {
public function testSubtypeAlter(array &$calls) : void {
$calls[] = __METHOD__;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
BAlterHooks | This class contains hook implementations. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.