You are here

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

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

Code

public function getStatus() {
  return $this
    ->get('status')->value;
}