Home
last modified time | relevance | path

Searched refs:PLACE_SEPARATOR (Results 1 – 6 of 6) sorted by relevance

/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);
188 $parent_text = Gedcom::PLACE_SEPARATOR . $this->place_name;
H A DPlaceLocation.php55 $this->location_name = $this->parts->implode(Gedcom::PLACE_SEPARATOR);
65 return new self($this->parts->slice(1)->implode(Gedcom::PLACE_SEPARATOR));
H A DGedcom.php259 public const PLACE_SEPARATOR = ', '; define in Fisharebest\\Webtrees\\Gedcom
/webtrees/app/Services/
H A DMapDataService.php64 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…
/webtrees/app/Http/RequestHandlers/
H A DMapDataExportGeoJson.php97 'name' => implode(Gedcom::PLACE_SEPARATOR, array_reverse($hierarchy)),
H A DMapDataImportAction.php146 … $name = implode(Gedcom::PLACE_SEPARATOR, array_reverse(array_slice($row, 1, 1 + $level)));