Lines Matching refs:sort
12 private $sort; variable in dokuwiki\\plugin\\indexmenu\\Search
33 * @param array $sort
40 public function __construct($sort) argument
42 $this->sort = $sort['sort'];
43 $this->msort = $sort['msort'];
44 $this->rsort = $sort['rsort'];
45 $this->nsort = $sort['nsort'];
46 $this->hsort = $sort['hsort'];
233 if ($this->sort || $this->msort || $this->rsort || $this->hsort) {
673 Sort::sort($dirs);
781 $sort = false;
788 $sort = 0;
796 $sort = 1;
799 $sort = p_get_metadata($page, $this->msort);
801 if (!$sort && $this->sort) {
802 switch ($this->sort) {
804 $sort = $item['title'];
807 $sort = @filectime(wikiFN($page));
812 if ($sort === false) {
813 $sort = noNS($item['id']);
815 return $sort;