You are here

public function MeetingResult::setStatus in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/Entity/MeetingResult.php \Drupal\opigno_moxtra\Entity\MeetingResult::setStatus()

Sets the user status.

Parameters

int $value: The user status.

Return value

$this

Overrides MeetingResultInterface::setStatus

File

src/Entity/MeetingResult.php, line 125

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setStatus($value) {
  $this
    ->set('status', $value);
  return $this;
}