Home
last modified time | relevance | path

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

12345678910>>...26

/plugin/latexit/syntax/
H A 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;
H A 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/strata/
H A 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
[all...]
/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) {
206 $this->searchConfig->clearSort(); // remove any existing sort
207 $this->searchConfig->addSort($this->sort[
[all...]
H A DColumn.php15 * configuration) with where to find that content and adds some basic meta data (like sort or enabled)
22 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 DPublishedColumn.php13 * @param int $sort
17 public function __construct($sort, Decimal $type, $table) argument
20 Column::__construct($sort, $type, 0, true, $table);
H A DRowColumn.php13 * @param int $sort
17 public function __construct($sort, Decimal $type, $table) argument
20 Column::__construct($sort, $type, 0, true, $table);
H A DSummaryColumn.php19 * @param int $sort
23 public function __construct($sort, AutoSummary $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
H A DUserColumn.php20 * @param int $sort
24 public function __construct($sort, User $type, $table = '') argument
27 parent::__construct($sort, $type, 0, true, $table);
H A DRevisionColumn.php19 * @param int $sort
23 public function __construct($sort, DateTime $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
H A DPageColumn.php19 * @param int $sort
23 public function __construct($sort, Page $type, $table = '') argument
26 parent::__construct($sort, $type, 0, true, $table);
/plugin/filterrss/
H A 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/
H A DRealtimeDataQuery.php49 public $sort; variable in Google\\Service\\Analytics\\RealtimeDataQuery
124 public function setSort($sort) argument
126 $this->sort = $sort;
133 return $this->sort;
H A DGaDataQuery.php64 public $sort; variable in Google\\Service\\Analytics\\GaDataQuery
189 public function setSort($sort) argument
191 $this->sort = $sort;
198 return $this->sort;
H A 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/
H A Dsort.test2 "sort" filter
4 {{ array1|sort|join }}
5 {{ array2|sort|join }}
6 {{ traversable|sort|join }}
/plugin/tindexmenu/syntax/
H A 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,
673 sort($dirs);
711 $sort=false;
719 if (!$sort && $this->sort) {
730 if ($sort===false) $sort=noNS($item['id']);
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Data/
H A 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/blog/
H A Dhelper.php9 var $sort = ''; // sort key variable in helper_plugin_blog
15 // load sort key from settings
16 $this->sort = $this->getConf('sortkey');
81 if ($this->sort != 'mdate') {
94 // determine the sort key
95 if ($this->sort == 'id') $key = $id;
96 elseif ($this->sort == 'pagename') $key = noNS($id);
97 elseif ($this->sort == 'title') $key = $title;
115 // finally sort b
[all...]
/plugin/indexmenu/syntax/
H A Dindexmenu.php39 * Where to sort in?
151 //Main sort method
155 $sort = 't';
157 $sort = 'd';
159 $sort = 0;
161 //sort directories in the same way as files
163 //sort headpages up
165 //Metadata sort method
171 //reverse sort
174 if ($sort)
21 var $sort = false; global() variable in syntax_plugin_indexmenu_indexmenu
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DVlv.php73 protected $sort;
83 * @param SortingControl|SortKey|string $sort
87 public function __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, int $before = 0)
91 $this->sort = $sort instanceof SortingControl ? $sort : Controls::sort($sort);
281 $message = $this->client->sendAndReceive($this->search, $this->createVlvControl($contextId), $this->sort);
70 protected $sort; global() variable in FreeDSx\\Ldap\\Search\\Vlv
84 __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, int $before = 0) global() argument
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsort.rst1 ``sort``
4 The ``sort`` filter sorts an array:
8 {% for user in users|sort %}
/plugin/dlcounter/
H A Dsyntax.php118 $sort = $data['sort'] == '' ? 'sort' : $data['sort'];
123 if( $sort == 'sort' ) ksort($json);
124 else if( $sort == 'rsort' ) krsort($json);
129 if( $sort == 'sort' ) asort( $json );
130 else if( $sort == 'rsort' ) arsort( $json );
/plugin/toolbox/
H A DToolboxTextTools.js18 function sort(reverse) { function
27 text.sort(alphanumCase);
101 sort: sort,
/plugin/dirpictures/
H A Dsyntax.php65 $data['sort'] = "name";
72 $data['sort'] = "date";
122 sortPages::sort($new_files, $data['sort'], $data['order']);

12345678910>>...26