| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | GuestAttributes.php | 76 public function setQueryValue(GuestAttributesValue $queryValue) argument 78 $this->queryValue = $queryValue; 85 return $this->queryValue;
|
| /plugin/statistics/_test/ |
| D | LoggerTest.php | 210 …$count = $this->helper->getDB()->queryValue('SELECT COUNT(*) FROM referers WHERE url = ?', [$inter… 234 …$wordCount = $this->helper->getDB()->queryValue('SELECT COUNT(*) FROM searchwords WHERE sid = ?', … 254 $sessionCount = $this->helper->getDB()->queryValue('SELECT COUNT(*) FROM sessions'); 336 $count = $this->helper->getDB()->queryValue('SELECT COUNT(*) FROM outlinks'); 493 …$pageCount = $this->helper->getDB()->queryValue('SELECT value FROM history WHERE info = ?', ['page… 494 …$pageSize = $this->helper->getDB()->queryValue('SELECT value FROM history WHERE info = ?', ['page_… 510 …$mediaCount = $this->helper->getDB()->queryValue('SELECT value FROM history WHERE info = ?', ['med… 511 …$mediaSize = $this->helper->getDB()->queryValue('SELECT value FROM history WHERE info = ?', ['medi…
|
| /plugin/approve/helper/ |
| H A D | db.php | 61 return $this->db->queryValue($sql, $key); 273 return $this->db->queryValue($sql, $page_id); 276 return $this->db->queryValue($sql, $page_id); 279 return $this->db->queryValue($sql, $page_id); 339 $exists = $this->db->queryValue($sql, $page_id, $last_change_date);
|
| /plugin/questionnaire/ |
| D | helper.php | 107 return $db->queryValue($sql, $page, $user) > 0; 122 return (int)$db->queryValue($sql, $page);
|
| /plugin/statistics/ |
| D | Query.php | 176 $count = $this->db->queryValue($sql, [$this->tz, $this->from, $this->tz, $this->to]); 191 … $data['avgpages'] = $this->db->queryValue($sql, [$this->tz, $this->from, $this->tz, $this->to]); 199 … $data['timespent'] = $this->db->queryValue($sql, [$this->tz, $this->from, $this->tz, $this->to]); 206 … $data['logins'] = $this->db->queryValue($sql, [$this->tz, $this->from, $this->tz, $this->to]); 213 …$data['registrations'] = $this->db->queryValue($sql, [$this->tz, $this->from, $this->tz, $this->to… 219 $data['current'] = $this->db->queryValue($sql);
|
| D | Logger.php | 315 return (int)$this->db->queryValue('SELECT id FROM referers WHERE url = ?', $referer); 342 $result = $this->db->queryValue(
|
| /plugin/aichat/Storage/ |
| D | SQLiteStorage.php | 175 $items = $this->db->queryValue('SELECT COUNT(*) FROM embeddings'); 176 $size = $this->db->queryValue( 281 $total = $this->db->queryValue($query); 374 return $this->db->queryValue($query) > 0;
|
| /plugin/combo/ComboStrap/ |
| H A D | HttpRequest.php | 127 foreach ($query as $queryKey => $queryValue) { 128 $testRequest->setGet($queryKey, $queryValue);
|
| /plugin/struct/meta/ |
| H A D | SchemaBuilder.php | 159 $this->newschemaid = $this->sqlite->queryValue('SELECT last_insert_rowid()'); 190 $newTid = $this->sqlite->queryValue('SELECT last_insert_rowid()'); 285 $newTid = $this->sqlite->queryValue('SELECT last_insert_rowid()');
|
| H A D | AccessTablePage.php | 59 $ret = $this->sqlite->queryValue($sql, $opts);
|
| H A D | AccessTableGlobal.php | 119 …$this->rid = $this->sqlite->queryValue("SELECT rid FROM $this->stable WHERE ROWID = last_insert_ro…
|
| /plugin/struct/_test/ |
| H A D | HelperDBTest.php | 30 $result = $sqlite->queryValue("SELECT STRUCT_JSON('foo', 'bar') ");
|
| H A D | SchemaBuilderTest.php | 58 …$tableSQL = $this->sqlite->queryValue("SELECT sql FROM sqlite_master WHERE type='table' AND name=?…
|
| /plugin/sqlite/ |
| H A D | SQLiteDB.php | 194 return $this->queryValue('SELECT last_insert_rowid()'); 282 public function queryValue($sql, ...$params) function in dokuwiki\\plugin\\sqlite\\SQLiteDB 329 $value = $this->queryValue("SELECT val FROM opts WHERE opt = ?", [$opt]);
|
| H A D | QuerySaver.php | 52 return $this->db->queryValue($sql, [$this->upstream, $name]);
|
| /plugin/acknowledge/ |
| D | helper.php | 311 $assignments = $this->db->queryValue($sql, $page); 432 $acktime = $this->db->queryValue($sql, $page, $user); 452 return $this->db->queryValue($sql, [$page, $user]);
|
| /plugin/structpublish/meta/ |
| H A D | AccessTableStructpublish.php | 75 $ret = $this->sqlite->queryValue($sql, $opts);
|
| /plugin/starred/ |
| D | helper.php | 91 return (int)$db->queryValue($sql, [$pageid, $user]);
|
| /plugin/sqlite/_test/ |
| H A D | SQLiteDBTest.php | 132 $result = $db->queryValue($sql, [4]);
|
| /plugin/data/ |
| D | action.php | 62 $pid = (int) $sqlite->queryValue('SELECT pid FROM pages WHERE page = ?', $id);
|