Same name and namespace in other branches
  1. 8.9.x core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::setTitle()
  2. 9 core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::setTitle()

Sets the node title.

Parameters

string $title: The node title.

Return value

$this The called node entity.

Overrides NodeInterface::setTitle

File

core/modules/node/src/Entity/Node.php, line 209

Class

Node
Defines the node entity class.

Namespace

Drupal\node\Entity

Code

public function setTitle($title) {
  $this
    ->set('title', $title);
  return $this;
}