Home
last modified time | relevance | path

Searched refs:arr (Results 51 – 75 of 281) sorted by relevance

12345678910>>...12

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dfirst.test7 {{ arr|first }}
11 return ['arr' => new \ArrayObject([1, 2, 3, 4])]
H A Dlast.test7 {{ arr|last }}
11 return ['arr' => new \ArrayObject([1, 2, 3, 4])]
H A Dreverse.test6 {{ arr|reverse|join('') }}
11 return ['arr' => new \ArrayObject([1, 2, 3, 4])]
/plugin/fedauth/Auth/
H A DOpenID.php245 static function arrayGet($arr, $key, $fallback = null) argument
247 if (is_array($arr)) {
248 if (array_key_exists($key, $arr)) {
249 return $arr[$key];
256 gettype($arr), E_USER_WARNING);
/plugin/tagging/action/
H A Dmain.php94 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag'));
129 $data = $INPUT->arr('tagging');
222 $data = $INPUT->arr('tagging');
243 $data = $INPUT->arr('tagging');
266 $data = $INPUT->arr('tagging');
/plugin/telleveryone/
H A Dapi.php24 $arr = $sqlite->res2arr($res); variable
26 echo json_encode($arr);
/plugin/partialsearch/
H A Daction.php56 $arr= explode(' ', $event->data['query']);
57 …array_walk($arr, function(&$value) use ($surrounding) { $value = $surrounding . trim($value, WILDC…
58 $event->data['query']= implode(' ', $arr);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DMyanmar.php526 public static function bubble_sort(&$arr, $start, $len) argument
534 if ($arr[$j]['myanmar_position'] > $arr[$j + 1]['myanmar_position']) {
535 $t = $arr[$j];
536 $arr[$j] = $arr[$j + 1];
537 $arr[$j + 1] = $t;
/plugin/authucenter/lib/uc_client/lib/
H A Ddb.class.php77 $arr = array();
80 $id ? $arr[$data[$id]] = $data : $arr[] = $data;
82 return $arr;
H A Ddbi.class.php66 $arr = array();
69 $id ? $arr[$data[$id]] = $data : $arr[] = $data;
71 return $arr;
/plugin/pycode/
H A Daction.php58 * @param (arr) $param data passed when this handler was registered
90 * @param (arr) $param data passed when this handler was registered
122 * @param (arr) $param data passed when this handler was registered
226 * @param (arr) $param data passed when this handler was registered
/plugin/fedauth/Auth/Yadis/
H A DXRDS.php58 function Auth_Yadis_array_scramble($arr) argument
62 while (count($arr)) {
63 $index = array_rand($arr, 1);
64 $result[] = $arr[$index];
65 unset($arr[$index]);
/plugin/clacks/
H A Daction.php28 $arr = explode('\n', $this->oh);
29 $this->oh= $arr[0];
/plugin/authucenter/
H A Dauth.php435 private function _convert_charset_all($arr, $out = 1){ argument
437 if(is_array($arr)){
438 foreach($arr as $k=>$v){
439 $arr[$k] = $this->_convert_charset_all($v, $out);
442 $arr = $this->_convert_charset($arr, $out);
445 return $arr;
/plugin/dwcommits/
H A Dsyntax.php172 list($arr,$q) = $this->helper->select_all($result);
173 if($arr) {
175 $this->output .= $this->helper->format_result_table($arr,$result);
/plugin/photogallery/
H A Dadmin.php70 $arr = array ('exec','system','shell_exec','passthru');
73 if (array_search($info[$i],$arr) === false){
78 $ok = (count($info) < count($arr));
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php11 $arr = array(
19 $elem->setParts($arr);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php11 $arr = [
19 $elem->setParts($arr);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php11 $arr = array(
19 $elem->setParts($arr);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/
H A DCompoundTest.php11 $arr = array(
19 $elem->setParts($arr);
/plugin/amcharts/assets/amcharts/plugins/responsive/
H A Dresponsive.js1023 var findArrayObjectById = function( arr, id ) { argument
1024 for ( var i = 0; i < arr.length; i++ ) {
1025 if ( isObject( arr[ i ] ) && arr[ i ].id === id )
1026 return arr[ i ];
/plugin/qc/action/
H A Dcron.php87 protected function isOk($arr)
89 return count(array_filter((array)$arr)) == 0;
85 isOk($arr) global() argument
/plugin/mantis/lib/
H A Dclass.soap_transport_http.php846 $arr = explode(':',$header_line, 2);
847 if(count($arr) > 1){
848 $header_name = strtolower(trim($arr[0]));
852 $cookie = $this->parseCookie(trim($arr[1]));
1024 $arr = explode(':',$header_line,2);
1025 if(count($arr) > 1){
1026 $header_name = strtolower(trim($arr[0]));
1030 $cookie = $this->parseCookie(trim($arr[1]));
1047 $http_version = $arr[0];
1048 $http_status = intval($arr[1]);
[all …]
/plugin/davcal/
H A Dhelper.php508 $arr = $sqlite->res2arr($res);
509 foreach($arr as $row)
566 return $arr;
1036 foreach($arr as $row)
1188 return $arr;
1232 return $arr;
1254 return $arr;
1845 $arr = $sqlite->res2arr($res);
1848 foreach($arr as $row)
1934 foreach($arr as $row)
[all …]
/plugin/groupmatrix/syntax/
H A Dtable.php193 $arr = [];
198 $arr[] = trim($value);
200 return $arr;

12345678910>>...12