function ExperimentalModuleTestHooks::help

Implements hook_help().

Attributes

#[Hook('help')]

File

core/modules/system/tests/modules/experimental_module_test/src/Hook/ExperimentalModuleTestHooks.php, line 21

Class

ExperimentalModuleTestHooks
Hook implementations for experimental_module_test.

Namespace

Drupal\experimental_module_test\Hook

Code

public function help($route_name, RouteMatchInterface $route_match) : ?\Stringable {
  switch ($route_name) {
    case 'help.page.experimental_module_test':
      // Make the help text conform to core standards.
      return $this->t('The Experimental Test module is not done yet. It may eat your data, but you can read the <a href=":url">online documentation for the Experimental Test module</a>.', [
        ':url' => 'http://www.example.com',
      ]);
  }
  return NULL;
}

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