Horde_Rdo_Mapper::sortBy PHP Method

sortBy() public method

Set a default sort rule for all queries done with this Mapper.
public sortBy ( string $sort )
$sort string SQL sort fragment, such as 'updated DESC'
    public function sortBy($sort)
    {
        $this->_defaultSort = $sort;
        return $this;
    }