function admin_content_notification_help in Admin Content Notification 7.2
Same name and namespace in other branches
- 8.3 admin_content_notification.module \admin_content_notification_help()
- 8 admin_content_notification.module \admin_content_notification_help()
- 8.2 admin_content_notification.module \admin_content_notification_help()
- 7 admin_content_notification.module \admin_content_notification_help()
Implements hook_help().
File
- ./
admin_content_notification.module, line 26 - Module admin_content_notification file.
Code
function admin_content_notification_help($path, $arg) {
switch ($path) {
case 'admin/help#admin_content_notification':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('It is very simple module which can be used to send email to admin or on any specific email id when a contnet has been posted on Drupal site.') . '</p>';
return $output;
}
}