|
|
Drupal example source code file (views_handler_field_last_comment_timestamp.inc)
The views_handler_field_last_comment_timestamp.inc Drupal example source code<?php // $Id: views_handler_field_last_comment_timestamp.inc,v 1.1.6.2 2010/10/16 08:36:43 dereine Exp $ class views_handler_field_last_comment_timestamp extends views_handler_field_date { function construct() { parent::construct(); $this->additional_fields['comment_count'] = 'comment_count'; } function render($values) { if (empty($this->options['empty_zero']) || $values->{$this->aliases['comment_count']}) { return parent::render($values); } else { return NULL; } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_last_comment_timestamp.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.