|
|
Drupal example source code file (views_handler_sort_random.inc)
The views_handler_sort_random.inc Drupal example source code<?php // $Id: views_handler_sort_random.inc,v 1.1.6.1 2009/11/02 22:01:25 merlinofchaos Exp $ /** * Handle a random sort. */ class views_handler_sort_random extends views_handler_sort { function query() { switch (db_driver()) { case 'mysql': case 'mysqli': $formula = 'RAND()'; break; case 'pgsql': $formula = 'RANDOM()'; break; } if (!empty($formula)) { $this->query->add_orderby(NULL, $formula, $this->options['order'], '_' . $this->field); } } function options_form(&$form, &$form_state) { parent::options_form($form, $form_state); $form['order']['#access'] = FALSE; } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_sort_random.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.