class Date in Drupal 10
Same name in this branch
- 10 core/lib/Drupal/Core/Render/Element/Date.php \Drupal\Core\Render\Element\Date
- 10 core/modules/views/src/Plugin/views/filter/Date.php \Drupal\views\Plugin\views\filter\Date
- 10 core/modules/views/src/Plugin/views/sort/Date.php \Drupal\views\Plugin\views\sort\Date
- 10 core/modules/views/src/Plugin/views/argument/Date.php \Drupal\views\Plugin\views\argument\Date
- 10 core/modules/views/src/Plugin/views/field/Date.php \Drupal\views\Plugin\views\field\Date
- 10 core/modules/datetime/src/Plugin/views/filter/Date.php \Drupal\datetime\Plugin\views\filter\Date
- 10 core/modules/datetime/src/Plugin/views/sort/Date.php \Drupal\datetime\Plugin\views\sort\Date
- 10 core/modules/datetime/src/Plugin/views/argument/Date.php \Drupal\datetime\Plugin\views\argument\Date
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/filter/Date.php \Drupal\views\Plugin\views\filter\Date
- 9 core/modules/views/src/Plugin/views/filter/Date.php \Drupal\views\Plugin\views\filter\Date
Filter to handle dates stored as a timestamp.
Plugin annotation
@ViewsFilter("date");
Hierarchy
- class \Drupal\views\Plugin\views\filter\FilterPluginBase extends \Drupal\views\Plugin\views\HandlerBase implements CacheableDependencyInterface
- class \Drupal\views\Plugin\views\filter\NumericFilter
- class \Drupal\views\Plugin\views\filter\Date
- class \Drupal\views\Plugin\views\filter\NumericFilter
Expanded class hierarchy of Date
Related topics
2 files declare their use of Date
- Date.php in core/
modules/ datetime/ src/ Plugin/ views/ filter/ Date.php - StatisticsLastUpdated.php in core/
modules/ comment/ src/ Plugin/ views/ filter/ StatisticsLastUpdated.php
23 string references to 'Date'
- Date::getSortName in core/
modules/ views/ src/ Plugin/ views/ argument/ Date.php - Datetime::processDatetime in core/
lib/ Drupal/ Core/ Datetime/ Element/ Datetime.php - Expands a datetime element type into date and/or time elements.
- DateTimeSchemaTest::testDateTimeSchema in core/
modules/ datetime/ tests/ src/ Kernel/ Views/ DateTimeSchemaTest.php - Tests argument plugin schema.
- DbLogController::eventDetails in core/
modules/ dblog/ src/ Controller/ DbLogController.php - Displays details about a specific database log message.
- DbLogController::overview in core/
modules/ dblog/ src/ Controller/ DbLogController.php - Displays a listing of database log messages.
File
- core/
modules/ views/ src/ Plugin/ views/ filter/ Date.php, line 14
Namespace
Drupal\views\Plugin\views\filterView source
class Date extends NumericFilter {
protected function defineOptions() {
$options = parent::defineOptions();
// value is already set up properly, we're just adding our new field to it.
$options['value']['contains']['type']['default'] = 'date';
return $options;
}
/**
* Add a type selector to the value form.
*/
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',
])) {
// Who cares what the value is if it's exposed and non-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'])) {
// Who cares what the value is if it's exposed and non-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);
}
/**
* Validate that the time values convert to something usable.
*/
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.'));
}
}
}
/**
* {@inheritdoc}
*/
protected function hasValidGroupedValue(array $group) {
if (!is_array($group['value']) || empty($group['value'])) {
return FALSE;
}
// Special case when validating grouped date filters because the
// $group['value'] array contains the type of filter (date or offset) and
// therefore the number of items the comparison has to be done against is
// one greater.
$operators = $this
->operators();
$expected = $operators[$group['operator']]['values'] + 1;
$actual = count(array_filter($group['value'], [
static::class,
'arrayFilterZero',
]));
return $actual == $expected;
}
public function acceptExposedInput($input) {
if (empty($this->options['exposed'])) {
return TRUE;
}
// Store this because it will get overwritten.
$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);
// Restore what got overwritten by the parent.
if (!is_null($type)) {
$this->value['type'] = $type;
}
// Don't filter if value(s) are empty.
$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) {
// When the operator is either <, <=, =, !=, >=, > or regular_expression
// the input contains only one value.
if ($this->value['value'] == '') {
return FALSE;
}
}
elseif ($operators[$operator]['values'] == 2) {
// When the operator is either between or not between the input contains
// two values.
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') {
// Keep sign.
$a = '***CURRENT_TIME***' . sprintf('%+d', $a);
// Keep sign.
$b = '***CURRENT_TIME***' . sprintf('%+d', $b);
}
// This is safe because we are manually scrubbing the values.
// It is necessary to do it this way because $a and $b are formulas when using an offset.
$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') {
// Keep sign.
$value = '***CURRENT_TIME***' . sprintf('%+d', $value);
}
// This is safe because we are manually scrubbing the value.
// It is necessary to do it this way because $value is a formula when using an offset.
$this->query
->addWhereExpression($this->options['group'], "{$field} {$this->operator} {$value}");
}
}
Members
Name![]() |
Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Date:: |
public | function |
Do some minor translation of the exposed input. Overrides NumericFilter:: |
|
Date:: |
protected | function |
Overrides NumericFilter:: |
|
Date:: |
protected | function |
Determines if the given grouped filter entry has a valid value. Overrides FilterPluginBase:: |
|
Date:: |
protected | function |
Filters by operator between. Overrides NumericFilter:: |
1 |
Date:: |
protected | function |
Overrides NumericFilter:: |
1 |
Date:: |
public | function | ||
Date:: |
public | function |
Simple validate handler. Overrides FilterPluginBase:: |
|
Date:: |
public | function | Validate that the time values convert to something usable. | |
Date:: |
protected | function |
Add a type selector to the value form. Overrides NumericFilter:: |
|
FilterPluginBase:: |
public | property | Disable the possibility to allow an exposed input to be optional. | |
FilterPluginBase:: |
public | property | Contains the information of the selected item in a grouped filter. | |
FilterPluginBase:: |
public | property | Disable the possibility to use operators. | 1 |
FilterPluginBase:: |
public | property | Contains the operator which is used on the query. | |
FilterPluginBase:: |
public | property | Contains the actual value of the field,either configured in the views ui or entered in the exposed filters. | |
FilterPluginBase:: |
public | function | Add a new group to the exposed filter groups. | |
FilterPluginBase:: |
protected static | function | Filter by no empty values, though allow the use of (string) "0". | |
FilterPluginBase:: |
protected | function | Build the form to let users create the group of exposed filters. | |
FilterPluginBase:: |
public | function | Render our chunk of the exposed filter form when selecting. | |
FilterPluginBase:: |
public | function | Displays the Build Group form. | |
FilterPluginBase:: |
protected | function | Provide default options for exposed filters. | |
FilterPluginBase:: |
protected | function | Save new group items, re-enumerates and remove groups marked to delete. | |
FilterPluginBase:: |
protected | function | Validate the build group options form. | |
FilterPluginBase:: |
public | function | Provide the basic form which calls through to subforms. | 2 |
FilterPluginBase:: |
protected | function | Builds wrapper for value and operator forms. | |
FilterPluginBase:: |
protected | function | Determine if a filter can be converted into a group. | |
FilterPluginBase:: |
public | function | Determine if a filter can be exposed. | 5 |
FilterPluginBase:: |
public | function | Can this filter be used in OR groups? | 1 |
FilterPluginBase:: |
public | function | Transform the input from a grouped filter into a standard filter. | |
FilterPluginBase:: |
public | function | Tell the renderer about our exposed form. This only needs to be overridden for particularly complex forms. And maybe not even then. | |
FilterPluginBase:: |
protected | function | Make some translations to a form item to make it more suitable to exposing. | |
FilterPluginBase:: |
public | function |
The cache contexts associated with this object. Overrides CacheableDependencyInterface:: |
6 |
FilterPluginBase:: |
public | function |
The maximum age for which this object may be cached. Overrides CacheableDependencyInterface:: |
|
FilterPluginBase:: |
public | function |
The cache tags associated with this object. Overrides CacheableDependencyInterface:: |
1 |
FilterPluginBase:: |
public | function | Build a form containing a group of operator | values to apply as a single filter. | |
FilterPluginBase:: |
public | function | Returns the options available for a grouped filter that users checkboxes as widget, and therefore has to be applied several times, one per item selected. | |
FilterPluginBase:: |
public | function | Overrides \Drupal\views\Plugin\views\HandlerBase::init(). | 2 |
FilterPluginBase:: |
public | function | Returns TRUE if the exposed filter works like a grouped filter. | |
FilterPluginBase:: |
public | function | Returns TRUE if users can select multiple groups items of a grouped exposed filter. | |
FilterPluginBase:: |
protected | function | Options form subform for setting the operator. | 5 |
FilterPluginBase:: |
public | function | Perform any necessary changes to the form values prior to storage. | |
FilterPluginBase:: |
protected | function | Validate the operator form. | |
FilterPluginBase:: |
protected | function | Sanitizes the HTML select element's options. | |
FilterPluginBase:: |
protected | function | Shortcut to display the build_group/hide button. | |
FilterPluginBase:: |
public | function | Shortcut to display the exposed options form. | |
FilterPluginBase:: |
public | function | Shortcut to display the expose/hide button. | |
FilterPluginBase:: |
public | function | Shortcut to display the operator form. | |
FilterPluginBase:: |
protected | function | Shortcut to display the value form. | |
FilterPluginBase:: |
public | function | ||
FilterPluginBase:: |
public | function | If set to remember exposed input in the session, store it there. | |
FilterPluginBase:: |
public | function | Simple submit handler. | |
FilterPluginBase:: |
public static | function | ||
FilterPluginBase:: |
public | function | 2 | |
FilterPluginBase:: |
public | function | Validate the options form. | |
FilterPluginBase:: |
protected | function | Validates a filter identifier. | |
FilterPluginBase:: |
protected | function | Perform any necessary changes to the form values prior to storage. | 1 |
FilterPluginBase:: |
protected | function | Validate the options form. | 2 |
NumericFilter:: |
protected | property |
Disable the possibility to force a single value. Overrides FilterPluginBase:: |
|
NumericFilter:: |
public | function |
Display the filter on the administrative summary. Overrides FilterPluginBase:: |
|
NumericFilter:: |
public | function |
Options form subform for exposed filter options. Overrides FilterPluginBase:: |
|
NumericFilter:: |
public | function |
Provide default options for exposed filters. Overrides FilterPluginBase:: |
|
NumericFilter:: |
protected | function | 1 | |
NumericFilter:: |
public | function |
Provide a list of all the numeric operators. Overrides FilterPluginBase:: |
|
NumericFilter:: |
public | function | ||
NumericFilter:: |
protected | function | ||
NumericFilter:: |
protected | function | Filters by a regular expression. | |
NumericFilter:: |
public | function |
Add this filter to the query. Overrides FilterPluginBase:: |
2 |