1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees; 21 22use Closure; 23use Fisharebest\Webtrees\Http\RequestHandlers\RepositoryPage; 24 25/** 26 * A GEDCOM repository (REPO) object. 27 */ 28class Repository extends GedcomRecord 29{ 30 public const RECORD_TYPE = 'REPO'; 31 32 protected const ROUTE_NAME = RepositoryPage::class; 33 34 /** 35 * A closure which will create a record from a database row. 36 * 37 * @deprecated since 2.0.4. Will be removed in 2.1.0 - Use Registry::repositoryFactory() 38 * 39 * @param Tree $tree 40 * 41 * @return Closure 42 */ 43 public static function rowMapper(Tree $tree): Closure 44 { 45 return Registry::repositoryFactory()->mapper($tree); 46 } 47 48 /** 49 * Get an instance of a repository object. For single records, 50 * we just receive the XREF. For bulk records (such as lists 51 * and search results) we can receive the GEDCOM data as well. 52 * 53 * @deprecated since 2.0.4. Will be removed in 2.1.0 - Use Registry::repositoryFactory() 54 * 55 * @param string $xref 56 * @param Tree $tree 57 * @param string|null $gedcom 58 * 59 * @return Repository|null 60 */ 61 public static function getInstance(string $xref, Tree $tree, string $gedcom = null): ?Repository 62 { 63 return Registry::repositoryFactory()->make($xref, $tree, $gedcom); 64 } 65 66 /** 67 * Extract names from the GEDCOM record. 68 * 69 * @return void 70 */ 71 public function extractNames(): void 72 { 73 $this->extractNamesFromFacts(1, 'NAME', $this->facts(['NAME'])); 74 } 75} 76