Lines Matching refs:pid
18 protected $pid;
21 * FIXME consolidate pid (current page query) and pids (global search query)
49 return ($this->field === 'pid') ? $this->getPages() : $this->getTags();
61 $this->groupby = 'pid';
62 $this->orderby = "cnt DESC, pid";
139 * @param string $pid
141 public function setPid($pid)
143 $this->pid = $pid;
195 if ($this->pid) {
196 $where .= ' AND pid';
197 $where .= $this->useLike($this->pid) ? ' GLOB' : ' =';
199 $this->values[] = $this->pid;
203 $where .= ' AND pid';
205 foreach ($this->pids as $pid) {
207 $this->values[] = $pid;
223 $where .= ' pid';
237 $where .= ' pid';
261 $where .= ' AND GETACCESSLEVEL(pid) >= ' . AUTH_READ;