Merge branch 'MDL-60249-34' of git://github.com/damyon/moodle into MOODLE_34_STABLE
[moodle.git] / admin / registration / renewregistration.php
blob7926e0fc85fc2caee3b1918d07bd9a0494ed2949
1 <?php
3 ///////////////////////////////////////////////////////////////////////////
4 // //
5 // This file is part of Moodle - http://moodle.org/ //
6 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
7 // //
8 // Moodle is free software: you can redistribute it and/or modify //
9 // it under the terms of the GNU General Public License as published by //
10 // the Free Software Foundation, either version 3 of the License, or //
11 // (at your option) any later version. //
12 // //
13 // Moodle is distributed in the hope that it will be useful, //
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
16 // GNU General Public License for more details. //
17 // //
18 // You should have received a copy of the GNU General Public License //
19 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. //
20 // //
21 ///////////////////////////////////////////////////////////////////////////
23 /**
24 * @package moodle
25 * @subpackage registration
26 * @author Jerome Mouneyrac <jerome@mouneyrac.com>
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL
28 * @copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com
30 * The administrator is redirect to this page from the hub to renew a registration
31 * process because
34 require('../../config.php');
35 require_once($CFG->libdir . '/adminlib.php');
37 $url = optional_param('url', '', PARAM_URL);
38 $token = optional_param('token', '', PARAM_TEXT);
40 admin_externalpage_setup('registrationmoodleorg');
42 if ($url !== HUB_MOODLEORGHUBURL) {
43 throw new moodle_exception('errorotherhubsnotsupported', 'hub');
46 // Check that we are waiting a confirmation from this hub, and check that the token is correct.
47 \core\hub\registration::reset_site_identifier($token);
49 echo $OUTPUT->header();
50 echo $OUTPUT->heading(get_string('renewregistration', 'hub'), 3, 'main');
51 $hublink = html_writer::tag('a', 'Moodle.net', array('href' => HUB_MOODLEORGHUBURL));
53 $deletedregmsg = get_string('previousregistrationdeleted', 'hub', $hublink);
55 $button = new single_button(new moodle_url('/admin/registration/index.php'),
56 get_string('restartregistration', 'hub'));
57 $button->class = 'restartregbutton';
59 echo html_writer::tag('div', $deletedregmsg . $OUTPUT->render($button),
60 array('class' => 'mdl-align'));
62 echo $OUTPUT->footer();