You are here

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

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

Sets the entity's Moxtra binder ID.

Parameters

string $id: The Moxtra binder ID.

Return value

$this

Overrides MeetingInterface::setBinderId

File

src/Entity/Meeting.php, line 120

Class

Meeting
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setBinderId($id) {
  $this
    ->set('binder_id', $id);
  return $this;
}