xref: /webtrees/app/Module/ModuleExternalUrlTrait.php (revision 6bd19c8ce39244f770147102c818d9c7d9e13667)
18e5c5efeSGreg Roach<?php
23976b470SGreg Roach
38e5c5efeSGreg Roach/**
48e5c5efeSGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
68e5c5efeSGreg Roach * This program is free software: you can redistribute it and/or modify
78e5c5efeSGreg Roach * it under the terms of the GNU General Public License as published by
88e5c5efeSGreg Roach * the Free Software Foundation, either version 3 of the License, or
98e5c5efeSGreg Roach * (at your option) any later version.
108e5c5efeSGreg Roach * This program is distributed in the hope that it will be useful,
118e5c5efeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
128e5c5efeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
138e5c5efeSGreg Roach * GNU General Public License for more details.
148e5c5efeSGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
168e5c5efeSGreg Roach */
17fcfa147eSGreg Roach
188e5c5efeSGreg Roachdeclare(strict_types=1);
198e5c5efeSGreg Roach
208e5c5efeSGreg Roachnamespace Fisharebest\Webtrees\Module;
218e5c5efeSGreg Roach
228e5c5efeSGreg Roach/**
23*6bd19c8cSGreg Roach * Trait ModuleExternalUrlTrait - default implementation of ModuleExternalUrlInterface.
248e5c5efeSGreg Roach */
258e5c5efeSGreg Roachtrait ModuleExternalUrlTrait
268e5c5efeSGreg Roach{
278e5c5efeSGreg Roach    /**
288e5c5efeSGreg Roach     * Home page for the service.
298e5c5efeSGreg Roach     */
308e5c5efeSGreg Roach    public function externalUrl(): string
318e5c5efeSGreg Roach    {
328e5c5efeSGreg Roach        return '';
338e5c5efeSGreg Roach    }
348e5c5efeSGreg Roach}
35