Home
last modified time | relevance | path

Searched refs:array (Results 1 – 17 of 17) sorted by last modified time

/dokuwiki/inc/
H A Dpreload.php.dist16 //$config_cascade = array(
H A Dio.php63 * $data[0] The raw arguments for io_readFile as an array.
87 * @param array $data event data
145 * @param bool $array return array of lines
146 * @return string|array|bool content or false on error
151 function bzfile($file, $array = false)
156 if ($array) {
167 if ($array) {
177 if ($array) {
195 * $data[0] The raw arguments for io_saveFile as an array
137 bzfile($file, $array = false) global() argument
[all...]
H A Dcommon.php50 * @return array
162 * @return array with info for a request of $id
208 * array.
210 * @return array with info about current document
329 * Return information about the current media item as an associative array.
331 * @return array with info about current media item
349 * @param array $params array with key-value pairs
374 * @param array $params array wit
1874 valid_input_set($param, $valid_values, $array, $exc = '') global() argument
[all...]
H A DDifferenceEngine.php110 var $xchanged = array();
111 var $ychanged = array();
112 var $xv = array();
113 var $yv = array();
114 var $xind = array();
115 var $yind = array();
121 * @param array $from_lines
122 * @param array $to_lines
129 $this->xchanged = $this->ychanged = array();
130 $this->xv = $this->yv = array();
1563 _append(& $array, $lines) global() argument
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DValue.php18 // Turn all the values in the array in to new IXR_Value objects
23 if ($type === 'array') {
59 // We have an array - is it an array or a struct?
63 return 'array';
79 case 'array':
80 $return = '<array><data>' . "\n";
84 $return .= '</data></array>';
105 * Checks whether or not the supplied array is a struct or not
107 * @param array
110 isStruct($array) global() argument
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DHISTORY.md
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md99 The table formatter allows coloring full columns. To use that mechanism pass an array of colors as third parameter to
/dokuwiki/inc/Utf8/
H A DSort.php105 * @param array $array The input array.
110 public static function sort(&$array)
114 return $collator->sort($array);
116 return sort($array, SORT_NATURAL | SORT_FLAG_CASE);
124 * @param array $array The input array.
129 public static function ksort(&$array)
108 sort(& $array) global() argument
127 ksort(& $array) global() argument
146 asort(& $array) global() argument
167 asortFN(& $array) global() argument
[all...]
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md35 print_r($toc); // array of FileInfo objects
/dokuwiki/conf/
H A Dmysql.conf.php.example43 /* Multiple table operations will be protected by locks. This array tells
45 * these array must also contain these aliases. Any unnamed alias will cause
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md151 * PHP 7.4/8.0: curly brace array access deprecated & removed [#655](https://github.com/simplepie/simplepie/pull/655)
167 * PHP 7.4 support: Fixed instances of accessing array offset on null type values. [#628](https://github.com/simplepie/simplepie/pull/628)
288 * Fixed use of `DOMElement` as array. [#315](https://github.com/simplepie/simplepie/pull/315)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DLocator.php324 public function extension(&$array) argument
326 foreach ($array as $key => $value) {
340 unset($array[$key]);
347 public function body(&$array) argument
349 foreach ($array as $key => $value) {
362 unset($array[$key]);
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG915 - The $_GESHI_ERRORS array is gone, error messages are internal to the GeSHi class
947 help automate file highlighting (though the extension array at this time is quite bare)
966 - You can now specify an array of object splitters, and each
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingArray.php11 * Create an array from a string
14 * @return array
18 $array = explode(',', $string);
19 $array = array_map('trim', $array);
20 $array = array_filter($array);
21 $array = array_unique($array);
22 return $array;
30 fromArray($array) global() argument
[all...]
H A DSettingMulticheckbox.php19 // split any combined values + convert from array to comma separated string
53 // convert from comma separated list into array + combine complimentary actions
75 // remove this action from the disabledactions array
107 * convert comma separated list to an array and combine any complimentary values
110 * @return array
114 $array = explode(',', $str);
120 if (($idx[] = array_search($val, $array)) === false) break;
124 foreach ($idx as $i) unset($array[$i]);
125 $array[] = $key;
130 return $array;
[all...]
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md99 Options can be passed as associatiave array as the second parameter in `Slika::run`.
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPCollection.php55 * The raw info array from Active Directory
57 * @var array
68 * Set the raw info array from Active Directory
70 * @param array $info
72 public function setInfo(array $info)
81 * Magic get method to retrieve data from the raw array in a formatted way
95 $array = array();
98 $array[$key] = $value;
101 return $array;
[all...]