You are here

function micon_help in Micon 2.x

Same name and namespace in other branches
  1. 8 micon.module \micon_help()

Implements hook_help().

File

./micon.module, line 16
Contains micon.module.

Code

function micon_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.micon':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Micon is an IcoMoon icon manager.') . '</p>';
      return $output;
    default:
  }
}