class field_timer_county_date in Field Timer 7.2
Class for field_timer_text formatter and date field type.
Hierarchy
- class \field_timer_formatter_base implements field_timer_formatter_interface
- class \field_timer_formatter_js_base
- class \field_timer_county_base
- class \field_timer_formatter_js_base
Expanded class hierarchy of field_timer_county_date
File
- includes/
field_timer_county.inc, line 500 - Help file. Contains help classes to perform field_timer_county formatter related actions.
View source
class field_timer_county_date extends field_timer_county_date_field_base {
/**
* @inheritdoc
*/
public function getFieldType() {
return 'date';
}
/**
* @inheritdoc
*/
protected function getTimestamp($item, $field, $key = 'value') {
$timezone_db = date_get_timezone_db($field['settings']['tz_handling']);
$db_format = date_type_format($field['type']);
$date = new DateObject($item[$key], $timezone_db, $db_format);
return $date
->getTimestamp();
}
}