You are here

function simple_fb_connect_help in Simple FB Connect 8.2

Same name and namespace in other branches
  1. 8.3 simple_fb_connect.module \simple_fb_connect_help()

Implements hook_help().

File

./simple_fb_connect.module, line 13
Hook implementations for Simple FB Connect module.

Code

function simple_fb_connect_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'simple_fb_connect.settings_form':
      $output = '<h3>' . t('Configuration instructions') . '</h3>';
      $output .= '<p>';
      $output .= t('Configuration instructions and other useful documentation can be found from <a href="@handbook-url">Simple FB Connect Handbook</a>.', array(
        '@handbook-url' => 'https://www.drupal.org/node/2474731',
      ));
      $output .= '</p>';
      return $output;
      break;
  }
}