commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / views / modules / comment / views_handler_sort_ncs_last_updated.inc
1 <?php
2
3 /**
4 * @file
5 * Definition of views_handler_sort_ncs_last_updated.
6 */
7
8 /**
9 * Sort handler for the newer of last comment / node updated.
10 *
11 * @ingroup views_sort_handlers
12 */
13 class views_handler_sort_ncs_last_updated extends views_handler_sort_date {
14 function query() {
15 $this->ensure_my_table();
16 $this->node_table = $this->query->ensure_table('node', $this->relationship);
17 $this->field_alias = $this->query->add_orderby(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->table_alias . ".last_comment_timestamp)", $this->options['order'], $this->table_alias . '_' . $this->field);
18 }
19 }