Home
last modified time | relevance | path

Searched refs:pid (Results 51 – 75 of 117) sorted by last modified time

12345

/plugin/blogtng/entities/
H A DComment.php25 private $pid; variable in dokuwiki\\plugin\\blogtng\\entities\\Comment
422 return $this->pid;
426 * @param string $pid
428 public function setPid($pid) argument
430 $this->pid = $pid;
/plugin/blogtng/helper/
H A Dcomments.php20 private $pid; variable in helper_plugin_blogtng_comments
34 public function setPid($pid) { argument
35 $this->pid = trim($pid);
79 $args[] = $this->pid;
440 public function enable($pid) { argument
456 public function close($pid) { argument
467 * @param string $pid
556 if(!$this->pid) return;
587 $pid = $this->pid;
588 if(!$pid) return;
[all …]
H A Dentry.php48 * @param string $pid
51 public function load_by_pid($pid) { argument
56 $pid = trim($pid);
57 if (!$this->is_valid_pid($pid)) {
75 $this->entry['pid'] = $pid;
81 $this->entry['pid'] = $pid;
617 $pid = md5(cleanID($id));
621 WHERE pid = '$pid'";
639 AND A.pid != '$pid'
889 public function is_valid_pid($pid) { argument
[all …]
H A Dtags.php17 private $pid = null; variable in helper_plugin_blogtng_tags
29 * @param string $pid
31 public function setPid($pid) { argument
32 $this->pid = trim($pid);
59 public function load($pid) { argument
60 $this->setPid($pid);
71 $resid = $this->sqlitehelper->getDB()->query($query, $this->pid);
97 public function count($pid) { argument
103 $pid = trim($pid);
108 $resid = $this->sqlitehelper->getDB()->query($query, $pid);
[all …]
/plugin/blogtng/action/
H A Dcomments.php83 $comment->setPid($INPUT->post->has('pid') ? $INPUT->post->str('pid') : null);
H A Dpagedata.php41 $pid = md5($ID);
42 $this->entryhelper->load_by_pid($pid);
/plugin/blogtng/db/
H A Dupdate0001.sql2 pid PRIMARY KEY, field
13 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
20 pid, field
31 CREATE INDEX idx_comments_pid ON comments(pid);
35 pid, field
37 PRIMARY KEY (pid, tag)
39 CREATE INDEX idx_tags_pid ON tags(pid);
H A Dupdate0004.sql4 pid, field
15 SELECT cid, pid, source, name, mail, web, avatar, created, text, status
22 pid, field
34 CREATE INDEX idx_comments_pid ON comments(pid);
38 SELECT cid, pid, source, name, mail, web, avatar, created, text, status, null
45 pid PRIMARY KEY, field
57 SELECT pid, page, title, blog, image, created, lastmod, author, login, email
63 pid PRIMARY KEY, field
75 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
81 SELECT pid, page, title, blog, image, created, lastmod, author, login, email, 1
H A Dupdate0003.sql2 pid, field
4 PRIMARY KEY (pid, mail)
6 CREATE INDEX idx_subscriptions_pid ON subscriptions(pid);
/plugin/blogtng/
H A Dadmin.php128 $pid = $INPUT->post->str('entry-pid');
130 if($pid) {
133 $this->entryhelper->load_by_pid($pid);
142 $pid = $INPUT->post->str('entry-pid');
144 if($pid) {
146 $this->entryhelper->load_by_pid($pid);
/plugin/navi/
H A Dsyntax.php226 foreach ((array)$navItems as $pid => $info) {
236 unset($pid);
238 foreach ((array)$navItems as $pid => $info) {
244 if (!empty($upper[$pid])) {
245 $menuitem = ($upper[$pid] == 'open') ? 'open' : 'close';
278 if (substr($pid, 0, 1) != '_') {
/plugin/elasticsearch/vendor/ezimuel/ringphp/
H A DMakefile13 @PID=$(shell ps axo pid,command \
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fi/
H A Dfi.txt
/plugin/structnotification/action/
H A Dnotification.php115 $pid = $result_pids[$i];
127 'id' => $predicate['id'] . ':'. $schema . ':' . $pid . ':' . $rawDate,
/plugin/snippets/
H A Daction.php232 foreach($page_ids as $pid) {
233 $page_time= filemtime(wikiFN($pid));
235 $span = str_replace(':','_',$pid);
236 …ge_time) . '<td><a href="javascript:update_snippets(\''.$pid .'\');" id="' .$span . '">' .$pid .'…
/plugin/stlviewer/stlviewer/
H A Dparser.min.js2pid&&void 0!==g.pindex&&v[g.pid]&&v[g.pid].color&&v[g.pid].color[g.pindex]&&(J=v[g.pid].color[g.pi…
/plugin/indexmenu/scripts/
H A Dindexmenu.js56 * @param {number} pid parent node id
63 function dTreeNode(dokuid, id, pid, name, hns, isdir, ajax) {
69 this.pid = pid; // id number of parent node
178 * @param {number} pid parent node id
184 dTree.prototype.add = function (dokuid, id, pid, name, hns, isdir, ajax) {
185 this.aNodes[this.aNodes.length] = new dTreeNode(dokuid, id, pid, name, hns, isdir, ajax);
246 if (this.aNodes[n].pid === pNode.id) {
306 node.icon = (this.root.id === node.pid) ? this.icon.root : ((node.hns) ? this.icon.folderH : ((node._hc) ? this.icon.folder : this.icon.node));
308 if (this.root.id === node.pid) {
41 dTreeNode(dokuid, id, pid, name, hns, isdir, ajax) global() argument
134 add(dokuid, id, pid, name, hns, isdir, ajax) global() argument
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSyslogUdpHandler.php112 if (!$pid = getmypid()) {
113 $pid = '-';
129 $this->ident . "[" . $pid . "]: ";
138 $pid . " - - ";
/plugin/gemini/
H A Dcli.php110 if (!function_exists('pcntl_fork') || ($pid = pcntl_fork()) == -1) {
111 $pid = -1;
115 if ($pid > 0) {
123 $this->handleGeminiConnection($pid, $conn, $peername);
130 * @param int $pid process ID, forked children are 0 and will exit after handling
135 protected function handleGeminiConnection($pid, $conn, $peername) argument
143 if ($pid === 0) exit;
194 if ($pid == 0) exit;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/
H A DPcntlServerRunner.php113 'pid' => posix_getpid(),
197 $pid = pcntl_fork();
198 if ($pid == -1) {
204 } elseif ($pid === 0) {
213 $pid,
359 int $pid
361 $context = ['pid' => $pid];
395 int $pid,
402 $pid,
[all...]
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dehcache-3.8.1.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE META-INF/maven/ META ...
/plugin/diagramsnet/lib/resources/
H A Ddia_ca.txt599 quickStart=Vídeo d'inici ràpid
/plugin/diagramsnet/lib/js/diagramly/
H A DMenus.js1673 var pid = el.getAttribute('parent');
1675 if (pid == null)
1688 if (childs[pid] == null)
1690 childs[pid] = [];
1693 childs[pid].push(el.id);
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D64.64.js.map1 … 'cd',\n 'clock',\n 'exec',\n 'glob',\n 'pid',\n 'pwd',\n…
/plugin/extendpage/db/
H A Dupdate0001.sql9 pid NOT NULL, field
12 PRIMARY KEY(pid, pattern_id)

12345