Home
last modified time | relevance | path

Searched refs:arr (Results 76 – 100 of 281) sorted by relevance

12345678910>>...12

/plugin/farmsync/
H A Dadmin.php92 $targets = array_keys($INPUT->arr('farmsync-animals'));
93 $options = $INPUT->arr('farmsync');
97 $struct = array_keys($INPUT->arr('farmsync_struct'));
/plugin/authucenter/lib/uc_client/model/
H A Ddomain.php44 function delete_domain($arr) { argument
45 $domainids = $this->base->implode($arr);
H A Dtag.php27 $arr = $this->db->fetch_all("SELECT * FROM ".UC_DBTABLEPRE."tags WHERE tagname='$tagname'");
28 return $arr;
/plugin/dlcounter/
H A Dsyntax.php153 function dlcounter_switchKeys( $arr, $back2Front ){ argument
154 $keys = array_keys( $arr );
159 return array_combine( $keys, $arr );
/plugin/adhoctags/
H A Dhelper.php182 $arr = explode('-', $attr['lang']);
185 $rtl = in_array($arr[0], self::$rtllangs);
188 $rtl = ($rtl xor (bool) array_intersect( $rtl ? self::$ltrscripts : self::$rtlscripts, $arr));
/plugin/prosemirror/action/
H A Dajax.php54 foreach ($INPUT->arr('actions') as $action) {
71 $attrs = $INPUT->arr('attrs');
87 $image = $INPUT->arr('image');
/plugin/eventum/XML/
H A DRPC.php1955 $arr = array();
1959 return $arr;
1963 $arr = array();
1965 $arr[$key] = XML_RPC_decode($value);
1967 return $arr;
1991 $arr = array();
1993 $arr[$k] = XML_RPC_encode($v);
1995 $XML_RPC_val->addArray($arr);
2001 $arr = array();
2003 $arr[$k] = XML_RPC_encode($v);
[all …]
/plugin/explorertree/
H A Daction.php41 if (!($route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader')))){
52 $route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader'));
/plugin/dwcommits/
H A Dhelper.php510 $arr = $this->sqlite->res2arr($res);
511 if($arr) $q .= " [Rows: " . count($arr) . "] ";
512 return array($arr, $q);
516 function format_result_table($arr, $q=false) { argument
524 foreach($arr as $row) {
593 function format_result_plain($arr, $q=false) { argument
600 foreach($arr as $row) {
726 $arr = $this->sqlite->res2row($res);
727 list($key,$val) = each($arr);
/plugin/extendpage/
H A Dadmin.php50 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
51 $assignment = $INPUT->arr('assignment');
/plugin/wikistats/
H A Dsyntax.php488 foreach($list as $namespace => $arr) {
492 …$content .= DOKU_TAB.DOKU_TAB.'<td class="'.$class.'">'.(isset($arr['pages']) ? $arr['pages'] : '0…
493 …$content .= DOKU_TAB.DOKU_TAB.'<td class="'.$class.'">'.(isset($arr['medias']) ? $arr['medias'] : …
/plugin/acknowledge/admin/
H A Dassign.php35 $pattern = $INPUT->arr('pattern');
36 $assignees = $INPUT->arr('assignees');
/plugin/loglog/
H A Daction.php248 && !empty($INPUT->arr('config'))
256 $actions = $INPUT->post->arr('fn');
272 $del = $INPUT->arr('del');
/plugin/davcal/
H A DcalendarBackendDokuwiki.php241 $arr = $this->hlp->getCalendarObjects($calendarId);
243 foreach ($arr as $row)
313 $arr = $this->hlp->getMultipleCalendarObjectsByUri($calendarId, $uris);
316 foreach($arr as $row)
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_drag_timeline.js.map1arr","callback","result","filter","length","getSecondsInUnit","unit","forEach","workArray","slice"…
/plugin/ckgedit/lang/fr/
H A Dscayt.txt1 …fre trois options de configuration : arrêté, en marche, désactivé. Pour l'instant, le réglage par …
/plugin/structpublish/
H A Dadmin.php45 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
46 $assignment = $INPUT->arr('assignment');
/plugin/approve/
H A Dadmin.php44 if($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
45 $assignment = $INPUT->arr('assignment');
/plugin/authucenter/lib/api/
H A Duc.php74 function _serialize($arr, $htmlon = 0) { argument
78 return xml_serialize($arr, $htmlon);
344 function uc_serialize($arr, $htmlon = 0) { argument
346 return xml_serialize($arr, $htmlon);
/plugin/timetrack/
H A Daction.php127 if($INPUT->has('data') && isset($INPUT->arr('data')['yearweek'])) {
128 $yearweek = $INPUT->arr('data')['yearweek'];
141 $errors = $this->saveUserTime($INPUT->arr('UserTime'), $dbUserValues);
175 $errors = $this->saveUserTime($INPUT->arr('UserTime'), $dbUserValues);
/plugin/struct/admin/
H A Dassignments.php59 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
60 $assignment = $INPUT->arr('assignment');
/plugin/revealjs/plugin/search/
H A Dsearch.js93 var arr = document.getElementsByTagName(hiliteTag);
94 while(arr.length && (el = arr[0])) {
/plugin/pycode/
H A Dsyntax.php99 * @return (arr) $data it contains the parameters handed to the
196 * @param (arr) $data it contains the parameters handled to the
366 * @param (arr) $code the code to embed
368 * @param (arr) $range the numbers of the lines matching the code to embed
479 * @param (arr) $tree the name of a class and its methods, that is:
626 * @param (arr) $code_new the updated code got from the repository
/plugin/groupmanager/
H A Dsyntax.php42 function remove_item_by_value($val, $arr, $preserve = true) argument
44 if (empty($arr) || !is_array($arr)) {
47 foreach (array_keys($arr, $val) as $key) {
48 unset($arr[$key]);
50 return ($preserve) ? $arr : array_values($arr);
/plugin/authucenter/lib/uc_client/lib/
H A Dxml.class.php17 function xml_serialize($arr, $htmlon = FALSE, $isnormal = FALSE, $level = 1) { argument
20 foreach($arr as $k => $v) {

12345678910>>...12