/webtrees/app/Services/ |
H A D | GedcomEditService.php | 72 $tags = (new Collection(explode(',', $tree->getPreference('QUICK_REQUIRED_FAMFACTS')))) 74 $facts = $tags->map(fn (string $tag): Fact => $this->createNewFact($dummy, $tag)); 89 $tags = (new Collection(explode(',', $tree->getPreference('QUICK_REQUIRED_FACTS')))) 91 $facts = $tags->map(fn (string $tag): Fact => $this->createNewFact($dummy, $tag)); 124 …public function editLinesToGedcom(string $record_type, array $levels, array $tags, array $values, … argument 129 assert(count($tags) === $count); 136 $hierarchy[$levels[$i]] = $tags[$i]; 145 … if ($levels[$j] === '2' && ($tags[$j] === 'DATE' || $tags[$j] === 'PLAC') && $values[$j] !== '') { 162 $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i]; 165 if ($tags[$i] === 'CONC') { [all …]
|
/webtrees/app/Http/RequestHandlers/ |
H A D | TreePrivacyPage.php | 146 $tags = []; 153 … $tags[$subtag] = Registry::elementFactory()->make($record_type . ':' . $subtag)->label(); 162 $tags[$tag] = Registry::elementFactory()->make($tag) -> label(); 165 uasort($tags, I18N::comparator()); 169 $tags
|
H A D | AddSpouseToIndividualAction.php | 63 $tags = Validator::parsedBody($request)->array('itags'); 65 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values); 70 $tags = Validator::parsedBody($request)->array('ftags'); 72 …$gedcom = $this->gedcom_edit_service->editLinesToGedcom(Family::RECORD_TYPE, $levels, $tags, $valu…
|
H A D | AddSpouseToFamilyAction.php | 63 $tags = Validator::parsedBody($request)->array('itags'); 65 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values); 90 $tags = Validator::parsedBody($request)->array('ftags'); 92 …$gedcom = $this->gedcom_edit_service->editLinesToGedcom(Family::RECORD_TYPE, $levels, $tags, $valu…
|
H A D | AddUnlinkedAction.php | 56 $tags = Validator::parsedBody($request)->array('itags'); 58 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values);
|
H A D | AddChildToFamilyAction.php | 61 $tags = Validator::parsedBody($request)->array('itags'); 63 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values);
|
H A D | EditRecordAction.php | 61 $tags = Validator::parsedBody($request)->array('tags'); 70 …om .= $this->gedcom_edit_service->editLinesToGedcom($record::RECORD_TYPE, $levels, $tags, $values);
|
H A D | AddParentToIndividualAction.php | 61 $tags = Validator::parsedBody($request)->array('itags'); 63 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values);
|
H A D | AddChildToIndividualAction.php | 61 $tags = Validator::parsedBody($request)->array('itags'); 63 … = $this->gedcom_edit_service->editLinesToGedcom(Individual::RECORD_TYPE, $levels, $tags, $values);
|
H A D | LinkSpouseToIndividualAction.php | 61 $tags = Validator::parsedBody($request)->array('ftags'); 75 …com .= $this->gedcom_edit_service->editLinesToGedcom(Family::RECORD_TYPE, $levels, $tags, $values);
|
H A D | EditFactAction.php | 70 $tags = Validator::parsedBody($request)->array('tags'); 72 …this->gedcom_edit_service->editLinesToGedcom($record::RECORD_TYPE, $levels, $tags, $values, false);
|
/webtrees/resources/views/edit/ |
H A D | edit-gedcom-fields.phtml | 17 [, $levels, $tags, $values] = $matches; 26 $hierarchy[$levels[$key]] = $tags[$key]; 59 <input type="hidden" name="<?= e($prefix) ?>tags[]" value="<?= e($tags[$key]) ?>"> 75 <input type="hidden" name="<?= e($prefix) ?>tags[]" value="<?= e($tags[$key]) ?>">
|
/webtrees/app/CustomTags/ |
H A D | Gedcom7.php | 72 public function tags(): array function in Fisharebest\\Webtrees\\CustomTags\\Gedcom7 74 $tags = [ 183 $tags['FAM:RESI'] = new ResidenceWithValue(I18N::translate('Family residence')); 186 $tags['INDI:RESI'] = new ResidenceWithValue(I18N::translate('Residence')); 189 return $tags;
|
/webtrees/app/Module/ |
H A D | FixNameTags.php | 120 $tags = implode('|', array_keys(self::CONVERT)); 122 … return preg_match('/\n1 NAME.*(?:\n[2-9] .*)*\n2 (' . $tags . ')/', $record->gedcom()) === 1; 181 $tags = implode('|', array_keys(self::CONVERT)); 183 while (preg_match('/\n2 (' . $tags . ') (.+)((?:\n[3-9].*)*)/', $gedcom, $match)) {
|
/webtrees/app/Report/ |
H A D | ReportParserGenerate.php | 695 $tags = explode(':', $tag); 697 if (count($tags) < 2) { 704 foreach ($tags as $tag) { 1039 $tags = preg_split('/[: ]/', $tag); 1041 switch (end($tags)) { 1105 $tags = explode(':', $tag); 1112 $count = count($tags); 1115 $t = $tags[$i]; 2126 $tags = explode(':', $tag); 2128 if (count($tags) > 1) { [all …]
|
/webtrees/app/Factories/ |
H A D | ElementFactory.php | 76 foreach ($this->elements as $tags => $element) { 77 if (str_contains($tags, '*')) { 78 $regex = '/^' . strtr($tags, ['*' => '[^:]+']) . '$/';
|
/webtrees/app/Elements/ |
H A D | EventsRecorded.php | 158 $tags = explode(',', $this->canonical($value)); 170 }, $tags);
|
/webtrees/resources/lang/ko/ |
H A D | messages.po | 1481 #: resources/views/admin/tags.phtml:264 3902 #: resources/views/admin/tags.phtml:27 3941 msgid "Convert %s tags to GEDCOM 5.5.1" 4282 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4283 msgid "Custom GEDCOM tags" 4284 msgstr "사용자정의 GEDCOM tags" 4287 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5159 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5160 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5161 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 [all …]
|
/webtrees/resources/views/ |
H A D | fact-gedcom-fields.phtml | 26 [, $levels, $tags, $values] = $matches; 34 $hierarchy[$levels[$key]] = $tags[$key];
|
/webtrees/resources/lang/hi/ |
H A D | messages.po | 1503 #: resources/views/admin/tags.phtml:264 3925 #: resources/views/admin/tags.phtml:27 3964 msgid "Convert %s tags to GEDCOM 5.5.1" 4305 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4306 msgid "Custom GEDCOM tags" 4310 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5182 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5183 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5184 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5185 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|
/webtrees/resources/lang/bg/ |
H A D | messages.po | 1498 #: resources/views/admin/tags.phtml:264 3920 #: resources/views/admin/tags.phtml:27 3959 msgid "Convert %s tags to GEDCOM 5.5.1" 4300 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4301 msgid "Custom GEDCOM tags" 4305 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5177 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5178 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5179 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5180 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|
/webtrees/resources/lang/fa/ |
H A D | messages.po | 1501 #: resources/views/admin/tags.phtml:264 3923 #: resources/views/admin/tags.phtml:27 3962 msgid "Convert %s tags to GEDCOM 5.5.1" 4303 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4304 msgid "Custom GEDCOM tags" 4308 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5180 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5181 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5182 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5183 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|
/webtrees/resources/lang/tt/ |
H A D | messages.po | 1482 #: resources/views/admin/tags.phtml:264 3903 #: resources/views/admin/tags.phtml:27 3942 msgid "Convert %s tags to GEDCOM 5.5.1" 4283 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4284 msgid "Custom GEDCOM tags" 4288 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5160 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5161 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5162 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5163 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|
/webtrees/resources/lang/ur/ |
H A D | messages.po | 1503 #: resources/views/admin/tags.phtml:264 3925 #: resources/views/admin/tags.phtml:27 3964 msgid "Convert %s tags to GEDCOM 5.5.1" 4305 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4306 msgid "Custom GEDCOM tags" 4310 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5182 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5183 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5184 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5185 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|
/webtrees/resources/lang/yi/ |
H A D | messages.po | 1499 #: resources/views/admin/tags.phtml:264 3921 #: resources/views/admin/tags.phtml:27 3960 msgid "Convert %s tags to GEDCOM 5.5.1" 4301 #: app/CustomTags/Gedcom7.php:104 resources/views/admin/tags.phtml:1020 4302 msgid "Custom GEDCOM tags" 4306 msgid "Custom GEDCOM tags are discouraged. Try to use only standard GEDCOM tags." 5178 #: resources/views/admin/tags.phtml:53 resources/views/admin/tags.phtml:183 5179 #: resources/views/admin/tags.phtml:275 resources/views/admin/tags.phtml:337 5180 #: resources/views/admin/tags.phtml:412 resources/views/admin/tags.phtml:451 5181 #: resources/views/admin/tags.phtml:735 resources/views/admin/tags.phtml:789 [all …]
|