You are here

public function RlHelper::isInfinite in Recurring Dates Field 8.2

Same name and namespace in other branches
  1. 3.x src/Rl/RlHelper.php \Drupal\date_recur\Rl\RlHelper::isInfinite()
  2. 3.0.x src/Rl/RlHelper.php \Drupal\date_recur\Rl\RlHelper::isInfinite()
  3. 3.1.x src/Rl/RlHelper.php \Drupal\date_recur\Rl\RlHelper::isInfinite()

Determine whether this is infinite.

Return value

bool Whether this is infinite.

Overrides DateRecurHelperInterface::isInfinite

1 call to RlHelper::isInfinite()
RlHelper::getOccurrences in src/Rl/RlHelper.php
Get all occurrences.

File

src/Rl/RlHelper.php, line 145

Class

RlHelper
Helper for recurring rules implemented with rlanvin/rrule.

Namespace

Drupal\date_recur\Rl

Code

public function isInfinite() : bool {
  return $this->set
    ->isInfinite();
}