Home
last modified time | relevance | path

Searched refs:res (Results 101 – 125 of 309) sorted by relevance

12345678910>>...13

/plugin/fksnewsfeed/inc/ORM/
H A DModelPriority.php33 …$res = $this->sqlite->query('DELETE FROM priority WHERE stream_id=? AND news_id =?', $this->stream…
34 return $this->sqlite->res2arr($res);
/plugin/timetrack/
H A Daction.php238 $res = true;
248 … $res = $this->tthlp->updateUserTime($dbUserValues[$project_id][$task_id][$date]['id'], $value);
252 … $res = $this->tthlp->insertUserTime($this->tthlp->getCurrentUser(), $task_id, $date, $value);
254 if($res !== true) {
255 $errors[] = $res;
/plugin/zip/pear/File/Archive/Reader/
H A DChangeName.php71 $res = substr($name, strlen($this->baseName)+1);
72 if ($res === false) {
75 return $res;
/plugin/datapopup/
H A Daction.php38 $res = $sqlite->query($query);
39 $rows = $sqlite->res2arr($res);
/plugin/labeled/
H A Dhelper.php179 $res = $db->query('SELECT label FROM labeled WHERE id=?', $id);
181 $labels = $db->res2arr($res);
207 $res = $db->query('SELECT name, color, namespace, ordernr FROM labels ORDER BY ordernr');
209 $labels = $db->res2arr($res);
/plugin/ireadit/action/
H A Dmigration.php99 $res = $sqlite->query('SELECT page,meta FROM meta');
100 while ($row = $sqlite->res_fetch_assoc($res)) {
129 $res = $sqlite->query('SELECT page,meta FROM meta');
130 while ($row = $sqlite->res_fetch_assoc($res)) {
/plugin/icalevents/
H A Dsyntax-impl.php418 $dt = &$res[$which];
427 return $res;
463 $res = '';
465 $res .= $piece;
471 $res .= $replace[$replaceIndex];
473 return $res;
/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.core.js406 return res;
884 var res,
1457 return res;
1534 res = res.concat(intr);
1540 return res;
1785 res = res[concat](catmullRom2bezier(dots, crz));
1911 res = [m2, m3, m4][concat](res).join()[split](",");
1914 … newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x;
5334 res = res[name];
5336 typeof res == "function" && isFunc && (res = res());
[all …]
/plugin/blogtng/helper/
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);
/plugin/approve/action/
H A Dprettyprint.php45 $res = $sqlite->query('SELECT ready_for_approval, ready_for_approval_by,
50 $approve = $sqlite->res_fetch_assoc($res);
H A Dnotification.php
H A Drevisions.php31 $res = $sqlite->query('SELECT rev, approved, ready_for_approval
34 $approve_revisions = $sqlite->res2arr($res);
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js62 var res = [], i;
66 return res;
389 res[prop] = extend({}, res[prop]);
392 return res;
2549 return res;
2666 var res, i;
2836 res._d.setTime(res._d.valueOf() + diff);
3078 return (isNaN(res) ? 0 : res) * sign;
3096 var res;
3106 res.milliseconds = -res.milliseconds;
[all …]
/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/struct/lang/fr/
H A Dassignments_intro.txt
/plugin/fetchmedia/action/
H A Dajax.php131 $res = fopen($link, 'rb');
132 if ($res === false) {
140 $realSize = stream_copy_to_stream($res, $target);
142 fclose($res);
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DLinkParserHelper.php33 if ($res = $cursor->match(RegexHelper::REGEX_LINK_DESTINATION_BRACES)) {
36 RegexHelper::unescape(\substr($res, 1, -1))
/plugin/freechat/phpfreechat/data/public/js/
H A Dpfcprompt.js35 div.appendChild(document.createTextNode(pfc.res.getLabel('Input Required')));
59 cancel.value = pfc.res.getLabel('Cancel');
67 submit.value = pfc.res.getLabel('OK');
/plugin/phpipam/
H A Dphpipam-api.php611 $res = $this->curl_execute ();
613 $this->result = (array) $res;
622 $res = $this->curl_execute ();
624 $this->result = (array) $res;
630 $res = $this->curl_execute ();
632 $this->result = (array) $res;
/plugin/watchcycle/
H A Dadmin.php119 $res = $sqlite->query($q, $q_args);
120 while ($row = $sqlite->res2row($res)) {
/plugin/approve/
H A Dadmin.php86 $res = $sqlite->query('SELECT * FROM maintainer ORDER BY namespace');
87 $assignments = $sqlite->res2arr($res);
/plugin/codemirror/dist/modes/
H A Dpug.min.js.map1res","copyState","slice","javaScript","stream","state","sol","peek","tok","token","eol","yieldStat…
/plugin/linkbonus/
H A Dcommon.php136 $res = preg_match ("/<title>(.+)<\/title>/is", $fc, $title);
137 if ($res == 1) {
/plugin/data-au/admin/
H A Daliases.php103 $res = $sqlite->query($sql);
104 $rows = $sqlite->res2arr($res);
/plugin/telleveryone/action/
H A Dnotification.php83 $res = $sqlite->query($q, $this->getConf('limit'));
85 $logs = $sqlite->res2arr($res);

12345678910>>...13