Commit 69ce11ee authored by Jens Segers's avatar Jens Segers

Merge pull request #501 from m0lll0t/metadata-sorting

Added metadata sorting
parents 3cd44d09 f0057079
...@@ -329,12 +329,14 @@ class Builder extends QueryBuilder { ...@@ -329,12 +329,14 @@ class Builder extends QueryBuilder {
* Add an "order by" clause to the query. * Add an "order by" clause to the query.
* *
* @param string $column * @param string $column
* @param string $direction * @param mixed $direction Direction of soring or metadata sorting.
* @return Builder * @return Builder
*/ */
public function orderBy($column, $direction = 'asc') public function orderBy($column, $direction = 'asc')
{ {
$direction = (strtolower($direction) == 'asc' ? 1 : -1); if (!is_array($direction)) {
$direction = (strtolower($direction) == 'asc' ? 1 : -1);
}
if ($column == 'natural') if ($column == 'natural')
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment