class HelpTopicsTestHooks

Hook implementations for help_topics_test.

Hierarchy

Expanded class hierarchy of HelpTopicsTestHooks

File

core/modules/help/tests/modules/help_topics_test/src/Hook/HelpTopicsTestHooks.php, line 13

Namespace

Drupal\help_topics_test\Hook
View source
class HelpTopicsTestHooks {
    
    /**
     * Implements hook_help().
     */
    public function help($route_name, RouteMatchInterface $route_match) {
        switch ($route_name) {
            case 'help.page.help_topics_test':
                return 'Some kind of non-empty output for testing';
        }
    }
    
    /**
     * Implements hook_help_topics_info_alter().
     */
    public function helpTopicsInfoAlter(array &$info) {
        // To prevent false positive search results limit list to testing topis only.
        $filter = fn(string $key) => str_starts_with($key, 'help_topics_test') || in_array($key, [
            'help_topics_test_direct_yml',
            'help_topics_derivatives:test_derived_topic',
        ], TRUE);
        $info = array_filter($info, $filter, ARRAY_FILTER_USE_KEY);
        $info['help_topics_test.test']['top_level'] = \Drupal::state()->get('help_topics_test.test:top_level', TRUE);
    }

}

Members

Title Sort descending Modifiers Object type Summary
HelpTopicsTestHooks::help public function Implements hook_help().
HelpTopicsTestHooks::helpTopicsInfoAlter public function Implements hook_help_topics_info_alter().

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