You are here

function _drush_ip_backlog_comments_process_batch_finished in IP address manager 7.2

Batch process finished: backlog comments.

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

File

./ip.drush.inc, line 132

Code

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

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