Skip to content
SortPluginBase.php 7.42 KiB
Newer Older
Earl Miles's avatar
Earl Miles committed
<?php

/**
 * @file
 * Contains \Drupal\views\Plugin\views\sort\SortPluginBase.
namespace Drupal\views\Plugin\views\sort;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableDependencyInterface;
Earl Miles's avatar
Earl Miles committed
/**
 * @defgroup views_sort_handlers Views sort handler plugins
Earl Miles's avatar
Earl Miles committed
 * @{
 * Sort handlers extend \Drupal\views\Plugin\views\sort:SortPluginBase. They
 * must be annotated with \Drupal\views\Annotation\ViewsSort annotation, and
 * they must be in plugin directory Plugin\views\sort.
 *
 * @ingroup views_plugins
 * @see plugin_api
Earl Miles's avatar
Earl Miles committed
 */

/**
 * Base sort handler that has no options and performs a simple sort.
 */
abstract class SortPluginBase extends HandlerBase implements CacheableDependencyInterface {
Earl Miles's avatar
Earl Miles committed

  /**
   * Determine if a sort can be exposed.
   */
  public function canExpose() { return TRUE; }
Earl Miles's avatar
Earl Miles committed

  /**
   * Called to add the sort to a query.
   */
Earl Miles's avatar
Earl Miles committed
    // Add the field.
    $this->query->addOrderBy($this->tableAlias, $this->realField, $this->options['order']);
  protected function defineOptions() {
    $options = parent::defineOptions();
Earl Miles's avatar
Earl Miles committed

    $options['order'] = array('default' => 'ASC');
    $options['exposed'] = array('default' => FALSE);
Earl Miles's avatar
Earl Miles committed
    $options['expose'] = array(
      'contains' => array(
Earl Miles's avatar
Earl Miles committed
      ),
    );
    return $options;
  }

  /**
   * Display whether or not the sort order is ascending or descending
   */
Earl Miles's avatar
Earl Miles committed
    if (!empty($this->options['exposed'])) {
Earl Miles's avatar
Earl Miles committed
    }
    switch ($this->options['order']) {
      case 'ASC':
      case 'asc':
      default:
Earl Miles's avatar
Earl Miles committed
        break;
      case 'DESC';
      case 'desc';
Earl Miles's avatar
Earl Miles committed
        break;
    }
  }

  /**
   * Basic options for all sort criteria
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    parent::buildOptionsForm($form, $form_state);
    if ($this->canExpose()) {
      $this->showExposeButton($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    }
    $form['op_val_start'] = array('#value' => '<div class="clearfix">');
    $this->showSortForm($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    $form['op_val_end'] = array('#value' => '</div>');
    if ($this->canExpose()) {
      $this->showExposeForm($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    }
  }

  /**
   * Shortcut to display the expose/hide button.
   */
  public function showExposeButton(&$form, FormStateInterface $form_state) {
Earl Miles's avatar
Earl Miles committed
    $form['expose_button'] = array(
      '#prefix' => '<div class="views-expose clearfix">',
      '#suffix' => '</div>',
      // Should always come first
      '#weight' => -1000,
    );

    // Add a checkbox for JS users, which will have behavior attached to it
    // so it can replace the button.
    $form['expose_button']['checkbox'] = array(
      '#theme_wrappers' => array('container'),
      '#attributes' => array('class' => array('js-only')),
    );
    $form['expose_button']['checkbox']['checkbox'] = array(
      '#title' => $this->t('Expose this sort to visitors, to allow them to change it'),
Earl Miles's avatar
Earl Miles committed
      '#type' => 'checkbox',
    );

    // Then add the button itself.
    if (empty($this->options['exposed'])) {
      $form['expose_button']['markup'] = array(
        '#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>',
Earl Miles's avatar
Earl Miles committed
      );
      $form['expose_button']['button'] = array(
        '#limit_validation_errors' => array(),
        '#type' => 'submit',
        '#value' => $this->t('Expose sort'),
        '#submit' => array(array($this, 'displayExposedForm')),
        '#attributes' => array('class' => array('use-ajax-submit')),
Earl Miles's avatar
Earl Miles committed
      );
      $form['expose_button']['checkbox']['checkbox']['#default_value'] = 0;
    }
    else {
      $form['expose_button']['markup'] = array(
        '#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>',
Earl Miles's avatar
Earl Miles committed
      );
      $form['expose_button']['button'] = array(
        '#limit_validation_errors' => array(),
        '#type' => 'submit',
        '#value' => $this->t('Hide sort'),
        '#submit' => array(array($this, 'displayExposedForm')),
        '#attributes' => array('class' => array('use-ajax-submit')),
Earl Miles's avatar
Earl Miles committed
      );
      $form['expose_button']['checkbox']['checkbox']['#default_value'] = 1;
    }
  }

  /**
   * Simple validate handler
   */
  public function validateOptionsForm(&$form, FormStateInterface $form_state) {
    $this->sortValidate($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    if (!empty($this->options['exposed'])) {
      $this->validateExposeForm($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    }

  }

  /**
   * Simple submit handler
   */
  public function submitOptionsForm(&$form, FormStateInterface $form_state) {
    // Do not store this values.
    $form_state->unsetValue('expose_button');

    $this->sortSubmit($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    if (!empty($this->options['exposed'])) {
      $this->submitExposeForm($form, $form_state);
Earl Miles's avatar
Earl Miles committed
    }
  }

  /**
   * Shortcut to display the value form.
   */
  protected function showSortForm(&$form, FormStateInterface $form_state) {
Earl Miles's avatar
Earl Miles committed
    if (!empty($options)) {
      $form['order'] = array(
Earl Miles's avatar
Earl Miles committed
        '#type' => 'radios',
        '#options' => $options,
        '#default_value' => $this->options['order'],
      );
    }
  }

  protected function sortValidate(&$form, FormStateInterface $form_state) { }
  public function sortSubmit(&$form, FormStateInterface $form_state) { }
Earl Miles's avatar
Earl Miles committed

  /**
   * Provide a list of options for the default sort form.
   * Should be overridden by classes that don't override sort_form
   */
Earl Miles's avatar
Earl Miles committed
    return array(
      'ASC' => $this->t('Sort ascending'),
      'DESC' => $this->t('Sort descending'),
  public function buildExposeForm(&$form, FormStateInterface $form_state) {
Earl Miles's avatar
Earl Miles committed
    // #flatten will move everything from $form['expose'][$key] to $form[$key]
    // prior to rendering. That's why the preRender for it needs to run first,
    // so that when the next preRender (the one for fieldsets) runs, it gets
Earl Miles's avatar
Earl Miles committed
    // the flattened data.
    array_unshift($form['#pre_render'], array(get_class($this), 'preRenderFlattenData'));
Earl Miles's avatar
Earl Miles committed
    $form['expose']['#flatten'] = TRUE;

    $form['expose']['label'] = array(
      '#type' => 'textfield',
      '#default_value' => $this->options['expose']['label'],
Earl Miles's avatar
Earl Miles committed
      '#required' => TRUE,
      '#size' => 40,
      '#weight' => -1,
   );
  }

  /**
   * Provide default options for exposed sorts.
   */
  public function defaultExposeOptions() {
Earl Miles's avatar
Earl Miles committed
    $this->options['expose'] = array(
      'label' => $this->definition['title'],
    );
  }
  public function getCacheMaxAge() {
    // The result of a sort does not depend on outside information, so by
    // default it is cacheable.
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    $cache_contexts = [];
    // Exposed sorts use GET parameters, so it depends on the current URL.
    if ($this->isExposed()) {
      $cache_contexts[] = 'url.query_args:sort_by';
  /**
   * {@inheritdoc}
   */
  public function getCacheTags() {
    return [];
  }