. /** * A settings page which can be viewed with a link directly. * * @package core_admin * @copyright 2021 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_admin\local\settings; use moodle_url; interface linkable_settings_page { /** * Get the URL to view this settings page. * * @return moodle_url */ public function get_settings_page_url(): moodle_url; }