You are here

function oa_date_handler_field_date::option_definition in Open Atrium Core 7.2

Override of option_definition().

Overrides views_handler_field_date::option_definition

File

modules/oa_date/views/oa_date_handler_field_date.inc, line 13
Custom date handler for Views Code came from the http://drupal.org/project/reldate module

Class

oa_date_handler_field_date
@file Custom date handler for Views Code came from the http://drupal.org/project/reldate module

Code

function option_definition() {
  $options = parent::option_definition();
  $options['oa_date'] = array(
    'default' => FALSE,
  );
  return $options;
}