You are here

public function OpignoGroupManagedContent::setCoordinateY in Opigno group manager 3.x

Same name and namespace in other branches
  1. 8 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\Entity

Code

public function setCoordinateY($coordinate_y) {
  $this
    ->set('coordinate_y', $coordinate_y);
  return $this;
}