diff --git a/src/Entity/EventSeries.php b/src/Entity/EventSeries.php index e7514bbdb5c9a76a1c95dc39873084f834970776..3ccecd3987d7c43609a6ca266dbc6a97d7176d3e 100644 --- a/src/Entity/EventSeries.php +++ b/src/Entity/EventSeries.php @@ -603,7 +603,33 @@ class EventSeries extends EditorialContentEntityBase implements EventInterface { * The day of month of monthly recurrence. */ public function getMonthlyDayOfMonth() { - return $this->get('monthly_recurring_date')->day_of_month; + $days = $this->get('monthly_recurring_date')->day_of_month; + if (!empty($days)) { + $days = explode(',', $days); + } + return $days; + } + + /** + * Get custom event dates. + * + * @return array + * An array of custom dates. + */ + public function getCustomDates() { + $custom_dates = []; + + $dates = $this->get('custom_date')->getIterator(); + if (!empty($dates)) { + foreach ($dates as $date) { + $custom_dates[] = [ + 'start_date' => $date->start_date, + 'end_date' => $date->end_date, + ]; + } + } + + return $custom_dates; } } diff --git a/src/EventCreationService.php b/src/EventCreationService.php index 8e6d221734111013280021cdc13000cb345e8cb8..3e29851644f8ca17d31ac3942da2ef0101ce8e0a 100644 --- a/src/EventCreationService.php +++ b/src/EventCreationService.php @@ -122,7 +122,7 @@ class EventCreationService { break; case 'custom': - + $config['custom_dates'] = $event->getCustomDates(); break; } return $config;