Lines Matching refs:ancestors
188 $ancestors = $this->allAncestors($self);
190 $ancestors = [];
194 …'branches' => $this->getPatriarchsHtml($tree, $individuals, $ancestors, $surname, $soundex_dm, $so…
234 $ancestors = [
239 $sosa = key($ancestors);
241 $family = $ancestors[$sosa]->childFamilies()->first();
245 $ancestors[$sosa * 2] = $family->husband();
248 $ancestors[$sosa * 2 + 1] = $family->wife();
251 } while (next($ancestors));
253 return $ancestors;
323 …private function getPatriarchsHtml(Tree $tree, array $individuals, array $ancestors, string $surna… argument
334 …$html .= $this->getDescendantsHtml($tree, $individuals, $ancestors, $surname, $soundex_dm, $sounde…
355 …private function getDescendantsHtml(Tree $tree, array $individuals, array $ancestors, string $surn… argument
377 $sosa = array_search($individual, $ancestors, true);
380 …al->sex()) . '" href="' . e($module->chartUrl($individual, ['xref2' => $ancestors[1]->xref()])) . …
415 $sosa = array_search($spouse, $ancestors, true);
418 …spouse->sex()) . '" href="' . e($module->chartUrl($spouse, ['xref2' => $ancestors[1]->xref()])) . …
436 …$fam_html .= $this->getDescendantsHtml($tree, $individuals, $ancestors, $surname, $soundex_dm, $so…