public function DateRecurNonRecurringHelper::getExcluded in Recurring Dates Field 3.x
Same name and namespace in other branches
- 8.2 src/DateRecurNonRecurringHelper.php \Drupal\date_recur\DateRecurNonRecurringHelper::getExcluded()
- 3.0.x src/DateRecurNonRecurringHelper.php \Drupal\date_recur\DateRecurNonRecurringHelper::getExcluded()
- 3.1.x src/DateRecurNonRecurringHelper.php \Drupal\date_recur\DateRecurNonRecurringHelper::getExcluded()
Get excluded dates.
Excluded dates are intended to match the start date of occurrences. Excluded dates may not necessarily intersect with occurrences. Excluded dates in the same time zone as the initial dates.
Implementors of this method are responsible for ensuring time zone is normalised.
Return value
\DateTimeInterface[] An array of excluded dates.
Overrides DateRecurHelperInterface::getExcluded
File
- src/
DateRecurNonRecurringHelper.php, line 98
Class
- DateRecurNonRecurringHelper
- Dummy helper for handling non-recurring values.
Namespace
Drupal\date_recurCode
public function getExcluded() : array {
return [];
}