/plugin/struct/_test/mock/ |
H A D | AccessTableDataNoDB.php | 34 $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/latexit/syntax/ |
H A D | mathjax.php | 21 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 D | base.php | 22 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 D | style.css | 79 .strata-ui-sort-direction, 80 .strata-ui-eos ~ li .strata-ui-sort-direction, 85 .strata-ui-sort-direction[data-strata-sort-direction="asc"], 91 .strata-ui-sort-direction[data-strata-sort-direction="desc"], 97 /* Column sort style */ 110 .strata-container-table td[data-strata-sort="0"] { 114 .strata-container-table td[data-strata-sort="1"] { 118 .strata-container-table td[data-strata-sort="2"] { 122 /* Generic sort and filter style */ 123 .strata-ui-sort-direction { [all …]
|
/plugin/struct/meta/ |
H A D | SearchConfigParameters.php | 23 protected $sort = null; variable in dokuwiki\\plugin\\struct\\meta\\SearchConfigParameters 42 list($colname, $sort) = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT)); 43 $this->setSort($colname, $sort); 84 $this->sort = array($column, $asc); 92 $this->sort = null; 179 if ($this->sort) { 180 list($column, $asc) = $this->sort; 210 if ($this->sort) { 211 list($column, $asc) = $this->sort;
|
H A D | Column.php | 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 D | PublishedColumn.php | 13 * @param int $sort 17 public function __construct($sort, Decimal $type, $table) argument 20 Column::__construct($sort, $type, 0, true, $table);
|
H A D | RowColumn.php | 13 * @param int $sort 17 public function __construct($sort, Decimal $type, $table) argument 20 Column::__construct($sort, $type, 0, true, $table);
|
H A D | SummaryColumn.php | 19 * @param int $sort 23 public function __construct($sort, AutoSummary $type, $table = '') argument 26 parent::__construct($sort, $type, 0, true, $table);
|
H A D | UserColumn.php | 20 * @param int $sort 24 public function __construct($sort, User $type, $table = '') argument 27 parent::__construct($sort, $type, 0, true, $table);
|
H A D | RevisionColumn.php | 19 * @param int $sort 23 public function __construct($sort, DateTime $type, $table = '') argument 26 parent::__construct($sort, $type, 0, true, $table);
|
H A D | PageColumn.php | 19 * @param int $sort 23 public function __construct($sort, Page $type, $table = '') argument 26 parent::__construct($sort, $type, 0, true, $table);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/ |
H A D | RealtimeDataQuery.php | 49 public $sort; variable in Google\\Service\\Analytics\\RealtimeDataQuery 124 public function setSort($sort) argument 126 $this->sort = $sort; 133 return $this->sort;
|
H A D | GaDataQuery.php | 64 public $sort; variable in Google\\Service\\Analytics\\GaDataQuery 189 public function setSort($sort) argument 191 $this->sort = $sort; 198 return $this->sort;
|
H A D | McfDataQuery.php | 64 public $sort; variable in Google\\Service\\Analytics\\McfDataQuery 189 public function setSort($sort) argument 191 $this->sort = $sort; 198 return $this->sort;
|
/plugin/filterrss/ |
H A D | syntax.php | 48 $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/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
H A D | sort.test | 2 "sort" filter 4 {{ array1|sort|join }} 5 {{ array2|sort|join }} 6 {{ traversable|sort|join }}
|
/plugin/tindexmenu/syntax/ |
H A D | indexmenu.php | 35 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 D | Item.php | 37 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 D | helper.php | 9 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/indexmenu/syntax/ |
H A D | indexmenu.php | 21 var $sort = false; variable in syntax_plugin_indexmenu_indexmenu 127 $sort = 't'; 129 $sort = 'd'; 130 } else $sort = 0; 144 if($sort) $jsajax .= "&sort=" . $sort; 245 $sort, 891 sort($dirs); 945 $sort = false; 955 if(!$sort && $this->sort) { 966 if($sort === false) $sort = noNS($item['id']); [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/ |
H A D | Vlv.php | 70 protected $sort; variable in FreeDSx\\Ldap\\Search\\Vlv 84 …public function __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, in… argument 88 $this->sort = $sort instanceof SortingControl ? $sort : Controls::sort($sort); 276 …e = $this->client->sendAndReceive($this->search, $this->createVlvControl($contextId), $this->sort);
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | sort.rst | 1 ``sort`` 4 The ``sort`` filter sorts an array: 8 {% for user in users|sort %}
|
/plugin/dirpictures/ |
H A D | syntax.php | 65 $data['sort'] = "name"; 72 $data['sort'] = "date"; 122 sortPages::sort($new_files, $data['sort'], $data['order']);
|
/plugin/dlcounter/ |
H A D | syntax.php | 118 $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 );
|