You are here

public function DateRecurHelperInterface::getExcluded in Recurring Dates Field 3.x

Same name and namespace in other branches
  1. 8.2 src/DateRecurHelperInterface.php \Drupal\date_recur\DateRecurHelperInterface::getExcluded()
  2. 3.0.x src/DateRecurHelperInterface.php \Drupal\date_recur\DateRecurHelperInterface::getExcluded()
  3. 3.1.x src/DateRecurHelperInterface.php \Drupal\date_recur\DateRecurHelperInterface::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.

3 methods override DateRecurHelperInterface::getExcluded()
DateRecurHelper::getExcluded in src/DateRecurHelper.php
Get excluded dates.
DateRecurNonRecurringHelper::getExcluded in src/DateRecurNonRecurringHelper.php
Get excluded dates.
RlHelper::getExcluded in src/Rl/RlHelper.php
Get excluded dates.

File

src/DateRecurHelperInterface.php, line 91

Class

DateRecurHelperInterface
Interface for recurring rule helper.

Namespace

Drupal\date_recur

Code

public function getExcluded() : array;