You are here

function linkchecker_help in Link checker 7

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. 6.2 linkchecker.module \linkchecker_help()

Implements hook_help().

File

./linkchecker.module, line 85
This module periodically check links in given node types, blocks 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' => 'https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html',
      )) . '</p>';
  }
}