You are here

function forms_steps_help in Forms Steps 8

Implements hook_help().

File

./forms_steps.module, line 21
Hook implementations for the forms_steps module.

Code

function forms_steps_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'forms_steps.collection':

      // TODO: documentation and helps todo.
      $output = t('Forms Steps listed below are enabled.... See <a href=":url">the online documentation</a> for an introduction on how to use Forms Steps.', [
        ':url' => Url::fromRoute('forms_steps.collection')
          ->toString(),
      ]);
      return $output;
  }
}