function _nodewords_mass_update_batch_finished in Nodewords: D6 Meta Tags 6
1 string reference to '_nodewords_mass_update_batch_finished'
- nodewords_mass_update in ./
nodewords.module - Delete the nodes meta tags.
File
- ./
nodewords.admin.inc, line 572 - Administration interface for nodewords.module.
Code
function _nodewords_mass_update_batch_finished($success, $results, $operations) {
if ($success) {
drupal_set_message(t('The update has been performed.'));
}
else {
drupal_set_message(t('An error occurred and processing did not complete.'), 'error');
$message = format_plural($results['count'], '1 item successfully processed.', '@count items successfully processed.');
drupal_set_message($message);
}
}