Term::setDescription

public Term::setDescription($description)

Sets the term's description.

Parameters

string $description: The term's description.

Return value

$this

Overrides TermInterface::setDescription

File

core/modules/taxonomy/src/Entity/Term.php, line 180

Class

Term
Defines the taxonomy term entity.

Namespace

Drupal\taxonomy\Entity

Code

1
2
3
4
public function setDescription($description) {
  $this->set('description', $description);
  return $this;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.