You are here

function efq_views_handler_sort_property::query in EntityFieldQuery Views Backend 7

Called to add the sort to a query.

Overrides views_handler_sort::query

File

handlers/efq_views_handler_sort_property.inc, line 8

Class

efq_views_handler_sort_property
Sort handler for entity properties.

Code

function query() {
  $this->query->query
    ->propertyOrderBy($this->real_field, $this->options['order']);
}