You are here

function _linkchecker_batch_node_import_finished in Link checker 7

Same name and namespace in other branches
  1. 6.2 includes/linkchecker.batch.inc \_linkchecker_batch_node_import_finished()

Output node batch result messages.

Parameters

bool $success: If scan completed successfully or not.

int $results: Number of nodes scanned.

array $operations: Array of functions called.

1 string reference to '_linkchecker_batch_node_import_finished'
_linkchecker_batch_import_nodes in ./linkchecker.batch.inc
Batch: Scan nodes for links.

File

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

Code

function _linkchecker_batch_node_import_finished($success, $results, $operations) {
  if ($success) {
    $message = format_plural(count($results), 'One node has been scanned.', '@count nodes have been scanned.');
  }
  else {
    $message = t('Scanning for links in content has failed with an error.');
  }
  drupal_set_message($message);
}