public function Context::setWeight in Context 8.4
Same name and namespace in other branches
- 8 src/Entity/Context.php \Drupal\context\Entity\Context::setWeight()
- 8.0 src/Entity/Context.php \Drupal\context\Entity\Context::setWeight()
Set the weight for this context.
Parameters
int $weight: The weight to set for this context.
Return value
$this This Context object.
Overrides ContextInterface::setWeight
File
- src/
Entity/ Context.php, line 231
Class
- Context
- Defines the Context entity.
Namespace
Drupal\context\EntityCode
public function setWeight($weight) {
$this->weight = (int) $weight;
return $this;
}