public Block::setWeight($weight)
Sets the block weight.
Parameters
int $weight: The desired weight.
Return value
$this
Overrides BlockInterface::setWeight
File
- core/modules/block/src/Entity/Block.php, line 311
Class
- Block
- Defines a Block configuration entity class.
Namespace
Drupal\block\Entity
Code
1 2 3 4 | public function setWeight( $weight ) { $this ->weight = $weight ; return $this ; } |
Please login to continue.