sparkpost.module in Sparkpost email 8
Same filename and directory in other branches
Contains sparkpost.module.
File
sparkpost.moduleView source
<?php
/**
* @file
* Contains sparkpost.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function sparkpost_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the Sparkpost module.
case 'help.page.sparkpost':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Integrates Drupal site with Sparkpost - transactional mail service.') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
sparkpost_help | Implements hook_help(). |