xref: /webtrees/app/Elements/Uid.php (revision d11be7027e34e3121be11cc025421873364403f9)
1701f5d18SGreg Roach<?php
2701f5d18SGreg Roach
3701f5d18SGreg Roach/**
4701f5d18SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6701f5d18SGreg Roach * This program is free software: you can redistribute it and/or modify
7701f5d18SGreg Roach * it under the terms of the GNU General Public License as published by
8701f5d18SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9701f5d18SGreg Roach * (at your option) any later version.
10701f5d18SGreg Roach * This program is distributed in the hope that it will be useful,
11701f5d18SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12701f5d18SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13701f5d18SGreg Roach * GNU General Public License for more details.
14701f5d18SGreg Roach * You should have received a copy of the GNU General Public License
15701f5d18SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16701f5d18SGreg Roach */
17701f5d18SGreg Roach
18701f5d18SGreg Roachdeclare(strict_types=1);
19701f5d18SGreg Roach
20701f5d18SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21701f5d18SGreg Roach
222e464181SGreg Roachuse Fisharebest\Webtrees\Registry;
23701f5d18SGreg Roachuse Fisharebest\Webtrees\Tree;
24701f5d18SGreg Roach
25701f5d18SGreg Roach/**
26701f5d18SGreg Roach * UID fields
27701f5d18SGreg Roach */
28701f5d18SGreg Roachclass Uid extends AbstractElement
29701f5d18SGreg Roach{
30701f5d18SGreg Roach    protected const MAXIMUM_LENGTH = 36;
31701f5d18SGreg Roach
32701f5d18SGreg Roach    /**
33701f5d18SGreg Roach     * Create a default value for this element.
34701f5d18SGreg Roach     *
35701f5d18SGreg Roach     * @param Tree $tree
36701f5d18SGreg Roach     *
37701f5d18SGreg Roach     * @return string
38701f5d18SGreg Roach     */
39701f5d18SGreg Roach    public function default(Tree $tree): string
40701f5d18SGreg Roach    {
41701f5d18SGreg Roach        if ($tree->getPreference('GENERATE_UIDS') === '1') {
422e464181SGreg Roach            return Registry::idFactory()->uuid();
43701f5d18SGreg Roach        }
44701f5d18SGreg Roach
45701f5d18SGreg Roach        return '';
46701f5d18SGreg Roach    }
47701f5d18SGreg Roach}
48