-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathedit_profile.php
111 lines (95 loc) · 3.61 KB
/
edit_profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Configure Enrolkey profile mapping
*
* @package auth_enrolkey
* @author Nicholas Hoobin <[email protected]>
* @copyright 2021 Catalyst IT
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use auth_enrolkey\form\enrolkey_profile_form;
use auth_enrolkey\persistent\enrolkey_profile_mapping;
require_once(__DIR__.'/../../config.php');
require_once($CFG->libdir.'/adminlib.php');
admin_externalpage_setup('auth_enrolkey_manage');
$enrolid = required_param('id', PARAM_INT);
$baseurl = new moodle_url('/auth/enrolkey/edit_profile.php', ['id' => $enrolid]);
$PAGE->set_url($baseurl);
$PAGE->set_title(get_string('title_profile', 'auth_enrolkey'));
$output = $PAGE->get_renderer('auth_enrolkey');
$records = enrolkey_profile_mapping::get_records_by_enrolid($enrolid);
$customdata = ['currentdata' => $records];
$form = new enrolkey_profile_form($baseurl, $customdata);
// Get the data. This ensures that the form was validated.
if ($form && $form->is_cancelled()) {
redirect(new moodle_url('/auth/enrolkey/manage.php'));
} else if (optional_param('resetbutton', 0, PARAM_ALPHA)) {
foreach ($records as $persistent) {
$persistent->delete();
unset($records, $persistent);
}
redirect($baseurl);
} else if (($data = $form->get_data())) {
$ignore = [
'submitbutton',
'cancelbutton',
'resetbutton',
];
foreach ($data as $key => $value) {
// Ignore the buttons.
if (in_array($key, $ignore)) {
continue;
}
// Ignore the headers.
if (preg_match("/^mform_isexpanded_id.*/", $key, $matches)) {
continue;
}
if ($value == '') {
// Delete the persistent if it exists.
if (array_key_exists($key, $records)) {
$persistent = $records[$key];
$persistent->delete();
}
} else if (is_array($value)) {
// Special case for 'interests' tag list and potentially others.
// TODO: Revisit this?
null;
} else {
// Update an existing persistent record.
if (array_key_exists($key, $records)) {
$persistent = $records[$key];
$persistent->set('profilefielddata', $value);
$persistent->update();
} else {
// Create the persistent.
$pdata = (object) [
'enrolid' => $enrolid,
'profilefieldname' => $key,
'profilefielddata' => $value,
];
$persistent = new enrolkey_profile_mapping(0, $pdata);
$persistent->save();
}
}
}
redirect(new moodle_url('/auth/enrolkey/manage.php'));
}
echo $output->header();
echo $output->heading(get_string('title_profile', 'auth_enrolkey'));
$form->set_autocomplete_data($records);
$form->display();
echo $output->footer();