Moodle release 2.8rc1
[moodle.git] / login / signup.php
blob990a9e94b803ab2006cceed6720d703dc51fcadc
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * user signup page.
21 * @package core
22 * @subpackage auth
23 * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require('../config.php');
28 require_once($CFG->dirroot . '/user/editlib.php');
30 // Try to prevent searching for sites that allow sign-up.
31 if (!isset($CFG->additionalhtmlhead)) {
32 $CFG->additionalhtmlhead = '';
34 $CFG->additionalhtmlhead .= '<meta name="robots" content="noindex" />';
36 if (empty($CFG->registerauth)) {
37 print_error('notlocalisederrormessage', 'error', '', 'Sorry, you may not use this page.');
39 $authplugin = get_auth_plugin($CFG->registerauth);
41 if (!$authplugin->can_signup()) {
42 print_error('notlocalisederrormessage', 'error', '', 'Sorry, you may not use this page.');
45 //HTTPS is required in this page when $CFG->loginhttps enabled
46 $PAGE->https_required();
48 $PAGE->set_url('/login/signup.php');
49 $PAGE->set_context(context_system::instance());
51 $mform_signup = $authplugin->signup_form();
53 if ($mform_signup->is_cancelled()) {
54 redirect(get_login_url());
56 } else if ($user = $mform_signup->get_data()) {
57 $user->confirmed = 0;
58 $user->lang = current_language();
59 $user->firstaccess = time();
60 $user->timecreated = time();
61 $user->mnethostid = $CFG->mnet_localhost_id;
62 $user->secret = random_string(15);
63 $user->auth = $CFG->registerauth;
64 // Initialize alternate name fields to empty strings.
65 $namefields = array_diff(get_all_user_name_fields(), useredit_get_required_name_fields());
66 foreach ($namefields as $namefield) {
67 $user->$namefield = '';
70 $authplugin->user_signup($user, true); // prints notice and link to login/index.php
71 exit; //never reached
74 // make sure we really are on the https page when https login required
75 $PAGE->verify_https_required();
78 $newaccount = get_string('newaccount');
79 $login = get_string('login');
81 $PAGE->navbar->add($login);
82 $PAGE->navbar->add($newaccount);
84 $PAGE->set_title($newaccount);
85 $PAGE->set_heading($SITE->fullname);
87 echo $OUTPUT->header();
88 $mform_signup->display();
89 echo $OUTPUT->footer();