You are here

function _drush_ip_backlog_nodes_process_batch_finished in IP address manager 7.2

Batch process finished: backlog nodes.

1 string reference to '_drush_ip_backlog_nodes_process_batch_finished'
drush_ip_backlog_nodes in ./ip.drush.inc
Drush command: ip backlog comments.

File

./ip.drush.inc, line 241

Code

function _drush_ip_backlog_nodes_process_batch_finished($success, $results, $operations) {
  if ($success) {

    // Let the user know we have finished.
    drush_log(dt('@succeeded nodes were processed correctly. @errored nodes failed.', array(
      '@succeeded' => empty($results['success']) ? 0 : $results['success'],
      '@errored' => empty($results['error']) ? 0 : $results['error'],
    )), 'ok');
  }
}