public function MeetingResult::setStatus in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function setStatus($value) {
$this
->set('status', $value);
return $this;
}