function _datex_date_views_argument_handler_simple::query in Datex 7.3
Fix the query for localized dates.
Overrides views_handler_argument_formula::query
File
- ./
datex.views.inc, line 490 - Datex views integration.
Class
- _datex_date_views_argument_handler_simple
- Copied from date_views module. So we have no hard dependency on it.
Code
function query($group_by = FALSE) {
try {
$this
->_datex();
} catch (Exception $ignore) {
}
return $this
->_query($group_by);
}