You are here

function linkchecker_help in Link checker 5

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

Implementation of hook_help().

File

./linkchecker.module, line 13
This module periodically check html links referenced by drupal nodes Developed and maintained by Marek Tichy, marek@ecn.cz

Code

function linkchecker_help($section) {
  switch ($section) {
    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.") . "</p>";
  }
}