You are here

public function Term::setWeight in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Entity/Term.php \Drupal\taxonomy\Entity\Term::setWeight()

Sets the term weight.

Parameters

int $weight: The term weight.

Return value

$this

Overrides TermInterface::setWeight

File

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

Class

Term
Defines the taxonomy term entity.

Namespace

Drupal\taxonomy\Entity

Code

public function setWeight($weight) {
  $this
    ->set('weight', $weight);
  return $this;
}