Files
farmOS-dev/web/modules/date_popup/src/DatePopup.php
2024-12-10 15:08:16 +01:00

24 lines
429 B
PHP

<?php
namespace Drupal\date_popup;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\filter\Date;
/**
* The date popup views filter plugin.
*/
class DatePopup extends Date {
use DatePopupTrait;
/**
* {@inheritdoc}
*/
public function buildExposedForm(&$form, FormStateInterface $form_state) {
parent::buildExposedForm($form, $form_state);
$this->applyDatePopupToForm($form);
}
}