You are here

twilio.module in Twilio 8

Same filename and directory in other branches
  1. 7 twilio.module

Contains twilio.module.

File

twilio.module
View source
<?php

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

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

    // Main module help for the twilio module.
    case 'help.page.twilio':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Integration the Twilio cloud communication service with Drupal.') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
twilio_help Implements hook_help().