DateRecurInterpreter.php in Recurring Dates Field 3.0.x
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\date_recur\AnnotationFile
src/Annotation/DateRecurInterpreter.phpView 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
Name | Description |
---|---|
DateRecurInterpreter | Defines a Date recur occurrence handler item annotation object. |