function admin_content_notification_help in Admin Content Notification 8
Same name and namespace in other branches
- 8.3 admin_content_notification.module \admin_content_notification_help()
- 8.2 admin_content_notification.module \admin_content_notification_help()
- 7.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 15 - Module File, consist all related hooks.
Code
function admin_content_notification_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.admin_content_notification':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module can be used to send email to admin or on any specific email id when a content has been posted/updated on Drupal site.') . '</p>';
return $output;
}
}