You are here

DateRecurInterpreter.php in Recurring Dates Field 3.0.x

File

src/Annotation/DateRecurInterpreter.php
View source
<?php

declare (strict_types=1);
namespace Drupal\date_recur\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Date recur occurrence handler item annotation object.
 *
 * @see plugin_api
 *
 * @Annotation
 */
class DateRecurInterpreter extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The label of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

}

Classes

Namesort descending Description
DateRecurInterpreter Defines a Date recur occurrence handler item annotation object.