You are here

fastly.module in Fastly 8.3

Same filename and directory in other branches
  1. 7.2 fastly.module
  2. 7 fastly.module

Contains fastly.module.

File

fastly.module
View source
<?php

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

/**
 * Implements hook_help().
 */
function fastly_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the Fastly module.
    case 'help.page.fastly':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Fastly CDN integration.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
fastly_help Implements hook_help().