views_handler_field_ncs_last_updated.inc

  1. 3.x modules/comment/views_handler_field_ncs_last_updated.inc
  2. 2.x modules/comment/views_handler_field_ncs_last_updated.inc

File

modules/comment/views_handler_field_ncs_last_updated.inc
View source
  1. <?php
  2. /**
  3. * Field handler to display the newer of last comment / node updated
  4. */
  5. class views_handler_field_ncs_last_updated extends views_handler_field_date {
  6. function query() {
  7. $this->ensure_my_table();
  8. $this->node_table = $this->query->ensure_table('node', $this->relationship);
  9. $this->field_alias = $this->query->add_field(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->table_alias . ".last_comment_timestamp)", $this->table_alias . '_' . $this->field);
  10. }
  11. }