function update_detailed_email_help in Update Status Detailed Email 6
Same name and namespace in other branches
- 7 update_detailed_email.module \update_detailed_email_help()
Implementation of hook_help().
File
- ./
update_detailed_email.module, line 12 - Adds detail to the email message Drupal core's Update Status sends.
Code
function update_detailed_email_help($page, $arg) {
switch ($page) {
case 'admin/help#update_detailed_email':
return '<p>' . t('The Update Detailed Email module modifies the basic email that the core Update Status module sends. It includes detailed information about what modules need updating, and uses a customizable subject line. The information sent in the email is based on the information seen on the <a href="@update-report">update report</a> page. Go to <a href="@update-settings">Update status module settings page</a> to set a customized subject line.', array(
'@update-report' => url('admin/reports/updates'),
'@update-settings' => url('admin/reports/updates/settings'),
)) . '</p>';
}
}