You are here

function phone_link_help in Phone link 8

Implements hook_help().

File

./phone_link.module, line 13
Contains phone_link.module..

Code

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

    // Main module help for the phone_link module.
    case 'help.page.phone_link':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provide formatter for text fields which replace phone number with link.') . '</p>';
      return $output;
    default:
  }
}