Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 25 of 46) sorted by last modified time

12

/plugin/photogallery/phpThumb/
H A DphpThumb.php344 …if ($cid = @mysql_connect($phpThumb->config_mysql_hostname, $phpThumb->config_mysql_username, $php… variable
345 if (@mysql_select_db($phpThumb->config_mysql_database, $cid)) {
346 if ($result = @mysql_query($phpThumb->config_mysql_query, $cid)) {
350 mysql_close($cid);
356 mysql_close($cid);
360 mysql_close($cid);
361 $phpThumb->ErrorImage('Error in MySQL query: "'.mysql_error($cid).'"');
364 mysql_close($cid);
365 $phpThumb->ErrorImage('cannot select MySQL database: "'.mysql_error($cid).'"');
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DTTFontFile.php3636 foreach ($codeToGlyph as $cid => $glidx) {
3637 if ($cid == ($prevcid + 1) && $glidx == ($prevglidx + 1)) {
3641 $rangeid = $cid;
3645 $prevcid = $cid;
4249 foreach ($subset as $cid => $code) {
4251 if ($cid == ($prevcid + 1) && $glidx == ($prevglidx + 1)) {
4255 $rangeid = $cid;
4259 $prevcid = $cid;
4870 foreach ($charToGlyph as $cid => $glidx) {
4871 if ($cid
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFontWriter.php462 for ($cid = $character['startcid']; $cid < $cwlen; $cid++) {
463 if ($cid == 128 && $asSubset && (!$this->fontCache->has($fontCacheFilename))) {
475 $character1 = isset($font['cw'][$cid * 2]) ? $font['cw'][$cid * 2] : '';
476 $character2 = isset($font['cw'][$cid * 2 + 1]) ? $font['cw'][$cid * 2 + 1] : '';
488 if ($asSubset && $cid > 255 && (!isset($font['subset'][$cid]) || !
[all...]
/plugin/blogtng/entities/
H A DComment.php23 private $cid; variable in dokuwiki\\plugin\\blogtng\\entities\\Comment
122 echo $this->cid;
135 if($link) echo '<a href="#comment_' . $this->cid . '" class="blogtng_num">';
278 return $this->cid;
282 * @param string $cid
284 public function setCid($cid) argument
286 $this->cid = $cid;
/plugin/blogtng/helper/
H A Dcomments.php42 * @param string $cid The cid
45 public function comment_by_cid($cid) { argument
50 $resid = $this->sqlitehelper->getDB()->query($query, $cid);
172 $cid = $this->sqlitehelper->getDB()->res2single($res);
173 $comment->setCid($cid === false ? 0 : $cid);
192 public function delete($cid) { argument
195 return (bool) $this->sqlitehelper->getDB()->query($query, $cid);
217 public function moderate($cid, $status) { argument
220 return (bool) $this->sqlitehelper->getDB()->query($query, $status, $cid);
/plugin/blogtng/db/
H A Dupdate0001.sql19 cid INTEGER PRIMARY KEY, field
H A Dupdate0004.sql3 cid INTEGER PRIMARY KEY, field
15 SELECT cid, pid, source, name, mail, web, avatar, created, text, status
21 cid INTEGER PRIMARY KEY, field
38 SELECT cid, pid, source, name, mail, web, avatar, created, text, status, null
/plugin/blogtng/
H A Dadmin.php104 foreach($cids as $cid) {
108 $this->commenthelper->delete($cid);
112 $this->commenthelper->moderate($cid, 'hidden');
116 $this->commenthelper->moderate($cid, 'visible');
/plugin/blogtng/syntax/
H A Dcommentreply.php47 $cid = substr($match, 2, -1);
48 return array($cid);
61 list($cid) = $data;
64 $comment = $commenthelper->comment_by_cid($cid);
68 echo '@<a href="#comment_'.$cid.'" class="wikilink1 blogtng_reply">';
/plugin/s5/ui/default/
H A Dslides.js123 var cid = 'slide' + snum;
124 var ce = document.getElementById(cid);
/plugin/s5/ui/dokuwiki/
H A Dslides.js122 var cid = 'slide' + snum;
123 var ce = document.getElementById(cid);
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/wa/
H A Dwa.txt
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/so/
H A Dso.txt82 1. Qof kastaa wuxuu xaq u leeyahay inuu keli ahaan xoolo yeesho ama cid kale xoolo kula shirkoobo.
98 1. Qof kastaa wuxuu xaq u leeyahay inuu ka qayb galo maamulka Dalkiisa si toos ah ama isagoo si xornimo ah u dooranaya cid wakiil ka ah.
/plugin/tagfilter/script/select2/
H A Dselect2.js1316 var cid = this.containerId,
1317 scroll = "scroll." + cid,
1318 resize = "resize."+cid,
1319 orient = "orientationchange."+cid,
1388 var cid = this.containerId,
1389 scroll = "scroll." + cid,
1390 resize = "resize."+cid,
1391 orient = "orientationchange."+cid;
/plugin/discussion/
H A Daction.php323 if(!$cid) {
589 $data['comments'][$cid]['cid'] = $cid;
596 $this->_redirect($cid);
703 $this->_redirect($cid);
716 unset($comments[$cid]);
723 * @param string $cid
769 ptln('<a name="comment_'.$cid.'" id="comment_'.$cid.'"></a>', 8);
861 * @param string $cid
874 * @param string $cid
1088 * @param string $cid
[all …]
H A Dadmin.php25 $cid = $_REQUEST['cid'];
26 if (is_array($cid)) $cid = array_keys($cid);
34 $action->save($cid, '');
38 $action->save($cid, '', 'show');
42 $action->save($cid, '', 'hide');
199 foreach ($data['comments'] as $cid => $comment) {
200 $this->_addComment($cid, $data, $result);
213 * @param string $cid
220 if (!is_array($data['comments'][$cid])) return; // corrupt datatype
221 $comment = $data['comments'][$cid];
[all …]
H A Dconvert.php128 $cid = md5($name.$date);
134 $comments['comments'][$cid] = array(
H A Dhelper.php219 $cid = $recent['extra'];
254 $parent_id = $cid;
268 if (is_array($data['comments'][$cid]['user'])) {
269 $recent['name'] = $data['comments'][$cid]['user']['name'];
271 $recent['name'] = $data['comments'][$cid]['name'];
273 $recent['desc'] = strip_tags($data['comments'][$cid]['xhtml']);
274 $recent['anchor'] = 'comment_'.$cid;
/plugin/diagramsnet/lib/js/diagramly/
H A DDrawioFile.js570 var cid = (this.sync != null) ? '-client_' + this.sync.clientId : '-nosync';
587 '\nUser=' + uid + cid +
/plugin/addressbook/
H A Dsyntax.php297 function showcontact($cid,$target = false){ argument
299 $r = $this->getContactData($cid);
369 function getContactData($cid){ argument
378 $sql = "SELECT * FROM addresslist WHERE id = $cid";
384 msg ("Contact not found (id: $cid)",-1);
515 function deleteContact($cid){ argument
524 $sql = "DELETE FROM addresslist WHERE id = $cid";
/plugin/codemirror/dist/modes/
H A Dmirc.min.js.map1 …chan $chanmodes \" +\n \"$chantypes $chat $chr $cid $clevel $click $cmd…
H A Dgfm.min.js.map1 …im|apt|attachment|aw|beshare|bitcoin|bolo|callto|cap|chrome(?:-extension)?|cid|coap|com-eventbrite…
/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js32481 cMap.forEach(function (charcode, cid) {
32482 if (cid > 0xffff) {
32486 var ucs2 = ucs2CMap.lookup(cid);
36961 properties.cMap.forEach(function (charCode, cid) {
36962 if (cid > 0xffff) {
36969 glyphId = cid;
36970 } else if (cidToGidMap[cid] !== undefined) {
36971 glyphId = cidToGidMap[cid];
37843 var cid = charsets[glyphId];
37844 charCode = properties.cMap.charCodeOf(cid);
[all …]
H A Dpdf.worker.js.map1cid","ucs2","ucs2CMap","readToUnicode","cmapObj","cmap","w2","readCidToGidMap","glyphsData","glyph…
/plugin/pagetemplate/
H A Daction.php110 $cid = pathID($file);
111 $cns = parentNS($cid);
114 if(auth_quickaclcheck($cid) < AUTH_READ){

12