Lines Matching refs:id
70 * @param int $id
75 public static function find(int $id, Tree $tree): Place argument
79 while ($id !== 0) {
81 ->where('p_file', '=', $tree->id())
82 ->where('p_id', '=', $id)
86 $id = (int) $row->p_parent_id;
89 $id = 0;
114 public function id(): int function in Fisharebest\\Webtrees\\Place
122 $parent_place_id = $this->parent()->id();
125 ->where('p_file', '=', $this->tree->id())
134 'p_file' => $this->tree->id(),
194 ->where('p_file', '=', $this->tree->id())
195 ->where('p_parent_id', '=', $this->id())
216 'place_id' => $this->id(),