Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 25 of 46) sorted by relevance

12

/plugin/pubchem/
H A Dsyntax.php50 list($cmd,$cid) = $match;
52 if(strpos($cid,'|')!==false){
53 list($cid,$title)=explode('|',$cid);
69 if(!$cid){
75 if (!is_numeric($cid)){
79 if(!is_array($pubchem_cache[$cid])) $this->getProperties($cid);
104 $id = $cid.$mode;
116 $this->_name_row($renderer,$cid,$pubchem_cache[$cid]['iupac'],$title);
147 * @param string $cid
190 $pubchem_cache[$cid] = $this->chemProperty[$cid];
[all …]
/plugin/swiftmail/Swift/Message/
H A DEmbeddedFile.php26 protected $cid = null; variable in Swift_Message_EmbeddedFile
36 …public function __construct($data=null, $name=null, $type="application/octet-stream", $cid=null, $… argument
40 if ($cid === null)
42 $cid = self::generateFileName("swift-" . uniqid(time()) . ".");
43 …$cid = urlencode($cid) . "@" . (!empty($_SERVER["SERVER_NAME"]) ? $_SERVER["SERVER_NAME"] : "swift…
45 $this->setContentId($cid);
47 if ($name === null && !($data instanceof Swift_File)) $this->setFileName($cid);
66 $this->cid = $id;
75 return $this->cid;
H A DImage.php30 …ruct(Swift_File $data=null, $name=null, $type="application/octet-stream", $cid=null, $encoding="ba… argument
32 parent::__construct($data, $name, $type, $cid, $encoding);
/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 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;
H A Dconvert.php128 $cid = md5($name.$date);
134 $comments['comments'][$cid] = array(
/plugin/swiftmail/Swift/Plugin/
H A DFileEmbedder.php272 public function registerFile($url, $cid, $file) argument
276 $this->registeredFiles[$url]["cids"][] = $cid;
327 foreach ($registered["cids"] as $cid)
329 if ($this->message->hasChild($cid))
331 return $matches[1] . $cid . $matches[4];
335 $cid = $this->message->attach($registered["obj"]);
337 return $matches[1] . $cid . $matches[4];
372 foreach ($registered["cids"] as $cid)
374 if ($this->message->hasChild($cid))
376 return $matches[1] . $cid . $matches[4];
[all …]
/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/mantis/lib/
H A Dnusoapmime.php84 * @param string $cid The content-id (cid) of the attachment (default is false)
88 …function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = fa… argument
89 if (! $cid) {
90 $cid = md5(uniqid(time()));
96 $info['cid'] = $cid;
100 return $cid;
323 * @param string $cid The content-id (cid) of the attachment (default is false)
328 if (! $cid) {
329 $cid = md5(uniqid(time()));
335 $info['cid'] = $cid;
[all …]
/plugin/canvas/
H A Dcanvas.php96 list($ctype, $cid, $cparam) = explode(' ', $match, 3);
97 if (empty($cid)) {
103 $renderer->doc.= $this->_htmlCanvas($cid, $ctype, $param);
130 protected function _htmlCanvas($cid, $ctype, $opts) { argument
133 if (empty($cid)) return false;
147 $html.= ' id="'.$cid.'"';
164 $html.= ' id="'.$cid.'"';
175 $html.= ' id="'.$cid.'"';
/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/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DFontWriter.php463 for ($cid = $character['startcid']; $cid < $cwlen; $cid++) {
476 $character1 = isset($font['cw'][$cid * 2]) ? $font['cw'][$cid * 2] : '';
477 $character2 = isset($font['cw'][$cid * 2 + 1]) ? $font['cw'][$cid * 2 + 1] : '';
489 if ($asSubset && $cid > 255 && (!isset($font['subset'][$cid]) || !$font['subset'][$cid])) {
526 $character['rangeid'] = $cid;
531 $character['prevcid'] = $cid;
597 $cid -= $cidoffset;
599 if ($cid === ($prevcid + 1)) {
617 $rangeid = $cid;
627 $rangeid = $cid;
[all …]
/plugin/blogtng/db/
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
H A Dupdate0001.sql19 cid INTEGER PRIMARY KEY, field
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DPDF417.php651 $cid = 0; // initial cluster
656 switch ($cid) {
671 $row .= sprintf('%17b', $this->clusters[$cid][$L]);
674 $row .= sprintf('%17b', $this->clusters[$cid][$codewords[$k]]);
677 switch ($cid) {
692 $row .= sprintf('%17b', $this->clusters[$cid][$L]);
701 ++$cid;
702 if ($cid > 2) {
703 $cid = 0;
/plugin/clock/
H A Dsyntax.php112 $cid = $this->_get_clock_object_ID();
116 <div id="$cid">$nl $html $hbar$nl </div><!-- end clock-->
122 <p><a href="#$cid" class="wikilink" title="Go To Clock">&#x231a; clock</a></p>
/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/pagetemplate/
H A Daction.php110 $cid = pathID($file);
111 $cns = parentNS($cid);
114 if(auth_quickaclcheck($cid) < AUTH_READ){
/plugin/pdb/classes/
H A D_NCBI.php44 function GetPubchemXml($cid){ argument
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/plugin/pubchem/classes/
H A D_NCBI.php44 function GetPubchemXml($cid){ argument
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/plugin/pubmed/classes/
H A D_NCBI.php44 function GetPubchemXml($cid){ argument
45 $xml = $this->HttpClient->get(sprintf($this->pubchemURL,$cid));
/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/freechat/phpfreechat/src/
H A Dpfccommand.class.php227 foreach ( $cmdtoplay_ids as $cid )
230 $cmdtoplay = $ct->getCmdMeta($nickid, $cid);
248 $ct->rmMeta("nickid-to-cmdtoplay", $nickid, $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";

12