You are here

function micon_local_task_help in Micon 2.x

Same name and namespace in other branches
  1. 8 micon_local_task/micon_local_task.module \micon_local_task_help()

Implements hook_help().

File

micon_local_task/micon_local_task.module, line 13
Contains micon_local_task.module.

Code

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

    // Main module help for the micon_local_task module.
    case 'help.page.micon_local_task':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Micon local task module provides automatic icon placement within the local task tab items.') . '</p>';
      return $output;
    default:
  }
}