You are here

public function Meeting::getBinderId in Opigno Moxtra 3.x

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

Returns the entity's Moxtra binder ID.

Return value

string|null The Moxtra binder ID, or NULL in case the binder ID field has not been set on the entity.

Overrides MeetingInterface::getBinderId

File

src/Entity/Meeting.php, line 113

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getBinderId() {
  return $this
    ->get('binder_id')->value;
}