xref: /webtrees/app/Module/ModuleExternalUrlInterface.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
18e5c5efeSGreg Roach<?php
23976b470SGreg Roach
38e5c5efeSGreg Roach/**
48e5c5efeSGreg Roach * webtrees: online genealogy
5*89f7189bSGreg Roach * Copyright (C) 2021 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
15*89f7189bSGreg 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/**
238e5c5efeSGreg Roach * Interface ModuleExternalUrlInterface - Classes and libraries for module system
248e5c5efeSGreg Roach */
258e5c5efeSGreg Roachinterface ModuleExternalUrlInterface extends ModuleInterface
268e5c5efeSGreg Roach{
278e5c5efeSGreg Roach    /**
288e5c5efeSGreg Roach     * Home page for the service.
298e5c5efeSGreg Roach     *
308e5c5efeSGreg Roach     * @return string
318e5c5efeSGreg Roach     */
328e5c5efeSGreg Roach    public function externalUrl(): string;
338e5c5efeSGreg Roach}
34