Lines Matching refs:person
153 * @param Individual $person
158 public function getPersonLi(Individual $person, int $generations = 0): string argument
161 $lifespan = $person->canShow() ? '(' . $person->lifespan() . ')' : '';
162 $spouses = $generations > 0 ? $this->loadSpouses($person, 0) : '';
169 'tree' => $person->tree()->name(),
170 'xref' => $person->xref(),
173 …'<small>' . view('icons/sex', ['sex' => $person->sex()]) . '</small>' . $person->fullName() . $lif…
175 …'<a href="' . e($person->url()) . '" title="' . strip_tags($person->fullName()) . '">' . view('ico…
184 * @param Individual $person
189 public function getFamilyLi(Family $family, Individual $person, int $generations = 0): string argument
191 $spouse = $family->spouse($person);