Searched refs:factrec (Results 1 – 2 of 2) sorted by relevance
/webtrees/resources/views/ |
H A D | fact-date.phtml | 23 $factrec = $fact->gedcom(); variable 27 if (preg_match('/\n2 AGE (.+)/', $factrec, $match) === 1) { 33 if (preg_match('/\n2 HUSB\n3 AGE (.+)/', $factrec, $match) === 1) { 39 if (preg_match('/\n2 WIFE\n3 AGE (.+)/', $factrec, $match) === 1) { 48 if (preg_match('/\n2 DATE (.+)/', $factrec, $match) === 1) { 52 if ($time && preg_match('/\n3 TIME (.+)/', $factrec, $match) === 1) {
|
/webtrees/app/Services/ |
H A D | IndividualFactsService.php | 108 $factrec = explode("\n", $fact->gedcom(), 2)[0]; 110 $factrec .= $match[0]; 113 $factrec .= $match[0]; 117 $factrec .= "\n2 _ASSO @" . $spouse->xref() . '@'; 120 $factrec .= "\n2 _ASSO @" . $associate->xref() . '@'; 122 $facts[] = new Fact($factrec, $associate, 'asso');
|