phaxio-1.1.0/phaxio.module
phaxio.module
<?php
/**
* @file
* Contains phaxio.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function phaxio_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the phaxio module.
case 'help.page.phaxio':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Integration with the Phaxio service with Drupal.') . '</p>';
return $output;
default:
}
}
