00001 <?php 00007 class views_handler_sort_ncs_last_updated extends views_handler_sort_date { 00008 function query() { 00009 $this->ensure_my_table(); 00010 $this->node_table = $this->query->ensure_table('node', $this->relationship); 00011 $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); 00012 } 00013 }