Home
last modified time | relevance | path

Searched refs:place_name (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/
H A DPlace.php42 private string $place_name; variable in Fisharebest\\Webtrees\\Place
52 * @param string $place_name
55 public function __construct(string $place_name, Tree $tree) argument
58 $place_name = trim($place_name);
59 …$this->parts = new Collection(preg_split(Gedcom::PLACE_SEPARATOR_REGEX, $place_name, -1, PREG_SPLI…
62 $this->place_name = $this->parts->implode(Gedcom::PLACE_SEPARATOR);
93 $place_name = $parts->implode(Gedcom::PLACE_SEPARATOR);
95 return new Place($place_name, $tree);
116 return Registry::cache()->array()->remember('place-' . $this->place_name, function (): int {
187 if ($this->place_name !== '') {
[all …]
/webtrees/app/Services/
H A DGedcomImportService.php457 $place_name = $match[1];
474 $location = new PlaceLocation($place_name);
494 $place_name = $match[1];
511 $location = new PlaceLocation($place_name);
541 foreach ($places as $place_name) {
542 $place = new Place($place_name, $tree);
H A DMapDataService.php305 foreach ($hierarchy as $place_name) {
308 ->where('p_place', '=', $place_name)