1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2020 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 <http://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees; 21 22use Closure; 23use Fisharebest\Webtrees\Http\RequestHandlers\HeaderPage; 24 25/** 26 * A GEDCOM header (HEAD) object. 27 */ 28class Header extends GedcomRecord 29{ 30 public const RECORD_TYPE = 'HEAD'; 31 32 protected const ROUTE_NAME = HeaderPage::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 Factory::header() 38 * 39 * @param Tree $tree 40 * 41 * @return Closure 42 */ 43 public static function rowMapper(Tree $tree): Closure 44 { 45 return Registry::headerFactory()->mapper($tree); 46 } 47 48 /** 49 * Get an instance of a header 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 Factory::header() 54 * 55 * @param string $xref 56 * @param Tree $tree 57 * @param string|null $gedcom 58 * 59 * @return Header|null 60 */ 61 public static function getInstance(string $xref, Tree $tree, string $gedcom = null): ?Header 62 { 63 return Registry::headerFactory()->make($xref, $tree, $gedcom); 64 } 65 66 /** 67 * Generate a private version of this record 68 * 69 * @param int $access_level 70 * 71 * @return string 72 */ 73 protected function createPrivateGedcomRecord(int $access_level): string 74 { 75 return '0 HEAD' . $this->xref . "@ SUBM\n1 NAME " . I18N::translate('Private'); 76 } 77 78 /** 79 * Extract names from the GEDCOM record. 80 * 81 * @return void 82 */ 83 public function extractNames(): void 84 { 85 $this->getAllNames[] = [ 86 'type' => static::RECORD_TYPE, 87 'sort' => I18N::translate('Header'), 88 'full' => I18N::translate('Header'), 89 'fullNN' => I18N::translate('Header'), 90 ]; 91 } 92} 93