You are here

function linkchecker_drush_command in Link checker 7

Implements hook_drush_command().

File

./linkchecker.drush.inc, line 11
Drush interface to linkchecker functionalities.

Code

function linkchecker_drush_command() {
  $commands = array();
  $commands['linkchecker-analyze'] = array(
    'description' => 'Reanalyzes content for links. Recommended after module has been upgraded.',
  );
  $commands['linkchecker-clear'] = array(
    'description' => 'Clears all link data and analyze content for links. WARNING: Custom link check settings are deleted.',
  );
  $commands['linkchecker-check'] = array(
    'description' => 'Check link status.',
  );
  return $commands;
}