function views_handler_sort_date_minute in Views (for Drupal 7) 5
File
- ./
views.module, line 1718
Code
function views_handler_sort_date_minute($op, &$query, $sortinfo, $sort) {
$field = "DATE_FORMAT(FROM_UNIXTIME({$table}.{$sortinfo['field']}), '%Y%m%%d%H%m')";
$query
->add_orderby(NULL, $field, $sort['sortorder']);
}