public function Meeting::getBinderId in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function getBinderId() {
return $this
->get('binder_id')->value;
}