Home
last modified time | relevance | path

Searched refs:newIndividualFacts (Results 1 – 8 of 8) sorted by relevance

/webtrees/app/Http/RequestHandlers/
H A DAddUnlinkedPage.php62 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, ['1 NAME ' . $name]),
H A DAddChildToIndividualPage.php82 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, 'U', $names),
H A DAddParentToIndividualPage.php71 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
H A DAddChildToFamilyPage.php71 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
H A DAddSpouseToIndividualPage.php80 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
H A DAddSpouseToFamilyPage.php78 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
/webtrees/tests/app/Services/
H A DGedcomEditServiceTest.php145 $new_facts = $gedcom_edit_service->newIndividualFacts($tree, $sex, $names);
/webtrees/app/Services/
H A DGedcomEditService.php86 public function newIndividualFacts(Tree $tree, string $sex, array $names): Collection function in Fisharebest\\Webtrees\\Services\\GedcomEditService