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