You are here

function fb_instant_articles_views_help in Facebook Instant Articles 3.x

Same name and namespace in other branches
  1. 8.2 modules/fb_instant_articles_views/fb_instant_articles_views.module \fb_instant_articles_views_help()
  2. 7.2 modules/fb_instant_articles_views/fb_instant_articles_views.module \fb_instant_articles_views_help()
  3. 7 modules/fb_instant_articles_views/fb_instant_articles_views.module \fb_instant_articles_views_help()

Implements hook_help().

File

modules/fb_instant_articles_views/fb_instant_articles_views.module, line 13
Contains fb_instant_articles_views.module.

Code

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

    // Main module help for the fb_instant_articles_views module.
    case 'help.page.fb_instant_articles_views':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Facebook Instant Articles RSS feed generator.') . '</p>';
      return $output;
  }
}