You are here

function seochecklist_help in SEO Checklist 6.3

Same name and namespace in other branches
  1. 5.2 seochecklist.module \seochecklist_help()
  2. 7.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/settings/seochecklist') {

    //image not found, commenting the banner
    return l('<img width=700 height=100 src="http://www.volacci.com/linkcodes/seo-checklist-banner-6.png">', 'http://www.volacci.com/lp/drupal-seo-checklist-6', 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>';
  }
}