Searched refs:rids (Results 1 – 7 of 7) sorted by relevance
/plugin/structpublish/action/ |
H A D | migration.php | 152 $rids = array_column($latest, 'rid'); 154 $sql = "UPDATE $this->table SET latest = 0 WHERE rid NOT IN (" . implode(', ', $rids) . ')'; 181 $rids = array_column($latest, 'rid'); 183 $sql = "UPDATE $this->table SET latest = 0 WHERE rid NOT IN (" . implode(', ', $rids) . ')';
|
/plugin/struct/meta/ |
H A D | SearchResult.php | 16 protected $rids = []; variable in dokuwiki\\plugin\\struct\\meta\\SearchResult 59 $this->rids[] = $row['rid']; 88 return $this->rids;
|
/plugin/structstatus/ |
D | syntax.php | 112 $rids = (array) $access->getDataColumn($col)->getRawValue(); 124 … $args['data-rid'] = implode(',', $rids); // FIXME this is wrong for multi fields in the widget? 132 if(in_array($status['rid'], $rids)) {
|
D | Status.php | 161 $rids = $search->getRids(); 165 $rid = json_encode(["", (int)array_shift($rids)]);
|
/plugin/discussion/ |
D | action.php | 478 $rids = $comments[$cid]['replies']; 479 $comments = $this->_flattenThreads($comments, $rids); 1364 $rids = $comment['replies']; 1365 if (count($rids)) { 1366 $number = $number + $this->_countReplies($data, $rids); 1374 * @param array $rids 1377 protected function _countReplies(&$data, $rids) { argument 1379 foreach ($rids as $rid) { 1383 $rids = $data['comments'][$rid]['replies']; 1384 if (count($rids)) { [all …]
|
/plugin/struct/action/ |
H A D | bureaucracy.php | 108 $rids = $search->getRids(); 121 if (($pid && $pids[$i] === $pid) || ($rid && $rids[$i] === $rid)) {
|
/plugin/struct/types/ |
H A D | Lookup.php | 133 $rids = $search->getRids(); 138 $val = json_encode([$pids[$i], (int)$rids[$i]], JSON_THROW_ON_ERROR);
|