xref: /webtrees/app/Elements/Creation.php (revision 701f5d180b85b9d3e0747b6ddc9e9d64dd73d0d6)
1*701f5d18SGreg Roach<?php
2*701f5d18SGreg Roach
3*701f5d18SGreg Roach/**
4*701f5d18SGreg Roach * webtrees: online genealogy
5*701f5d18SGreg Roach * Copyright (C) 2022 webtrees development team
6*701f5d18SGreg Roach * This program is free software: you can redistribute it and/or modify
7*701f5d18SGreg Roach * it under the terms of the GNU General Public License as published by
8*701f5d18SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9*701f5d18SGreg Roach * (at your option) any later version.
10*701f5d18SGreg Roach * This program is distributed in the hope that it will be useful,
11*701f5d18SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*701f5d18SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*701f5d18SGreg Roach * GNU General Public License for more details.
14*701f5d18SGreg Roach * You should have received a copy of the GNU General Public License
15*701f5d18SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16*701f5d18SGreg Roach */
17*701f5d18SGreg Roach
18*701f5d18SGreg Roachdeclare(strict_types=1);
19*701f5d18SGreg Roach
20*701f5d18SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21*701f5d18SGreg Roach
22*701f5d18SGreg Roach/**
23*701f5d18SGreg Roach * Record creation time
24*701f5d18SGreg Roach */
25*701f5d18SGreg Roachclass Creation extends EmptyElement
26*701f5d18SGreg Roach{
27*701f5d18SGreg Roach    protected const SUBTAGS = [
28*701f5d18SGreg Roach        'DATE' => '1:1',
29*701f5d18SGreg Roach    ];
30*701f5d18SGreg Roach}
31