Role::setWeight

public Role::setWeight($weight)

Sets the weight to the given value.

Parameters

int $weight: The desired weight.

Return value

$this

Overrides RoleInterface::setWeight

File

core/modules/user/src/Entity/Role.php, line 104

Class

Role
Defines the user role entity class.

Namespace

Drupal\user\Entity

Code

public function setWeight($weight) {
  $this->set('weight', $weight);
  return $this;
}
doc_Drupal
2016-10-29 09:38:45
Comments
Leave a Comment

Please login to continue.