You are here

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

Same name and namespace in other branches
  1. 8 src/Entity/Workspace.php \Drupal\opigno_moxtra\Entity\Workspace::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 WorkspaceInterface::getBinderId

File

src/Entity/Workspace.php, line 115

Class

Workspace
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

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