FullcalendarBase.php in FullCalendar 8.4
File
src/Plugin/FullcalendarBase.php
View source
<?php
namespace Drupal\fullcalendar\Plugin;
use Drupal\Core\Plugin\PluginBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\style\StylePluginBase;
abstract class FullcalendarBase extends PluginBase implements FullcalendarInterface {
protected $style;
public function setStyle(StylePluginBase $style) {
$this->style = $style;
}
public function submitOptionsForm(&$form, FormStateInterface $form_state) {
}
public function process(&$settings) {
}
public function preView(&$settings) {
}
}