Home
last modified time | relevance | path

Searched refs:res (Results 26 – 50 of 309) sorted by path

12345678910>>...13

/plugin/approve/
H A Dadmin.php86 $res = $sqlite->query('SELECT * FROM maintainer ORDER BY namespace');
87 $assignments = $sqlite->res2arr($res);
H A Dhelper.php14 $res = $sqlite->query('SELECT value FROM config WHERE key=?', $key);
15 $no_apr_namespaces_db = $sqlite->res2single($res);
21 $res = $sqlite->query('SELECT page, hidden FROM page');
22 $pages = $sqlite->res2arr($res);
49 $res = $sqlite->query('SELECT page, approver FROM page WHERE page=? AND hidden=0', $id);
50 $row = $sqlite->res2row($res);
64 $res = $sqlite->query('SELECT rev FROM revision
67 return $sqlite->res2single($res);
111 $res = $sqlite->query('SELECT id,namespace,approver FROM maintainer');
112 $assignments = $sqlite->res2arr($res);
[all...]
/plugin/approve/syntax/
H A Dtable.php
/plugin/authgooglesheets/vendor/google/auth/src/
H A DOAuth2.php585 $res = array();
586 parse_str($body, $res);
588 return $res;
592 if (null === $res = json_decode($body, true)) {
596 return $res;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DPool.php105 $res = [];
106 self::cmpCallback($options, 'fulfilled', $res);
107 self::cmpCallback($options, 'rejected', $res);
110 ksort($res);
112 return $res;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DMongoDBFormatter.php52 $res = $this->formatArray($record);
54 return $res;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSlackHandler.php176 $res = $this->getResource();
177 if (is_resource($res)) {
178 @fread($res, 2048);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php656 $res = [$point];
660 $res[] = $this->addPoint($res[$i - 1], $dbl);
663 $point['naf'] = $res;
676 return $res;
/plugin/authucenter/lib/uc_client/
H A Dclient.php627 $res = uc_fopen2($url, 500000, '', '', TRUE, UC_IP, 20);
628 if($res == 1) {
/plugin/autolink2/
H A Dhelper.php69 $res=$this->_numToID($result);
70 if (is_array($res)){
84 foreach ($res as $anchor => $page){
/plugin/autotranslation/
H A Daction.php257 $res = array();
260 if(!is_array($res["x$tr"])) $res["x$tr"] = array();
261 $res["x$tr"][] = array($r, $t);
264 ksort($res);
267 foreach($res as $r) {
276 $res = array();
279 if(!is_array($res["x$tr"])) $res["x$tr"] = array();
280 $res["x$tr"][] = $r;
283 ksort($res);
286 foreach($res as $r) {
/plugin/behave/
H A Dbehave.js72 var res = [],
78 res.push(val);
82 return res;
/plugin/bez/action/
H A Dmigration.php62 $res = $db->query($query);
63 if($res === false) {
95 $res = $db->query($query);
96 if($res === false) {
136 $res = $db->query($query);
137 if($res === false) {
288 $res = $sqlite->storeEntry('task_participant', $part);
289 if ($res === false) {
350 $res = $sqlite->storeEntry('thread_comment',
358 if ($res
[all...]
/plugin/bez/mdl/
H A DThread.php422 $res = $this->model->sqlite->query("SELECT state FROM task WHERE thread_id = ?
425 return $this->model->sqlite->res2count($res);
429 $res = $this->model->sqlite->query("SELECT thread_comment.id FROM thread_comment
433 $causes_without_tasks = $this->model->sqlite->res2count($res);
/plugin/bez/struct/
H A DBezType.php48 $res = $sqlite->query("SELECT thread_id FROM thread_comment WHERE id=?", $id);
49 $id = $res->fetchColumn();
62 $res = $sqlite->query("SELECT task_id FROM task_comment WHERE id=?", $id);
63 $id = $res->fetchColumn();
96 $res = $sqlite->query("SELECT COUNT(*) FROM $table WHERE id=?", $id);
97 $count = $res->fetchColumn();
141 $res = $sqlite->query($sql, $id . '%');
144 while ($row = $res->fetch(\PDO::FETCH_ASSOC)) {
/plugin/bez/syntax/
H A Dqlink.php36 $res = $sqlite->query("SELECT thread_id FROM thread_comment WHERE id=?", $id);
37 $id = $res->fetchColumn();
50 $res = $sqlite->query("SELECT task_id FROM task_comment WHERE id=?", $id);
51 $id = $res->fetchColumn();
/plugin/blogtng/
H A Dadmin.php322 $res = $db->query($sqlcount);
323 $count = $db->res2single($res);
515 $res = $this->sqlitehelper->getDB()->query($sqlcount);
516 $count = $this->sqlitehelper->getDB()->res2single($res);
/plugin/blogtng/helper/
H A Dcomments.php88 $res = $this->sqlitehelper->getDB()->query($sql,$args);
89 $res = $this->sqlitehelper->getDB()->res2row($res,0);
90 return (int) $res['val'];
166 $res = $this->sqlitehelper->getDB()->query(
284 $rows = $this->sqlitehelper->getDB()->res2arr($res);
382 $row = $this->sqlitehelper->getDB()->res2row($res);
607 $res = $this->sqlitehelper->getDB()->res2arr($res);
610 foreach($res as $row){
668 $res = $this->sqlitehelper->getDB()->query($query);
671 $res = $this->sqlitehelper->getDB()->res2arr($res);
[all …]
H A Dentry.php622 $res = $this->sqlitehelper->getDB()->query($query);
623 $res = $this->sqlitehelper->getDB()->res2arr($res);
624 foreach($res as $row){
646 $res = $this->sqlitehelper->getDB()->query($query);
647 if(!$this->sqlitehelper->getDB()->res2count($res)) return; // no results found
648 $res = $this->sqlitehelper->getDB()->res2arr($res);
652 foreach($res as $row){
931 $res = $this->sqlitehelper->getDB()->query($query, $pid);
932 if ($this->sqlitehelper->getDB()->res2count($res) > 0) {
933 $result = $this->sqlitehelper->getDB()->res2arr($res);
H A Dtools.php73 $res = false;
77 $res = $fname;
82 if($res === false){
87 return $res;
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js70 var res = '';
74 res = x + res;
80 res = x + res;
3223 return res;
3354 return res;
3645 res = res.concat(intr);
3877 res = [m2, m3, m4].concat(res).join().split(',');
3881 newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x;
19517 res = res[name];
19519 typeof res == 'function' && isFunc && (res = res());
[all …]
/plugin/bureaucracy-au/helper/
H A Dactiontemplate.php367 $res = media_save(
374 if(is_array($res)) throw new Exception($res[0]);
376 $this->values[$label] = $res;
/plugin/bureaucracy/helper/
H A Dactiontemplate.php413 $res = media_save(
420 if(is_array($res)) throw new Exception($res[0]);
422 $this->values[$label] = $res;
/plugin/bureaucracyau/helper/
H A Dactiontemplate.php367 $res = media_save(
374 if(is_array($res)) throw new Exception($res[0]);
376 $this->values[$label] = $res;
/plugin/callflow/
H A Draphael.js2300 … newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x;
5682 res = res[name];
5684 typeof res == "function" && isFunc && (res = res());
5687 res = (res == null || res == obj ? all : res) + "";
6759 res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
6961 setFillAndStroke(res, res.attrs);
7471 res.Y = a.y + res.H / 2;
7484 res.bbx = res.W / 2;
7488 res.bbx = -res.W / 2;
7736 res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
[all …]

12345678910>>...13