You are here

public function DateRecurOccurrencesComputed::isEmpty in Recurring Dates Field 8

Determines whether the list contains any non-empty items.

Return value

bool TRUE if the list is empty, FALSE otherwise.

Overrides ItemList::isEmpty

File

src/DateRecurOccurrencesComputed.php, line 38

Class

DateRecurOccurrencesComputed

Namespace

Drupal\date_recur

Code

public function isEmpty() {
  $this
    ->getValue();
  return parent::isEmpty();
}