1 entity.query.inc | public EntityFieldQuery::propertyOrderBy($column, $direction = 'ASC') |
Orders the result set by an entity-specific property.
An $entity_type must be specified by calling EntityFieldCondition::entityCondition('entity_type', $entity_type) before executing the query.
If called multiple times, the query will order by each specified column in the order this method is called.
Parameters
$column: The column on which to order.
$direction: The direction to sort. Legal values are "ASC" and "DESC".
Return value
EntityFieldQuery: The called object.
File
- core/
modules/ entity/ entity.query.inc, line 548 - Entity query API.
Class
- EntityFieldQuery
- Retrieves entities matching a given set of conditions.
Code
public function propertyOrderBy($column, $direction = 'ASC') {
$this->order[] = array(
'type' => 'property',
'specifier' => $column,
'direction' => $direction,
);
return $this;
}