class DayDate in Drupal 10
Same name in this branch
- 10 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate
- 10 core/modules/datetime/src/Plugin/views/argument/DayDate.php \Drupal\datetime\Plugin\views\argument\DayDate
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate
- 9 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate
Argument handler for a day (DD)
Plugin annotation
@ViewsArgument("date_day");
Hierarchy
- class \Drupal\views\Plugin\views\argument\Formula extends \Drupal\views\Plugin\views\argument\ArgumentPluginBase
- class \Drupal\views\Plugin\views\argument\Date implements ContainerFactoryPluginInterface
- class \Drupal\views\Plugin\views\argument\DayDate
- class \Drupal\views\Plugin\views\argument\Date implements ContainerFactoryPluginInterface
Expanded class hierarchy of DayDate
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ DayDate.php, line 10
Namespace
Drupal\views\Plugin\views\argumentView source
class DayDate extends Date {
/**
* {@inheritdoc}
*/
protected $format = 'j';
/**
* {@inheritdoc}
*/
protected $argFormat = 'd';
/**
* {@inheritdoc}
*/
public function summaryName($data) {
$day = str_pad($data->{$this->name_alias}, 2, '0', STR_PAD_LEFT);
// strtotime respects server timezone, so we need to set the time fixed as utc time
return $this->dateFormatter
->format(strtotime("2005" . "05" . $day . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}
/**
* {@inheritdoc}
*/
public function title() {
$day = str_pad($this->argument, 2, '0', STR_PAD_LEFT);
return $this->dateFormatter
->format(strtotime("2005" . "05" . $day . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}
public function summaryArgument($data) {
// Make sure the argument contains leading zeroes.
return str_pad($data->{$this->base_alias}, 2, '0', STR_PAD_LEFT);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Date:: |
protected | property | The date formatter service. | |
Date:: |
public | property | ||
Date:: |
protected | property | The route match. | |
Date:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
Date:: |
public | function | Add an option to set the default value to the current date. | |
Date:: |
public | function | Set the empty argument value to the current date, formatted appropriately for this argument. | |
Date:: |
public | function |
Overrides Formula:: |
|
Date:: |
public | function | ||
Date:: |
public | function | Constructs a new Date instance. | 1 |
DayDate:: |
protected | property |
The date format used in the query. Overrides Date:: |
|
DayDate:: |
protected | property |
The date format used in the title. Overrides Date:: |
|
DayDate:: |
public | function | ||
DayDate:: |
public | function | ||
DayDate:: |
public | function | ||
Formula:: |
public | property | ||
Formula:: |
public | function | ||
Formula:: |
public | function | Build the query based upon the formula. | |
Formula:: |
protected | function | Build the summary query based on a formula. |