CHooks.php

Namespace

Drupal\ccc_hook_order_test\Hook

File

core/modules/system/tests/modules/HookOrder/ccc_hook_order_test/src/Hook/CHooks.php

View source
<?php

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

use Drupal\Core\Hook\Attribute\Hook;
use Drupal\Core\Hook\Order\Order;

/**
 * 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 CHooks {
    public function testHook() : string {
        return __METHOD__;
    }
    public function testHookFirst() : string {
        return __METHOD__;
    }
    
    /**
     * This implementation is reordered from elsewhere.
     *
     * @see \Drupal\ddd_hook_order_test\Hook\DHooks
     */
    public function testHookReorderFirst() : string {
        return __METHOD__;
    }
    
    /**
     * This implementation is removed from elsewhere.
     *
     * @see \Drupal\ddd_hook_order_test\Hook\DHooks
     */
    public function testHookRemoved() : string {
        return __METHOD__;
    }
    public function testBothParametersHook() : string {
        return __METHOD__;
    }

}

Classes

Title Deprecated Summary
CHooks This class contains hook implementations.

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