public function MeetingResult::getStatus in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Entity/MeetingResult.php \Drupal\opigno_moxtra\Entity\MeetingResult::getStatus()
Returns the user status.
Return value
int|null The user status, or NULL in case the user status field has not been set on the entity.
Overrides MeetingResultInterface::getStatus
File
- src/
Entity/ MeetingResult.php, line 109
Class
- MeetingResult
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function getStatus() {
return $this
->get('status')->value;
}