You are here

function micon_link_help in Micon 8

Same name and namespace in other branches
  1. 2.x micon_link/micon_link.module \micon_link_help()

Implements hook_help().

File

micon_link/micon_link.module, line 13
Contains micon_link.module.

Code

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

    // Main module help for the micon_link module.
    case 'help.page.micon_link':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Micon link module provides a widget that allows users to add icons to link fields.') . '</p>';
      return $output;
    default:
  }
}