You are here

class FullcalendarOption in FullCalendar 8.2

Same name and namespace in other branches
  1. 8.5 src/Annotation/FullcalendarOption.php \Drupal\fullcalendar\Annotation\FullcalendarOption
  2. 8 src/Annotation/FullcalendarOption.php \Drupal\fullcalendar\Annotation\FullcalendarOption
  3. 8.3 src/Annotation/FullcalendarOption.php \Drupal\fullcalendar\Annotation\FullcalendarOption
  4. 8.4 src/Annotation/FullcalendarOption.php \Drupal\fullcalendar\Annotation\FullcalendarOption

Defines a Fullcalendar option annotation object.

Hierarchy

Expanded class hierarchy of FullcalendarOption

1 class is annotated with FullcalendarOption
FullCalendar in src/Plugin/fullcalendar/type/FullCalendar.php
Plugin annotation @FullcalendarOption( id = "fullcalendar", module = "fullcalendar", js = TRUE, weight = "-20" )

File

src/Annotation/FullcalendarOption.php, line 12

Namespace

Drupal\fullcalendar\Annotation
View source
class FullcalendarOption extends Plugin {
  public $id;
  public $js = FALSE;
  public $css = FALSE;
  public $weight = 0;

}

Members

Namesort descending Modifiers Type Description Overrides
FullcalendarOption::$css public property
FullcalendarOption::$id public property
FullcalendarOption::$js public property
FullcalendarOption::$weight public property
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2