Random.php

Same filename in this branch
  1. 11.x core/tests/Drupal/TestTools/Random.php
  2. 11.x core/lib/Drupal/Component/Utility/Random.php
Same filename and directory in other branches
  1. 9 core/modules/views/src/Plugin/views/sort/Random.php
  2. 9 core/lib/Drupal/Component/Utility/Random.php
  3. 8.9.x core/modules/views/src/Plugin/views/sort/Random.php
  4. 8.9.x core/lib/Drupal/Component/Utility/Random.php
  5. 10 core/modules/views/src/Plugin/views/sort/Random.php
  6. 10 core/tests/Drupal/TestTools/Random.php
  7. 10 core/lib/Drupal/Component/Utility/Random.php

Namespace

Drupal\views\Plugin\views\sort

File

core/modules/views/src/Plugin/views/sort/Random.php

View source
<?php

namespace Drupal\views\Plugin\views\sort;

use Drupal\Core\Cache\CacheableDependencyInterface;
use Drupal\Core\Cache\UncacheableDependencyTrait;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Attribute\ViewsSort;

/**
 * Handle a random sort.
 */
class Random extends SortPluginBase implements CacheableDependencyInterface {
  use UncacheableDependencyTrait;
  
  /**
   * {@inheritdoc}
   */
  public function usesGroupBy() {
    return FALSE;
  }
  
  /**
   * {@inheritdoc}
   */
  public function query() {
    $this->query
      ->addOrderBy('rand');
  }
  
  /**
   * {@inheritdoc}
   */
  public function buildOptionsForm(&$form, FormStateInterface $form_state) {
    parent::buildOptionsForm($form, $form_state);
    $form['order']['#access'] = FALSE;
  }

}

Classes

Title Deprecated Summary
Random Handle a random sort.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.