1*e7e5b015SGreg Roach<?php 2*e7e5b015SGreg Roach 3*e7e5b015SGreg Roach/** 4*e7e5b015SGreg Roach * webtrees: online genealogy 5*e7e5b015SGreg Roach * Copyright (C) 2021 webtrees development team 6*e7e5b015SGreg Roach * This program is free software: you can redistribute it and/or modify 7*e7e5b015SGreg Roach * it under the terms of the GNU General Public License as published by 8*e7e5b015SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9*e7e5b015SGreg Roach * (at your option) any later version. 10*e7e5b015SGreg Roach * This program is distributed in the hope that it will be useful, 11*e7e5b015SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*e7e5b015SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*e7e5b015SGreg Roach * GNU General Public License for more details. 14*e7e5b015SGreg Roach * You should have received a copy of the GNU General Public License 15*e7e5b015SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16*e7e5b015SGreg Roach */ 17*e7e5b015SGreg Roach 18*e7e5b015SGreg Roachdeclare(strict_types=1); 19*e7e5b015SGreg Roach 20*e7e5b015SGreg Roachnamespace Fisharebest\Webtrees\Elements; 21*e7e5b015SGreg Roach 22*e7e5b015SGreg Roach/** 23*e7e5b015SGreg Roach * A level 0 header record 24*e7e5b015SGreg Roach */ 25*e7e5b015SGreg Roachclass HeaderRecord extends AbstractElement 26*e7e5b015SGreg Roach{ 27*e7e5b015SGreg Roach protected const SUBTAGS = [ 28*e7e5b015SGreg Roach 'SOUR' => '1:1', 29*e7e5b015SGreg Roach 'DEST' => '0:1', 30*e7e5b015SGreg Roach 'DATE' => '0:1', 31*e7e5b015SGreg Roach 'SUBM' => '1:1', 32*e7e5b015SGreg Roach 'SUBN' => '0:1', 33*e7e5b015SGreg Roach 'FILE' => '0:1', 34*e7e5b015SGreg Roach 'COPR' => '0:1', 35*e7e5b015SGreg Roach 'GEDC' => '0:1', 36*e7e5b015SGreg Roach 'CHAR' => '0:1', 37*e7e5b015SGreg Roach 'LANG' => '0:1', 38*e7e5b015SGreg Roach 'PLAC' => '0:1', 39*e7e5b015SGreg Roach 'NOTE' => '0:1', 40*e7e5b015SGreg Roach ]; 41*e7e5b015SGreg Roach} 42