function notify_subscribeonly_help in Notify 7
Implements hook_help().
File
- submodules/
notify_subscribeonly/ notify_subscribeonly.module, line 15 - Notify Views Integration provides integartion with the Views module.
Code
function notify_subscribeonly_help($path, $arg) {
switch ($path) {
case 'admin/help#notify_subscribeonly':
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This submodule of <strong>Notify</strong> allows visitors to register for the newsletter without becoming authenticated users.') . '</p>';
return $output;
}
}