public function BatchBuilder::setFinishCallback in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setFinishCallback()
- 9 core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setFinishCallback()
Sets the finished callback.
This callback will be executed if the batch process is done.
Parameters
callable $callback: The callback.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Batch/ BatchBuilder.php, line 146
Class
- BatchBuilder
- Builds an array for a batch process.
Namespace
Drupal\Core\BatchCode
public function setFinishCallback(callable $callback) {
$this->finished = $callback;
return $this;
}