View source
<?php
namespace Drupal\views\Plugin\views\filter;
use Drupal\Core\Form\FormStateInterface;
class Date extends NumericFilter {
protected function defineOptions() {
$options = parent::defineOptions();
$options['value']['contains']['type']['default'] = 'date';
return $options;
}
protected function valueForm(&$form, FormStateInterface $form_state) {
if (!$form_state
->get('exposed')) {
$form['value']['type'] = [
'#type' => 'radios',
'#title' => $this
->t('Value type'),
'#options' => [
'date' => $this
->t('A date in any machine readable format. CCYY-MM-DD HH:MM:SS is preferred.'),
'offset' => $this
->t('An offset from the current time such as "@example1" or "@example2"', [
'@example1' => '+1 day',
'@example2' => '-2 hours -30 minutes',
]),
],
'#default_value' => !empty($this->value['type']) ? $this->value['type'] : 'date',
];
}
parent::valueForm($form, $form_state);
}
public function validateOptionsForm(&$form, FormStateInterface $form_state) {
parent::validateOptionsForm($form, $form_state);
if (!empty($this->options['exposed']) && $form_state
->isValueEmpty([
'options',
'expose',
'required',
])) {
return;
}
$this
->validateValidTime($form['value'], $form_state, $form_state
->getValue([
'options',
'operator',
]), $form_state
->getValue([
'options',
'value',
]));
}
public function validateExposed(&$form, FormStateInterface $form_state) {
if (empty($this->options['exposed'])) {
return;
}
if (empty($this->options['expose']['required'])) {
return;
}
$value =& $form_state
->getValue($this->options['expose']['identifier']);
if (!empty($this->options['expose']['use_operator']) && !empty($this->options['expose']['operator_id'])) {
$operator =& $form_state
->getValue($this->options['expose']['operator_id']);
}
else {
$operator = $this->operator;
}
$this
->validateValidTime($this->options['expose']['identifier'], $form_state, $operator, $value);
}
public function validateValidTime(&$form, FormStateInterface $form_state, $operator, $value) {
$operators = $this
->operators();
if ($operators[$operator]['values'] == 1) {
$convert = strtotime($value['value']);
if (!empty($form['value']) && ($convert == -1 || $convert === FALSE)) {
$form_state
->setError($form['value'], $this
->t('Invalid date format.'));
}
}
elseif ($operators[$operator]['values'] == 2) {
$min = strtotime($value['min']);
if ($min == -1 || $min === FALSE) {
$form_state
->setError($form['min'], $this
->t('Invalid date format.'));
}
$max = strtotime($value['max']);
if ($max == -1 || $max === FALSE) {
$form_state
->setError($form['max'], $this
->t('Invalid date format.'));
}
}
}
protected function hasValidGroupedValue(array $group) {
if (!is_array($group['value']) || empty($group['value'])) {
return FALSE;
}
$operators = $this
->operators();
$expected = $operators[$group['operator']]['values'] + 1;
$actual = count(array_filter($group['value'], 'static::arrayFilterZero'));
return $actual == $expected;
}
public function acceptExposedInput($input) {
if (empty($this->options['exposed'])) {
return TRUE;
}
$type = NULL;
if ($this
->isAGroup()) {
if (is_array($this->group_info)) {
$type = $this->group_info['type'];
}
}
else {
$type = $this->value['type'];
}
$rc = parent::acceptExposedInput($input);
if (!is_null($type)) {
$this->value['type'] = $type;
}
$operators = $this
->operators();
if (!empty($this->options['expose']['use_operator']) && !empty($this->options['expose']['operator_id'])) {
$operator = $input[$this->options['expose']['operator_id']];
}
else {
$operator = $this->operator;
}
if ($operators[$operator]['values'] == 1) {
if ($this->value['value'] == '') {
return FALSE;
}
}
elseif ($operators[$operator]['values'] == 2) {
if ($this->value['min'] == '' || $this->value['max'] == '') {
return FALSE;
}
}
return $rc;
}
protected function opBetween($field) {
$a = intval(strtotime($this->value['min'], 0));
$b = intval(strtotime($this->value['max'], 0));
if ($this->value['type'] == 'offset') {
$a = '***CURRENT_TIME***' . sprintf('%+d', $a);
$b = '***CURRENT_TIME***' . sprintf('%+d', $b);
}
$operator = strtoupper($this->operator);
$this->query
->addWhereExpression($this->options['group'], "{$field} {$operator} {$a} AND {$b}");
}
protected function opSimple($field) {
$value = intval(strtotime($this->value['value'], 0));
if (!empty($this->value['type']) && $this->value['type'] == 'offset') {
$value = '***CURRENT_TIME***' . sprintf('%+d', $value);
}
$this->query
->addWhereExpression($this->options['group'], "{$field} {$this->operator} {$value}");
}
}