commerce_reports_handler_field_timestamp_ccyymm.inc in Commerce Reporting 7.2
File
includes/views/commerce_reports_handler_field_timestamp_ccyymm.inc
View source
<?php
class commerce_reports_handler_field_timestamp_ccyymm extends views_handler_field {
function query() {
$this
->ensure_my_table();
$params = $this->options['group_type'] != 'group' ? array(
'function' => $this->options['group_type'],
) : array();
$field_name = views_date_sql_format('Y-m', $this->table_alias . '.' . $this->real_field);
$alias = sprintf("%s_%s_timestamp_ccyymm", $this->table_alias, $this->real_field);
$this->field_alias = $this->query
->add_field(NULL, $field_name, $alias, $params);
$this->query
->add_groupby($alias);
$this
->add_additional_fields();
}
}