function seochecklist_help in SEO Checklist 7.3
Same name and namespace in other branches
- 5.2 seochecklist.module \seochecklist_help()
- 6.3 seochecklist.module \seochecklist_help()
Implementation of hook_help().
File
- ./
seochecklist.module, line 12 - SEO Checklist module allows users to track important SEO techniques on the website.
Code
function seochecklist_help($path, $arg) {
if ($path == 'admin/config/search/seochecklist') {
//image not found, commenting the banner
return l('<img width=700 height=100 src="http://www.volacci.com/linkcodes/seo-checklist-banner-7.png">', 'http://www.volacci.com/lp/drupal-seo-checklist-7', array(
'html' => TRUE,
)) . '<p>' . t('Check off each SEO-related task as you complete it. Do not forget to click the <em>Save</em> button!') . '</p>';
}
}