|
|
Drupal example source code file (views_handler_field_ncs_last_updated.inc)
The views_handler_field_ncs_last_updated.inc Drupal example source code<?php // $Id: views_handler_field_ncs_last_updated.inc,v 1.1 2008/09/03 19:21:29 merlinofchaos Exp $ /** * Field handler to display the newer of last comment / node updated */ class views_handler_field_ncs_last_updated extends views_handler_field_date { function query() { $this->ensure_my_table(); $this->node_table = $this->query->ensure_table('node', $this->relationship); $this->field_alias = $this->query->add_field(NULL, "GREATEST(" . $this->node_table . ".changed, " . $this->table_alias . ".last_comment_timestamp)", $this->table_alias . '_' . $this->field); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_ncs_last_updated.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.