Searched refs:PLACE_SEPARATOR (Results 1 – 6 of 6) sorted by relevance
/webtrees/app/ |
H A D | Place.php | 62 $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 D | PlaceLocation.php | 55 $this->location_name = $this->parts->implode(Gedcom::PLACE_SEPARATOR); 65 return new self($this->parts->slice(1)->implode(Gedcom::PLACE_SEPARATOR));
|
H A D | Gedcom.php | 259 public const PLACE_SEPARATOR = ', '; define in Fisharebest\\Webtrees\\Gedcom
|
/webtrees/app/Services/ |
H A D | MapDataService.php | 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…
|
/webtrees/app/Http/RequestHandlers/ |
H A D | MapDataExportGeoJson.php | 97 'name' => implode(Gedcom::PLACE_SEPARATOR, array_reverse($hierarchy)),
|
H A D | MapDataImportAction.php | 146 … $name = implode(Gedcom::PLACE_SEPARATOR, array_reverse(array_slice($row, 1, 1 + $level)));
|