You are here

DateRecurOccurrencesComputed.php in Recurring Dates Field 3.x

File

src/Plugin/Field/DateRecurOccurrencesComputed.php
View source
<?php

declare (strict_types=1);
namespace Drupal\date_recur\Plugin\Field;

use Drupal\Core\TypedData\Plugin\DataType\ItemList;

/**
 * Provides values for the computed 'occurrences' property on date recur fields.
 *
 * Usage:
 * @code
 * $entity->field_myfield->occurrences
 * @endcode
 *
 * @method FieldType\DateRecurItem getParent()
 */
class DateRecurOccurrencesComputed extends ItemList {

  /**
   * {@inheritdoc}
   *
   * @yield \Generator
   *   An occurrence generator.
   */
  public function getValue($langcode = NULL) : \Generator {
    yield from $this
      ->getParent()
      ->getHelper()
      ->generateOccurrences();
  }

}

Classes

Namesort descending Description
DateRecurOccurrencesComputed Provides values for the computed 'occurrences' property on date recur fields.