Lines Matching refs:place_name
42 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 !== '') {
188 $parent_text = Gedcom::PLACE_SEPARATOR . $this->place_name;
232 return $this->place_name;
242 $place_name = $this->parts->first() ?? I18N::translate('unknown');
244 return '<bdi>' . e($place_name) . '</bdi>';