function BatchBuilder::setTitle

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setTitle()
  2. 8.9.x core/lib/Drupal/Core/Batch/BatchBuilder.php \Drupal\Core\Batch\BatchBuilder::setTitle()
  3. 10 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\Batch

Code

public function setTitle($title) {
    $this->title = $title;
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.