View source
<?php
namespace Drupal\views\Plugin\views\sort;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\HandlerBase;
abstract class SortPluginBase extends HandlerBase implements CacheableDependencyInterface {
public function canExpose() {
return TRUE;
}
public function query() {
$this
->ensureMyTable();
$this->query
->addOrderBy($this->tableAlias, $this->realField, $this->options['order']);
}
protected function defineOptions() {
$options = parent::defineOptions();
$options['order'] = [
'default' => 'ASC',
];
$options['exposed'] = [
'default' => FALSE,
];
$options['expose'] = [
'contains' => [
'label' => [
'default' => '',
],
'field_identifier' => [
'default' => '',
],
],
];
return $options;
}
public function adminSummary() {
if (!empty($this->options['exposed'])) {
return $this
->t('Exposed');
}
switch ($this->options['order']) {
case 'ASC':
case 'asc':
default:
return $this
->t('asc');
case 'DESC':
case 'desc':
return $this
->t('desc');
}
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
if ($this
->canExpose()) {
$this
->showExposeButton($form, $form_state);
}
$form['op_val_start'] = [
'#value' => '<div class="clearfix">',
];
$this
->showSortForm($form, $form_state);
$form['op_val_end'] = [
'#value' => '</div>',
];
if ($this
->canExpose()) {
$this
->showExposeForm($form, $form_state);
}
}
public function showExposeButton(&$form, FormStateInterface $form_state) {
$form['expose_button'] = [
'#prefix' => '<div class="views-expose clearfix">',
'#suffix' => '</div>',
'#weight' => -1000,
];
$form['expose_button']['checkbox'] = [
'#theme_wrappers' => [
'container',
],
'#attributes' => [
'class' => [
'js-only',
],
],
];
$form['expose_button']['checkbox']['checkbox'] = [
'#title' => $this
->t('Expose this sort to visitors, to allow them to change it'),
'#type' => 'checkbox',
];
if (empty($this->options['exposed'])) {
$form['expose_button']['markup'] = [
'#markup' => '<div class="description exposed-description" style="float: left; margin-right:10px">' . $this
->t('This sort is not exposed. Expose it to allow the users to change it.') . '</div>',
];
$form['expose_button']['button'] = [
'#limit_validation_errors' => [],
'#type' => 'submit',
'#value' => $this
->t('Expose sort'),
'#submit' => [
[
$this,
'displayExposedForm',
],
],
];
$form['expose_button']['checkbox']['checkbox']['#default_value'] = 0;
}
else {
$form['expose_button']['markup'] = [
'#markup' => '<div class="description exposed-description">' . $this
->t('This sort is exposed. If you hide it, users will not be able to change it.') . '</div>',
];
$form['expose_button']['button'] = [
'#limit_validation_errors' => [],
'#type' => 'submit',
'#value' => $this
->t('Hide sort'),
'#submit' => [
[
$this,
'displayExposedForm',
],
],
];
$form['expose_button']['checkbox']['checkbox']['#default_value'] = 1;
}
}
public function validateOptionsForm(&$form, FormStateInterface $form_state) {
$this
->sortValidate($form, $form_state);
if (!empty($this->options['exposed'])) {
$this
->validateExposeForm($form, $form_state);
}
}
public function submitOptionsForm(&$form, FormStateInterface $form_state) {
$form_state
->unsetValue('expose_button');
$this
->sortSubmit($form, $form_state);
if (!empty($this->options['exposed'])) {
$this
->submitExposeForm($form, $form_state);
}
}
protected function showSortForm(&$form, FormStateInterface $form_state) {
$options = $this
->sortOptions();
if (!empty($options)) {
$form['order'] = [
'#title' => $this
->t('Order', [], [
'context' => 'Sort order',
]),
'#type' => 'radios',
'#options' => $options,
'#default_value' => $this->options['order'],
];
}
}
protected function sortValidate(&$form, FormStateInterface $form_state) {
}
public function sortSubmit(&$form, FormStateInterface $form_state) {
}
protected function sortOptions() {
return [
'ASC' => $this
->t('Sort ascending'),
'DESC' => $this
->t('Sort descending'),
];
}
public function buildExposeForm(&$form, FormStateInterface $form_state) {
array_unshift($form['#pre_render'], [
static::class,
'preRenderFlattenData',
]);
$form['expose']['#flatten'] = TRUE;
$form['expose']['label'] = [
'#type' => 'textfield',
'#default_value' => $this->options['expose']['label'],
'#title' => $this
->t('Label'),
'#required' => TRUE,
'#size' => 40,
'#weight' => -1,
];
$form['expose']['field_identifier'] = [
'#type' => 'textfield',
'#default_value' => $this->options['expose']['field_identifier'],
'#title' => $this
->t('Sort field identifier'),
'#required' => TRUE,
'#size' => 40,
'#description' => $this
->t("This will appear in the URL after the ?, as value of 'sort_by' parameter, to identify this sort field. Cannot be blank. Only letters, digits and the dot ('.'), hyphen ('-'), underscore ('_'), and tilde ('~') characters are allowed."),
];
}
public function validateExposeForm($form, FormStateInterface $form_state) {
$field_identifier = $form_state
->getValue([
'options',
'expose',
'field_identifier',
]);
if (!preg_match('/^[a-zA-z][a-zA-Z0-9_~.\\-]*$/', $field_identifier)) {
$form_state
->setErrorByName('expose][field_identifier', $this
->t('This identifier has illegal characters.'));
return;
}
foreach ($this->view->display_handler
->getHandlers('sort') as $key => $handler) {
if ($handler
->canExpose() && $handler
->isExposed()) {
if ($form_state
->get('id') !== $key && isset($handler->options['expose']['field_identifier']) && $field_identifier === $handler->options['expose']['field_identifier']) {
$form_state
->setErrorByName('expose][field_identifier', $this
->t('This identifier is already used by %label sort handler.', [
'%label' => $handler
->adminLabel(TRUE),
]));
return;
}
}
}
}
public static function trustedCallbacks() {
$callbacks = parent::trustedCallbacks();
$callbacks[] = 'preRenderFlattenData';
return $callbacks;
}
public function defaultExposeOptions() {
$this->options['expose'] = [
'label' => $this->definition['title'],
'field_identifier' => $this->options['id'],
];
}
public function getCacheMaxAge() {
return Cache::PERMANENT;
}
public function getCacheContexts() {
$cache_contexts = [];
if ($this
->isExposed()) {
$cache_contexts[] = 'url.query_args:sort_by';
}
return $cache_contexts;
}
public function getCacheTags() {
return [];
}
}