You are here

fb_instant_articles_views.module in Facebook Instant Articles 3.x

File

modules/fb_instant_articles_views/fb_instant_articles_views.module
View source
<?php

/**
 * @file
 * Contains fb_instant_articles_views.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
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;
  }
}

Functions

Namesort descending Description
fb_instant_articles_views_help Implements hook_help().