twilio.module in Twilio 8
Same filename and directory in other branches
Contains twilio.module.
File
twilio.moduleView 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
Name | Description |
---|---|
twilio_help | Implements hook_help(). |