You are here

function devel_mail_logger_help in Devel Mail Logger 7

Same name and namespace in other branches
  1. 8 devel_mail_logger.module \devel_mail_logger_help()

Implements hook_help().

File

./devel_mail_logger.module, line 6

Code

function devel_mail_logger_help($path, $arg) {
  switch ($path) {

    // Main module help for the devel_mail_logger module.
    case 'admin/help#devel_mail_logger':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('A Custom Mail Interface that logs mail to DB') . '</p>';
      return $output;
    default:
  }
}