Home
last modified time | relevance | path

Searched refs:sort (Results 51 – 75 of 635) sorted by relevance

12345678910>>...26

/plugin/struct/meta/
H A DQueryBuilder.php138 * @param string $sort a single sorting condition
140 public function addOrderBy($sort) argument
142 $this->orderby[] = $sort;
/plugin/semanticdata/syntax/
H A Dtable.php118 $sort = $column['key'];
119 if(substr($sort,0,1) == '^'){
120 $data['sort'] = array(substr($sort,1),'DESC');
122 $data['sort'] = array($sort,'ASC');
204 sort($values);
/plugin/structat/meta/
H A DSearchConfigAt.php169 foreach($this->sortby as $sort) {
170 list($col, $asc, $nc) = $sort;
174 $col->getType()->sort($QB, 'data_' . $col->getTable(), $colname, $asc ? 'ASC' : 'DESC');
/plugin/structjoin/types/
H A DJoin.php178 public function sort(QueryBuilder $QB, $tablealias, $colname, $order) { function in dokuwiki\\plugin\\structjoin\\types\\Join
182 AbstractBaseType::sort($QB, $tablealias, $colname, $order);
191 $column->getType()->sort($QB, $rightalias, $field, $order);
/plugin/tablelayout/
H A Dstyle.less126 background-image: url('images/sort.svg');
130 background-image: url('images/sort-ascending.svg');
134 background-image: url('images/sort-descending.svg');
/plugin/publist/
H A DTODO29 * Configurable global defaults: sort order, sort field, ...
/plugin/publistf/
H A DTODO29 * Configurable global defaults: sort order, sort field, ...
/plugin/publistx/
H A DTODO29 * Configurable global defaults: sort order, sort field, ...
/plugin/htmlok/
H A DBaseSyntaxPlugin.php22 protected $sort; variable in dokuwiki\\plugin\\htmlok\\BaseSyntaxPlugin
42 return $this->sort;
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DArrayComparator.php45 sort($expected);
46 sort($actual);
/plugin/dataloop/syntax/
H A Droll.php134 list($sort) = $this->dthlp->_column($line[1]);
135 if(substr($sort,0,1) == '^'){
136 $data['sort'] = array(substr($sort,1),'DESC');
138 $data['sort'] = array($sort,'ASC');
H A Dtextloop.php143 list($sort) = $this->dthlp->_column($line[1]);
144 if(substr($sort,0,1) == '^'){
145 $data['sort'] = array(substr($sort,1),'DESC');
147 $data['sort'] = array($sort,'ASC');
H A Dloop.php143 list($sort) = $this->dthlp->_column($line[1]);
144 if(substr($sort,0,1) == '^'){
145 $data['sort'] = array(substr($sort,1),'DESC');
147 $data['sort'] = array($sort,'ASC');
/plugin/indexmenu2/cms/extensions/dom/
H A Dselectbox.js13sort=function(){O=O.sort();this.updateOptions();};this.getValue=function(){return o.value};this.ge… method in Selectbox
/plugin/tag/
H A Dhelper.php21 * @var string sort key: 'cdate', 'mdate', 'pagename', 'id', 'ns', 'title'
23 protected $sort; variable in helper_plugin_tag
25 * @var string sort order 'ascending' or 'descending'
44 $this->sort = $this->getConf('sortkey');
123 $this->sort = trim($newflags['sortkey']);
275 $date = ($this->sort == 'mdate' ? $meta['date']['modified'] : $meta['date']['created'] );
278 // determine the sort key
279 switch($this->sort) {
325 // finally sort by sort ke
[all...]
/plugin/tag/syntax/
H A Dtopic.php81 /* extract sort flags into array */
116 $pagelist->sort = false;
131 if($pagelist->sort || $pagelist->rsort) {
136 // rsort is true - revserse sort the pages
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DQuery.php56 * sort?: TSortArgs,
164 * Sets sort arguments for the query
170 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-sort.html
174 return $this->setParam('sort', $sortArgs);
178 * Adds a sort param to the query.
180 * @param mixed $sort Sort parameter
181 * @phpstan-param TSortArg $sort
183 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-sort.html argument
185 public function addSort($sort): self
187 return $this->addParam('sort',
[all...]
/plugin/pagelist/
H A Dhelper.php53 public $sort = false;
55 * @var bool Reverses the sort
107 $this->sort = $this->getConf('sort'); //on-off
111 $this->sort = true;
244 * for sorting: 'sort', 'rsort', 'nosort', 'sortby=<columnname>'
279 case 'sort':
280 $this->sort = true; //sort by pageid
284 $this->sort
46 public $sort = false; global() variable in helper_plugin_pagelist
[all...]
/plugin/fedauth/Auth/Yadis/
H A DXRDS.php153 sort($keys);
398 sort($pri_keys, SORT_NUMERIC);
468 sort($pri_keys, SORT_NUMERIC);
/plugin/tagadd/
H A Daction.php91 sort($chked_tags);
165 sort($siteTags);
166 sort($nsTags);
/plugin/openid/Auth/Yadis/
H A DXRDS.php153 sort($keys);
413 sort($pri_keys, SORT_NUMERIC);
485 sort($pri_keys, SORT_NUMERIC);
/plugin/htmlok/syntax/
H A Dhtmlok.php15 protected $sort = 190; variable in syntax_plugin_htmlok_htmlok
H A Dphpok.php15 protected $sort = 180; variable in syntax_plugin_htmlok_phpok
H A Dhtmlblock.php15 protected $sort = 190; variable in syntax_plugin_htmlok_htmlblock
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D506844befdc5691d835771bcbb1c1a60.asciidoc12 'sort' => [

12345678910>>...26