Lines Matching refs:sort
23 protected $sort;
42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT));
43 $this->setSort($colname, $sort);
84 $this->sort = [$column, $asc];
92 $this->sort = null;
179 if ($this->sort) {
180 [$column, $asc] = $this->sort;
205 if ($this->sort) {
206 $this->searchConfig->clearSort(); // remove any existing sort
207 $this->searchConfig->addSort($this->sort[0], $this->sort[1]);