You are here

function fb_instant_articles_help in Facebook Instant Articles 8

Same name and namespace in other branches
  1. 8.2 fb_instant_articles.module \fb_instant_articles_help()
  2. 7.2 fb_instant_articles.module \fb_instant_articles_help()
  3. 7 fb_instant_articles.module \fb_instant_articles_help()
  4. 3.x fb_instant_articles.module \fb_instant_articles_help()

Implements hook_help().

File

./fb_instant_articles.module, line 14
Contains fb_instant_articles.module..

Code

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

    // Main module help for the fb_instant_articles module.
    case 'help.page.fb_instant_articles':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('FB Instant articles RSS feed generator for integration into the FB IA program') . '</p>';
      return $output;
    default:
  }
}