|
|
Drupal example source code file (views_handler_sort_comment_thread.inc)
The views_handler_sort_comment_thread.inc Drupal example source code<?php // $Id: views_handler_sort_comment_thread.inc,v 1.1 2008/09/03 19:21:29 merlinofchaos Exp $ /** * Sort handler for ordering by thread */ class views_handler_sort_comment_thread extends views_handler_sort { function query() { $this->ensure_my_table(); //Read comment_render() in comment.module for an explanation of the //thinking behind this sort. if ($this->options['order'] == 'DESC') { $this->query->add_orderby($this->table_alias, $this->real_field, $this->options['order']); } else { $alias = $this->table_alias . '_' . $this->real_field . 'asc'; //@todo is this secure? $this->query->add_orderby(NULL, "SUBSTRING({$this->table_alias}.{$this->real_field}, 1, (LENGTH({$this->table_alias}.{$this->real_field}) - 1))", $this->options['order'], $alias); } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_sort_comment_thread.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.