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