public function BatchBuilder::setTitle in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setTitle()
- 9 core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setTitle()
Sets the title.
Parameters
string|\Drupal\Core\StringTranslation\TranslatableMarkup $title: The title.
Return value
$this
File
- core/
lib/ Drupal/ Core/ Batch/ BatchBuilder.php, line 131
Class
- BatchBuilder
- Builds an array for a batch process.
Namespace
Drupal\Core\BatchCode
public function setTitle($title) {
$this->title = $title;
return $this;
}