You are here

FullcalendarViewProcessor.php in Fullcalendar View 6.x

File

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

namespace Drupal\fullcalendar_view\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Fullcalendar view processor item annotation object.
 *
 * @see \Drupal\fullcalendar_view\Plugin\FullcalendarViewProcessorManager
 * @see plugin_api
 *
 * @Annotation
 */
class FullcalendarViewProcessor extends Plugin {

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

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

  /**
   * supported field types
   *
   * @var array
   */
  public $field_types;

}

Classes

Namesort descending Description
FullcalendarViewProcessor Defines a Fullcalendar view processor item annotation object.