You are here

function _linkchecker_batch_single_node_import_finished in Link checker 6.2

Same name and namespace in other branches
  1. 7 linkchecker.batch.inc \_linkchecker_batch_single_node_import_finished()
1 string reference to '_linkchecker_batch_single_node_import_finished'
_linkchecker_batch_import_single_node in includes/linkchecker.batch.inc
Recurring scans of a single node via batch API.

File

includes/linkchecker.batch.inc, line 179
Batch API callbacks for the linkchecker module.

Code

function _linkchecker_batch_single_node_import_finished($success, $results, $operations) {
  if ($success) {
    $message = format_plural(count($results), 'Node @nid has been re-scanned once to collect all links.', 'Node @nid has been re-scanned @count times to collect all links.', array(
      '@nid' => $results[0],
    ));
  }
  else {
    $message = t('Recurring scanning for links in node @nid have failed with an error.', array(
      '@nid' => $results[0],
    ));
  }
  drupal_set_message($message);
}