function twilio_help in Twilio 8
Implements hook_help().
File
- ./
twilio.module, line 13 - Contains twilio.module.
Code
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:
}
}