/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"], 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 D | SearchConfigParameters.php | 23 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 D | Column.php | 15 * 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 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/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/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/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 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 D | indexmenu.php | 39 * 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 D | Vlv.php | 73 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 D | sort.rst | 1 ``sort`` 4 The ``sort`` filter sorts an array: 8 {% for user in users|sort %}
|
/plugin/dlcounter/ |
H A D | syntax.php | 29 * Where to sort in? 57 'sort' => 'none', 70 if( $item == 'sort' ) $data['sort'] = $item; 71 else if( $item == 'rsort' ) $data['sort'] = $item; 118 $sort = $data['sort'] == '' ? 'sort' : $data['sort']; 123 if( $sort [all...] |
/plugin/toolbox/ |
H A D | ToolboxTextTools.js | 18 function sort(reverse) { function 27 text.sort(alphanumCase); 101 sort: 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']);
|