You are here

public function MeetingResult::getMeetingId in Opigno Moxtra 8

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

Returns the meeting ID.

Return value

int|null The meeting ID, or NULL in case the meeting ID field has not been set on the entity.

Overrides MeetingResultInterface::getMeetingId

File

src/Entity/MeetingResult.php, line 64

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getMeetingId() {
  return $this
    ->get('meeting')->target_id;
}