degov-8.x-2.0/modules/degov_common/src/Plugin/views/argument_default/CalendarDefault.php
modules/degov_common/src/Plugin/views/argument_default/CalendarDefault.php
<?php
namespace Drupal\degov_common\Plugin\views\argument_default;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\views\Plugin\views\argument_default\ArgumentDefaultPluginBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* Default argument plugin to use the raw value from the URL.
*
* @ingroup views_argument_default_plugins
*
* @ViewsArgumentDefault(
* id = "calendar_default",
* title = @Translation("Current month of the year (exposed excluded)")
* )
*/
class CalendarDefault extends ArgumentDefaultPluginBase {
/**
* {@inheritdoc}
*/
protected $argFormat = 'Ym';
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* The current Request object.
*
* @var \Symfony\Component\HttpFoundation\Request
*/
protected $request;
/**
* Constructs a new Date instance.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter service.
* @param \Symfony\Component\HttpFoundation\Request $request
* The current request.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, DateFormatterInterface $date_formatter, Request $request) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->dateFormatter = $date_formatter;
$this->request = $request;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$configuration,
$plugin_id,
$plugin_definition,
$container->get('date.formatter'),
$container->get('request_stack')->getCurrentRequest()
);
}
/**
* {@inheritdoc}
*/
public function getArgument() {
// Check if there is exposed filter in the query with the same name, if yes - do not apply argument.
$exposed_filter_active = FALSE;
// Check the real field name for the argument.
$argument_real_field = $this->argument->realField;
// Get exposed input.
$exposed_data = $this->view->getExposedInput();
if (!empty($exposed_data)) {
$view_filters = [];
foreach ($this->view->filter as $field => $view_filter) {
$view_filters[$field] = $field;
if (!empty($view_filter->options['expose']['identifier'])) {
$view_filters[$field] = $view_filter->options['expose']['identifier'];
}
}
// Try to find in the exposed input the field with the same real name.
foreach ($exposed_data as $key => $filter) {
$id = array_search($key, $view_filters);
if ($id && $filter != '' && !empty($this->view->filter[$id])) {
$exposed_filter = $this->view->filter[$id];
if ($exposed_filter->realField == $argument_real_field) {
$exposed_filter_active = TRUE;
break;
}
}
}
}
// If there is query parameter for the real field, don't apply default value.
if (!$exposed_filter_active) {
$request_time = $this->request->server->get('REQUEST_TIME');
return $this->dateFormatter->format($request_time, 'custom', $this->argFormat);
} else {
// Return all results for argument (exposed filters are limiting the results instead).
return $this->argument->options['exception']['value'];
}
}
}