public function OpignoGroupManagedContent::setCoordinateY in Opigno group manager 8
Same name and namespace in other branches
- 3.x src/Entity/OpignoGroupManagedContent.php \Drupal\opigno_group_manager\Entity\OpignoGroupManagedContent::setCoordinateY()
Sets Y coordinate.
Parameters
int $coordinate_y: The Y coordinate.
Return value
$this
File
- src/
Entity/ OpignoGroupManagedContent.php, line 290
Class
- OpignoGroupManagedContent
- Defines the Opigno Group Content entity.
Namespace
Drupal\opigno_group_manager\EntityCode
public function setCoordinateY($coordinate_y) {
$this
->set('coordinate_y', $coordinate_y);
return $this;
}