Home
last modified time | relevance | path

Searched refs:sort (Results 1 – 25 of 769) sorted by relevance

12345678910>>...31

/plugin/indexmenu/
Dscript.js256sort: options.sort.sort ? options.sort.sort : 0, //'t', 'd', false TODO is false handled correctly? property
257 …msort: options.sort.msort ? options.sort.msort : 0, //'indexmenu_n', or metadata 'key subkey' TODO…
258 rsort: options.sort.rsort ? 1 : 0,
259 nsort: options.sort.nsort ? 1 : 0,
260 hsort: options.sort.hsort ? 1 : 0,
284 sort: options.sort.sort ? options.sort.sort : 0, property
285 msort: options.sort.msort ? options.sort.msort : 0,
286 rsort: options.sort.rsort ? 1 : 0,
287 nsort: options.sort.nsort ? 1 : 0,
288 hsort: options.sort.hsort ? 1 : 0,
DSearch.php12 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);
[all …]
Daction.php287 $sort = [
297 $search = new Search($sort);
345 sort($themes);
474 $sort['sort'] = $INPUT->str('sort', '', true);
475 $sort['msort'] = $INPUT->str('msort', '', true);
476 $sort['rsort'] = $INPUT->bool('rsort', false, true);
477 $sort['nsort'] = $INPUT->bool('nsort', false, true);
478 $sort['hsort'] = $INPUT->bool('hsort', false, true);
479 $search = new Search($sort);
513 if ($sort['sort'] || $sort['msort'] || $sort['rsort'] || $sort['hsort']) {
/plugin/struct/_test/mock/
H A DAccessTableDataNoDB.php34 $sort = 0;
36 $sort += 1;
37 $this->schema->columns[] = new Column($sort, new $single(), $sort);
40 $sort += 1;
41 $this->schema->columns[] = new Column($sort, new $multi(null, null, true), $sort);
/plugin/strata/
Dstyle.css79 .strata-ui-sort-direction,
80 .strata-ui-eos ~ li .strata-ui-sort-direction,
85 .strata-ui-sort-direction[data-strata-sort-direction="asc"],
86 .strata-container-table .sorting[data-strata-sort-direction="asc"],
87 .strata-container-table:hover .sorting[data-strata-sort-direction="asc"] {
91 .strata-ui-sort-direction[data-strata-sort-direction="desc"],
92 .strata-container-table .sorting[data-strata-sort-direction="desc"],
93 .strata-container-table:hover .sorting[data-strata-sort-direction="desc"] {
97 /* Column sort style */
110 .strata-container-table td[data-strata-sort="0"] {
[all …]
/plugin/latexit/syntax/
Dmathjax.php21 protected $sort; variable in syntax_plugin_latexit_mathjax
60 if (!isset($this->sort)) {
63 return $this->sort;
69 * @param int $sort Sort order.
71 public function _setSort($sort) { argument
72 $this->sort = $sort;
Dbase.php22 protected $sort; variable in syntax_plugin_latexit_base
35 if (!isset($this->sort)) {
38 return $this->sort;
147 * @param int $sort Sort order.
149 public function _setSort($sort) { argument
150 $this->sort = $sort;
/plugin/struct/meta/
H A DSearchConfigParameters.php23 protected $sort; variable in dokuwiki\\plugin\\struct\\meta\\SearchConfigParameters
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) {
207 $this->searchConfig->addSort($this->sort[0], $this->sort[1]);
H A DColumn.php22 protected $sort; variable in dokuwiki\\plugin\\struct\\meta\\Column
34 * @param int $sort
40 …public function __construct($sort, AbstractBaseType $type, $colref = 0, $enabled = true, $table = … argument
42 $this->sort = (int)$sort;
54 return $this->sort;
H A DNestedValue.php88 * @param bool $sort should children be sorted alphabetically?
91 public function getChildren($sort = false) argument
95 if ($sort) {
177 * @param bool $sort use sorted children?
180 public function dump($sort = true) argument
204 foreach ($this->getChildren($sort) as $child) {
/plugin/asciidocjs/node_modules/core-js/modules/
Des6.array.sort.js6 var $sort = [].sort;
11 test.sort(undefined);
14 test.sort(null);
18 sort: function sort(comparefn) {
/plugin/asciidocjs/node_modules/core-js/library/modules/
Des6.array.sort.js6 var $sort = [].sort;
11 test.sort(undefined);
14 test.sort(null);
18 sort: function sort(comparefn) {
/plugin/filterrss/
Dsyntax.php48 $sort = trim($query[1]);
50 $sort = str_ireplace('asc', '', $sort);
53 if(stripos($sort, 'desc') !== false)
55 $sort = str_ireplace('desc', '', $sort);
63 if(preg_match($limit_reg, $sort, $matches) )
66 $sort = preg_replace($limit_reg, '', $sort);
69 $order_by = trim($sort);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
DRealtimeDataQuery.php49 public $sort; variable in Google\\Service\\Analytics\\RealtimeDataQuery
124 public function setSort($sort) argument
126 $this->sort = $sort;
133 return $this->sort;
DGaDataQuery.php64 public $sort; variable in Google\\Service\\Analytics\\GaDataQuery
189 public function setSort($sort) argument
191 $this->sort = $sort;
198 return $this->sort;
DMcfDataQuery.php64 public $sort; variable in Google\\Service\\Analytics\\McfDataQuery
189 public function setSort($sort) argument
191 $this->sort = $sort;
198 return $this->sort;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
Dsort.test2 "sort" filter
4 {{ array1|sort|join }}
5 {{ array2|sort|join }}
6 {{ traversable|sort|join }}
/plugin/tindexmenu/syntax/
Dindexmenu.php35 var $sort=false; variable in syntax_plugin_indexmenu_indexmenu
134 $sort='t';
136 $sort='d';
137 } else $sort=0;
165 if ($sort) $jsajax .= "&sort=".$sort;
176 $sort,
258 $this->sort = $myns[2];
267 if ($this->sort || $this->msort || $this->rsort) {
673 sort($dirs);
711 $sort=false;
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Data/
DItem.php37 protected $sort; variable in FINDOLOGIC\\Export\\Data\\Item
64 $this->sort = new Sort();
195 return $this->sort;
198 public function setSort(Sort $sort) argument
200 $this->sort = $sort;
203 public function addSort($sort, $usergroup = '') argument
205 $this->sort->setValue($sort, $usergroup);
/plugin/cachestats/
H A Dcli.php30 $sort = $options->getOpt('sort', 'size');
31 if (!in_array($sort, ['count', 'size', 'dups'])) {
32 $this->error("Invalid sort option '$sort'. Allowed are: count, size, dups.");
60 uasort($result, function ($a, $b) use ($sort) {
61 return $b[$sort] <=> $a[$sort];
/plugin/simplenavi/
Dsyntax.php22 protected string $sort; variable in syntax_plugin_simplenavi
107 string $sort, argument
116 $this->sort = $sort;
136 switch ($this->sort) {
138 $tree->sort(TreeSort::SORT_BY_ID);
141 $tree->sort(TreeSort::SORT_BY_TITLE);
144 $tree->sort(TreeSort::SORT_BY_NS_FIRST_THEN_ID);
147 $tree->sort(TreeSort::SORT_BY_NS_FIRST_THEN_TITLE);
/plugin/blog/
Dhelper.php9 var $sort = ''; // sort key variable in helper_plugin_blog
16 $this->sort = $this->getConf('sortkey');
81 if ($this->sort != 'mdate') {
95 if ($this->sort == 'id') $key = $id;
96 elseif ($this->sort == 'pagename') $key = noNS($id);
97 elseif ($this->sort == 'title') $key = $title;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DVlv.php73 protected $sort; variable in FreeDSx\\Ldap\\Search\\Vlv
83 * @param SortingControl|SortKey|string $sort
87 …public function __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, in… argument
91 $this->sort = $sort instanceof SortingControl ? $sort : Controls::sort($sort);
281 …e = $this->client->sendAndReceive($this->search, $this->createVlvControl($contextId), $this->sort);
/plugin/gallery/classes/
DOptions.php35 public $sort = self::SORT_FILE; variable in dokuwiki\\plugin\\gallery\\classes\\Options
53 $this->sort = $plugin->getConf('sort');
70 $this->sort = self::SORT_TITLE;
72 $this->sort = self::SORT_CTIME;
74 $this->sort = self::SORT_MTIME;
76 $this->sort = self::SORT_RANDOM;
/plugin/dlcounter/
Dadmin.php81 $sort = $data['sort'];
86 if( $sort == 'sort' ){
89 else if( $sort == 'rsort' ){
94 if( $sort == 'sort' ) asort( $json );
95 else if( $sort == 'rsort' ) arsort( $json );

12345678910>>...31