TestHookReorderHookFirst.php

Namespace

Drupal\aaa_hook_collector_test\Hook

File

core/modules/system/tests/modules/HookCollector/aaa_hook_collector_test/src/Hook/TestHookReorderHookFirst.php

View source
<?php

declare (strict_types=1);
namespace Drupal\aaa_hook_collector_test\Hook;

use Drupal\Core\Hook\Attribute\Hook;
use Drupal\Core\Hook\Order\OrderAfter;
use Drupal\Core\Hook\Attribute\ReorderHook;
use Drupal\bbb_hook_collector_test\Hook\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.
 */
class TestHookReorderHookFirst {
    
    /**
     * This pair tests ReorderHook.
     */
    public function customHookOverride() : string {
        // This normally would run first.
        // We override that order in hook_order_second_alphabetically.
        // We override, that order here with ReorderHook.
        return __METHOD__;
    }

}

Classes

Title Deprecated Summary
TestHookReorderHookFirst This class contains hook implementations.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.