function BatchUserAction::finishBatch
Same name in other branches
- 8.9.x core/modules/views/tests/modules/user_batch_action_test/src/Plugin/Action/BatchUserAction.php \Drupal\user_batch_action_test\Plugin\Action\BatchUserAction::finishBatch()
- 10 core/modules/views/tests/modules/user_batch_action_test/src/Plugin/Action/BatchUserAction.php \Drupal\user_batch_action_test\Plugin\Action\BatchUserAction::finishBatch()
- 11.x core/modules/views/tests/modules/user_batch_action_test/src/Plugin/Action/BatchUserAction.php \Drupal\user_batch_action_test\Plugin\Action\BatchUserAction::finishBatch()
Finish batch.
Parameters
bool $success: Indicates whether the batch process was successful.
array $results: Results information passed from the processing callback.
File
-
core/
modules/ views/ tests/ modules/ user_batch_action_test/ src/ Plugin/ Action/ BatchUserAction.php, line 85
Class
- BatchUserAction
- Provides action that sets batch precessing.
Namespace
Drupal\user_batch_action_test\Plugin\ActionCode
public static function finishBatch($success, $results) {
\Drupal::messenger()->addMessage(\Drupal::translation()->formatPlural($results['processed'], 'One item has been processed.', '@count items have been processed.'));
\Drupal::messenger()->addMessage($results['theme'] . ' theme used');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.