You are here

function sendgrid_integration_help in SendGrid Integration 7

Same name and namespace in other branches
  1. 8.2 sendgrid_integration.module \sendgrid_integration_help()
  2. 8 sendgrid_integration.module \sendgrid_integration_help()

Implements hook_help().

File

./sendgrid_integration.module, line 74
Main module file for SendGrid Integration.

Code

function sendgrid_integration_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/help#sendgrid_integration':
      $output .= '<h3>' . t('SendGrid Integration') . '</h3>';
      $output .= '<p>' . t('Module provides own implementation of MailSystemIntegration, replacing the default implementation and uses SendGrid Web API instead.') . '</p>';
  }
  return $output;
}