You are here

function gin_toolbar_help in Gin Toolbar 8

Implements hook_help().

File

./gin_toolbar.module, line 207
gin_toolbar.module

Code

function gin_toolbar_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the gin_toolbar module.
    case 'help.page.gin_toolbar':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module changes the layout of the administration menu, and is actively compatible with <a href="@href" target="_blank">Gin Admin</a>.', [
        '@href' => 'https://www.drupal.org/project/gin',
      ]) . '</p>';
      return $output;
  }
}