function Date::__construct
Constructs a new Date instance.
Parameters
array $configuration: A configuration array containing information about the plugin instance.
string $plugin_id: The plugin_id for the plugin instance.
mixed $plugin_definition: The plugin implementation definition.
\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.
\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.
Overrides HandlerBase::__construct
1 call to Date::__construct()
- Date::__construct in core/
modules/ datetime/ src/ Plugin/ views/ argument/ Date.php - Constructs a new Date instance.
1 method overrides Date::__construct()
- Date::__construct in core/
modules/ datetime/ src/ Plugin/ views/ argument/ Date.php - Constructs a new Date instance.
File
-
core/
modules/ views/ src/ Plugin/ views/ argument/ Date.php, line 74
Class
- Date
- Argument handler for dates.
Namespace
Drupal\views\Plugin\views\argumentCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, RouteMatchInterface $route_match, DateFormatterInterface $date_formatter) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->routeMatch = $route_match;
$this->dateFormatter = $date_formatter;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.