You are here

function linkchecker_help in Link checker 6.2

Same name and namespace in other branches
  1. 8 linkchecker.module \linkchecker_help()
  2. 5.2 linkchecker.module \linkchecker_help()
  3. 5 linkchecker.module \linkchecker_help()
  4. 7 linkchecker.module \linkchecker_help()

Implementation of hook_help().

File

./linkchecker.module, line 66
This module periodically check links in given node types, blocks, cck fields, etc.

Code

function linkchecker_help($path, $arg) {
  switch ($path) {
    case 'admin/help#linkchecker':
      return '<p>' . t('This module provides an aid to finding broken links on your site. It periodically checks contents of all public nodes, tries to find any html links and check for their validity. It reports broken links through the admin interface. For more information about status codes see <a href="@rfc">Status Code Definitions</a>.', array(
        '@rfc' => 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html',
      )) . '</p>';
  }
}