Home
last modified time | relevance | path

Searched refs:implode (Results 1 – 25 of 82) sorted by relevance

1234

/webtrees/app/Http/RequestHandlers/
H A DTreePreferencesAction.php34 use function implode; alias
58 …$calendar_format = implode('_and_', array_unique([$calendar_format_0, $calendar_format…
98 $tree->setPreference('CHART_BOX_TAGS', implode(',', $chart_box_tags));
102 $tree->setPreference('FAM_FACTS_QUICK', implode(',', $fam_facts_quick));
106 $tree->setPreference('INDI_FACTS_QUICK', implode(',', $indi_facts_quick));
112 $tree->setPreference('QUICK_REQUIRED_FACTS', implode(',', $quick_required_facts));
113 $tree->setPreference('QUICK_REQUIRED_FAMFACTS', implode(',', $quick_required_famfacts));
125 $tree->setPreference('SHOW_RELATIVES_EVENTS', implode(',', $show_relatives_events));
H A DSiteTagsAction.php32 use function implode; alias
61 Site::setPreference('CUSTOM_FAMILY_TAGS', implode(',', $custom_family_tags));
62 Site::setPreference('CUSTOM_INDIVIDUAL_TAGS', implode(',', $custom_individual_tags));
H A DFamilyPage.php39 use function implode; alias
149 ->implode(', ');
157 return implode(', ', $meta_facts);
H A DIndividualPage.php48 use function implode; alias
219 …ic fn (Individual $individual): string => e($individual->getAllNames()[0]['givn']))->implode(', ');
229 return implode(', ', $meta_facts);
H A DPendingChangesLogDownload.php61 implode(',', [
70 ->implode("\n");
H A DReorderMediaAction.php31 use function implode; alias
72 $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts));
H A DReorderMediaFilesAction.php31 use function implode; alias
72 $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts));
H A DReorderFamiliesAction.php31 use function implode; alias
74 $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts));
H A DReorderNamesAction.php31 use function implode; alias
72 $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts));
H A DReorderChildrenAction.php31 use function implode; alias
74 $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts));
/webtrees/app/
H A DPlace.php62 $this->place_name = $this->parts->implode(Gedcom::PLACE_SEPARATOR);
93 $place_name = $parts->implode(Gedcom::PLACE_SEPARATOR);
105 return new self($this->parts->slice(1)->implode(Gedcom::PLACE_SEPARATOR), $this->tree);
260 $full_name = $this->parts->implode(I18N::$list_separator);
287 $short_name = $parts->implode(I18N::$list_separator);
H A DSoundex.php658 return implode(':', $soundex_array);
684 return implode(':', $soundex_array);
782 $tempResult = str_replace('!', '', implode('', $workingEntry));
796 $tempResult = str_replace('!', '', implode('', $workingEntry));
H A DHtml.php24 use function implode; alias
56 return implode(' ', $html);
/webtrees/app/Module/
H A DFixNameTags.php32 use function implode; alias
120 $tags = implode('|', array_keys(self::CONVERT));
146 return implode('<hr>', $diffs);
181 $tags = implode('|', array_keys(self::CONVERT));
H A DOnThisDayModule.php125 $default_events = implode(',', self::DEFAULT_EVENTS);
141 $events_filter = implode('|', $event_array);
234 $this->setBlockSetting($block_id, 'events', implode(',', $events));
247 $default_events = implode(',', self::DEFAULT_EVENTS);
H A DUpcomingAnniversariesModule.php143 $default_events = implode(',', self::DEFAULT_EVENTS);
160 $events_filter = implode('|', $event_array);
264 $this->setBlockSetting($block_id, 'events', implode(',', $events));
277 $default_events = implode(',', self::DEFAULT_EVENTS);
/webtrees/app/Services/
H A DMapDataService.php33 use function implode; alias
64 return new PlaceLocation(implode(Gedcom::PLACE_SEPARATOR, $hierarchy));
127 …->map(static fn (object $row): string => implode(Gedcom::PLACE_SEPARATOR, array_filter((array) $ro…
150 …->map(static fn (object $row): string => implode(Gedcom::PLACE_SEPARATOR, array_filter((array) $ro…
H A DGedcomEditService.php44 use function implode; alias
138 $full_tag = implode(':', array_slice($hierarchy, 0, 1 + (int) $levels[$i]));
178 $gedcom = implode("\n", $gedcom_lines);
317 $return .= "\n" . implode("\n", $parts);
/webtrees/tests/app/Services/
H A DRateLimitServiceTest.php29 use function implode; alias
72 $history = implode(',', range(time() - 35, time() - 31));
86 $history = implode(',', range(time() - 5, time() - 1));
/webtrees/app/SurnameTradition/
H A DDefaultSurnameTradition.php30 use function implode; alias
145 return '1 NAME' . implode($parts);
148 return '1 NAME ' . $name . implode($parts);
/webtrees/resources/views/layouts/
H A Ddefault.phtml67 })->implode('') ?>
142 })->implode('') ?>
187 })->implode('') ?>
H A Dadministration.phtml42 })->implode('') ?>
93 })->implode('') ?>
/webtrees/tests/
H A DTestCase.php47 use function implode; alias
242 … static::fail('Closing tag matches nothing: ' . $match[0] . ' at ' . implode(':', $stack));
249 $message = 'Tag ' . $tag . ' is not allowed at ' . implode(':', $stack) . '.';
/webtrees/app/Encodings/
H A DAbstractEncoding.php24 use function implode; alias
64 return implode('', $chars);
/webtrees/app/Elements/
H A DEventsRecorded.php29 use function implode; alias
172 return implode(I18N::$list_separator, $events);

1234