You are here

sheetnode_handler_field_date.inc in Sheetnode 7

Views handler for sheetnode dates.

File

views/sheetnode_handler_field_date.inc
View source
<?php

/**
 * @file
 * Views handler for sheetnode dates.
 */
class sheetnode_handler_field_date extends views_handler_field {
  function render($values) {
    module_load_include('inc', 'sheetnode', 'socialcalc');
    $value = $values->{$this->field_alias};
    return socialcalc_import_date($value);
  }

}

Classes

Namesort descending Description
sheetnode_handler_field_date @file Views handler for sheetnode dates.