public function Meeting::getStartDate in Opigno Moxtra 3.x
Same name and namespace in other branches
- 8 src/Entity/Meeting.php \Drupal\opigno_moxtra\Entity\Meeting::getStartDate()
Returns the entity's start date.
Return value
string The start date string in the 'Y-m-d H:i:s' format, or NULL in case the date range field has not been set on the entity.
Overrides MeetingInterface::getStartDate
File
- src/
Entity/ Meeting.php, line 143
Class
- Meeting
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function getStartDate() {
return $this
->get('date')->value;
}