You are here

function tour_ui_help in Tour UI 8

Implements hook_help().

File

./tour_ui.module, line 13
Core functionality for Tour UI module.

Code

function tour_ui_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.tour_ui':
      $output = '<p>' . t('Provides a user interface for Tour module in Drupal 8 core.') . '</p>';
      return $output;
  }
}