public function Role::getWeight in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::getWeight()
- 10 core/modules/user/src/Entity/Role.php \Drupal\user\Entity\Role::getWeight()
Returns the weight.
Return value
int The weight of this role.
Overrides RoleInterface::getWeight
File
- core/modules/ user/ src/ Entity/ Role.php, line 104 
Class
- Role
- Defines the user role entity class.
Namespace
Drupal\user\EntityCode
public function getWeight() {
  return $this
    ->get('weight');
}