Home
last modified time | relevance | path

Searched refs:query (Results 876 – 900 of 964) sorted by last modified time

1...<<313233343536373839

/plugin/authucenter/lib/uc_client/control/
H A Dfeed.php48 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."feeds SET appid='$appid', icon='$icon', uid='$uid',…
60 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."feeds WHERE feedid>'$start' AND feedid<'$end'");
85 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."feeds WHERE feedid>='$start' AND feedid<='$end'");
H A Duser.php207 …$this->db->query("REPLACE INTO ".UC_DBTABLEPRE."protectedmembers SET uid='$uid', username='$userna…
218 …$this->db->query("DELETE FROM ".UC_DBTABLEPRE."protectedmembers WHERE username='$username' AND app…
234 …$this->db->query("DELETE FROM ".UC_DBTABLEPRE."mergemembers WHERE appid='".$this->app['appid']."' …
241 …$this->db->query("DELETE FROM ".UC_DBTABLEPRE."mergemembers WHERE appid='".$this->app['appid']."' …
/plugin/authucenter/lib/uc_client/model/
H A Dmail.php49 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."mailqueue WHERE mailid IN ($ids)");
66 $this->db->query($sql);
68 …$insert_id && $this->db->query("REPLACE INTO ".UC_DBTABLEPRE."vars SET name='mailexists', value='1…
99 $this->db->query("REPLACE INTO ".UC_DBTABLEPRE."vars SET name='mailexists', value='0'");
140 return $this->db->query("DELETE FROM ".UC_DBTABLEPRE."mailqueue WHERE mailid='$mailid'");
145 …return $this->db->query("UPDATE ".UC_DBTABLEPRE."mailqueue SET failures=failures+1 WHERE mailid='$…
H A Ddomain.php28 $this->db->query("INSERT INTO ".UC_DBTABLEPRE."domains SET domain='$domain', ip='$ip'");
46 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."domains WHERE id IN ($domainids)");
51 $this->db->query("UPDATE ".UC_DBTABLEPRE."domains SET domain='$domain', ip='$ip' WHERE id='$id'");
H A Dfriend.php29 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."friends SET uid='$uid', friendid='$friendid', comme…
30 …$this->db->query("UPDATE ".UC_DBTABLEPRE."friends SET direction='3' WHERE uid='$friendid' AND frie…
37 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."friends SET uid='$uid', friendid='$friendid', comme…
44 …$this->db->query("DELETE FROM ".UC_DBTABLEPRE."friends WHERE uid='$uid' AND friendid IN ($friendid…
47 …$this->db->query("UPDATE ".UC_DBTABLEPRE."friends SET direction=1 WHERE uid IN ($friendids) AND fr…
H A Dnote.php85 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."notelist SET getdata='$getdata', operation='$operat…
87 …$insert_id && $this->db->query("REPLACE INTO ".UC_DBTABLEPRE."vars (name, value) VALUES ('noteexis…
100 …$this->db->query("REPLACE INTO ".UC_DBTABLEPRE."vars SET name='noteexists".UC_APPID."', value='0'"…
146 …$this->db->query("UPDATE ".UC_DBTABLEPRE."notelist SET app$appid='1', totalnum=totalnum+1, succeed…
149 …$this->db->query("UPDATE ".UC_DBTABLEPRE."notelist SET app$appid = app$appid-'1', totalnum=totalnu…
162 …rand(0, UC_NOTE_GC) == 0 && $this->db->query("DELETE FROM ".UC_DBTABLEPRE."notelist WHERE closed='…
H A Dpm.php56 …$query = $this->db->query("SELECT * FROM ".UC_DBTABLEPRE."pm_members WHERE plid='$plid' AND uid='$…
57 if($this->db->fetch_array($query)) {
129 …$query = $this->db->query("SELECT plid FROM ".UC_DBTABLEPRE."pm_lists WHERE min_max IN (".$this->b…
317 $query = $this->db->query("SELECT * FROM ".UC_DBTABLEPRE."pm_members WHERE plid='$plid'");
486 $query = $this->db->query($sql);
487 if($list = $this->db->fetch_array($query)) {
602 while($pm = $this->db->fetch_array($query)) {
704 $query = $this->db->query("SELECT uid FROM ".UC_DBTABLEPRE."pm_members WHERE plid='$plid'");
705 while($uid = $this->db->fetch_array($query)) {
747 …$query = $this->db->query("SELECT uid, blacklist FROM ".UC_DBTABLEPRE."memberfields WHERE uid IN (…
[all …]
H A Dtag.php53 …$this->db->query("UPDATE ".UC_DBTABLEPRE."tags SET data='$datanew', expiration='".$this->base->tim…
55 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."tags (tagname, appid, data, expiration) VALUES ('$d…
63 …$this->db->query("UPDATE ".UC_DBTABLEPRE."tags SET expiration='0' WHERE tagname='$tagname' AND app…
65 …$this->db->query("INSERT INTO ".UC_DBTABLEPRE."tags (tagname, appid, expiration) VALUES ('$tagname…
H A Duser.php137 $this->db->query("INSERT INTO ".UC_DBTABLEPRE."memberfields SET uid='$uid'");
165 $this->db->query("UPDATE ".UC_DBTABLEPRE."members SET $sqladd WHERE username='$username'");
185 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."members WHERE uid IN($uids)");
186 $this->db->query("DELETE FROM ".UC_DBTABLEPRE."memberfields WHERE uid IN($uids)");
210 …$query = $this->db->query("SELECT uid FROM ".UC_DBTABLEPRE."members WHERE username IN($usernames)"…
212 while($user = $this->db->fetch_array($query)) {
220 …$query = $this->db->query("SELECT uid, username FROM ".UC_DBTABLEPRE."members WHERE uid IN (".$thi…
221 while($user = $this->db->fetch_array($query)) {
242 …$query = $this->db->query("SELECT * FROM ".UC_DBTABLEPRE."failedlogins WHERE ip='".$ip."' OR ip='$…
243 while($row = $this->db->fetch_array($query)) {
[all …]
/plugin/authucenter/lib/uc_client/lib/
H A Ddbi.class.php52 return $query ? $query->fetch_array($result_type) : null;
56 $query = $this->query($sql);
61 $query = $this->query($sql);
67 $query = $this->query($sql);
85 return $query;
101 if(!$query || $query->num_rows == 0) {
110 $query = $query ? $query->num_rows : 0;
115 return $query ? $query->field_count : 0;
119 return $query ? $query->free() : false;
127 $query = $query ? $query->fetch_row() : null;
[all …]
/plugin/bugzillaint/docs/
H A Dbugzillaint.txt90query format for buglists uses the bugzilla quicksearch syntax. You can query for various fields (…
145 …* Buglist query syntax should be completely switched to Bugzilla quicksearch syntax once Bugzilla …
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php74 if ( strpos($query, 'ALL') === 0 ) {
77 if ( strpos($query, 'OPEN') === 0 ) {
80 if ( strpos($query, 'UNCO') === 0 ) {
83 if ( strpos($query, 'RESO') === 0 ) {
86 if ( strpos($query, 'VERI') === 0 ) {
89 if ( strpos($query, 'CLO') === 0 ) {
92 if ( strpos($query, 'FIXED') === 0 ) {
95 if ( strpos($query, 'INVA') === 0 ) {
98 if ( strpos($query, 'WONT') === 0 ) {
101 if ( strpos($query, 'DUP') === 0 ) {
[all …]
/plugin/zotero/
H A DImportZoteroFeedReader.php81 $next = $xpath->query("//atom:feed/atom:link[@rel='next']")->item(0);
92 $root = $xpath->query('/atom:feed')->item(0);
94 $r = $xpath->query('//atom:feed/atom:entry');
H A DFeedZoteroRepository.php36 $r = $this->xpath->query('//atom:feed/atom:entry');
72 $item = $this->xpath->query("./zapi:itemType", $node)->item(0);
82 $item = $this->xpath->query("./zapi:key", $node)->item(0);
92 $item = $this->xpath->query("./atom:content", $node)->item(0);
/plugin/searchstats/
H A Daction.php47 $q = ft_queryParser(idx_get_indexer(),$event->data['query']);
50 $q = ft_queryParser($event->data['query']);
/plugin/pagestat/
H A Dremote.php114 $rt=$sqli->query($sql_h_sel);
127 $rt = $sqli->query($sql_rr_sel);
153 $rt = $sqli->query($sql_ext_sel);
196 $rt=$sqli->query($sql_defs_sel);
/plugin/daummovie/
H A Dsyntax.php84 $data['query'] = $match." (".$tries.") ".$response->code;
99 { $renderer->doc.="<small>[DaumMovie: ".$data['query']."]</small>";
125 //$renderer->doc.= $data['query'];
/plugin/yql/
H A Dplugin.info.txt6 desc A plugin for embedding results of the Yahoo! YQL query API.
H A Dsyntax.php122 $query = $data['query'];
138 $yql_query_url = $yql_base_url . "?q=" . urlencode($query);
157 if (is_null($json_result->query->results)) {
162 if (!isset($json_result->query->results->$item_name)) {
168 foreach ($json_result->query->results->$item_name as $item) {
/plugin/indextitleonly/_test/
H A Dindextitleonly.test.php24 $query = array('title');
25 …rray('title' => array('test' => 1, 'titleonly:sub:test' => 1)), idx_get_indexer()->lookup($query));
29 $query = array('content');
30 … $this->assertEquals(array('content' => array('test' => 1)), idx_get_indexer()->lookup($query));
/plugin/authdrupal7/
H A Dauth.php359 * @param string $query SQL string that contains the query
362 protected function _queryDB($query) { argument
364 msg('MySQL query: '.hsc($query), 0, __LINE__, __FILE__);
368 $result = @mysql_query($query, $this->dbcon);
423 * @param string $query SQL string that contains the query
426 protected function _modifyDB($query) { argument
428 msg('MySQL query: '.hsc($query), 0, __LINE__, __FILE__);
431 $result = @mysql_query($query, $this->dbcon);
/plugin/html2pdf/html2pdf/html2ps/
H A Dfetcher.url.class.php244 $this->query = "";
/plugin/mantis/lib/
H A Dchangelog251 - wsdl: propagate debug value from query string to SOAP endpoint in programmatic WSDL generation
/plugin/magento/
H A Dauth.php390 foreach( $dbh->query( $sql ) as $row ) {
444 foreach( $dbh->query( $sql ) as $row ) {
509 foreach( $dbh->query( $sql ) as $row ) {
539 foreach( $dbh->query( $sql ) as $row ) {
571 foreach( $dbh->query( $sql ) as $row ) {
604 foreach( $dbh->query( $sql ) as $row ) {
641 foreach( $dbh->query( $sql ) as $row ) {
659 foreach( $dbh->query( $sql ) as $row ) {
692 foreach( $dbh->query( $sql ) as $row ) {
/plugin/sphinxsearch/
H A DPageMapper.php24 $q = @$db->query("SELECT 1 FROM {$this->_table} limit 1");
26 …$result = $db->query("CREATE TABLE {$this->_table} ( page varchar(1024), page_crc int(11), hid var…
44 …$result = $this->_db->query("REPLACE into {$this->_table}(page, page_crc, hid, title, title_text) …
57 $result = $this->_db->query("select * from {$this->_table}");
64 $result = $this->_db->query($sql);

1...<<313233343536373839