BHooks.php

Namespace

Drupal\bbb_hook_order_test\Hook

File

core/modules/system/tests/modules/HookOrder/bbb_hook_order_test/src/Hook/BHooks.php

View source
<?php

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

use Drupal\Core\Hook\Attribute\Hook;

/**
 * Provides hook implementations for testing the execution order of hooks.
 *
 * By default, these will be called in module order, which is predictable due to
 * the alphabetical module names.
 *
 * @see \Drupal\KernelTests\Core\Hook\HookOrderTest::testHookOrder()
 * @see \Drupal\KernelTests\Core\Hook\HookOrderTest::testSparseHookOrder()
 * @see \Drupal\KernelTests\Core\Hook\HookOrderTest::testBothParametersHookOrder()
 */
class BHooks {
  
  /**
   * Implements hook_test_hook().
   *
   * This implementation has no ordering modifications.
   */
  public function testHook() : string {
    return __METHOD__;
  }
  
  /**
   * Implements hook_test_hook().
   *
   * This implementation has no ordering modifications.
   */
  public function sparseTestHook() : string {
    return __METHOD__;
  }
  
  /**
   * Implements hook_test_hook().
   *
   * The order of this implementation is modified in
   * \Drupal\aaa_hook_order_test\Hook\AHooks::testBothParametersHook() to be
   * before \Drupal\aaa_hook_order_test\Hook\AHooks::testBothParametersHook().
   */
  public function testBothParametersHook() : string {
    return __METHOD__;
  }

}

Classes

Title Deprecated Summary
BHooks Provides hook implementations for testing the execution order of hooks.

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