forked from totara/facetoface-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomfield.php
More file actions
151 lines (123 loc) · 4.58 KB
/
customfield.php
File metadata and controls
151 lines (123 loc) · 4.58 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
global $DB;
require_once '../../config.php';
require_once 'customfield_form.php';
$id = required_param('id', PARAM_INT); // ID in facetoface_session_field
$d = optional_param('d', false, PARAM_BOOL); // set to true to delete the given field
$confirm = optional_param('confirm', false, PARAM_BOOL); // delete confirmationx
$field = null;
if ($id > 0) {
if (!$field = $DB->get_record('facetoface_session_field', array('id'=>$id))) {
error('Field ID is incorrect: '. $id);
}
}
$PAGE->set_url('/mod/facetoface/customfield.php', array('id' => $id, 'd'=>$d, 'confirm'=>$confirm));
admin_externalpage_setup('managemodules'); // this is hacky, tehre should be a special hidden page for it
$contextsystem = get_context_instance(CONTEXT_SYSTEM);
require_capability('moodle/site:config', $contextsystem);
$returnurl = "$CFG->wwwroot/admin/settings.php?section=modsettingfacetoface";
// Header
$title = get_string('addnewfield', 'facetoface');
if ($field != null) {
$title = $field->name;
}
// Handle deletions
if (!empty($d)) {
if (!confirm_sesskey()) {
print_error('confirmsesskeybad', 'error');
}
if (!$confirm) {
echo $OUTPUT->header(format_string($title), '', $navigation, '', '', true);
notice_yesno(get_string('fielddeleteconfirm', 'facetoface', format_string($field->name)),
"customfield.php?id=$id&d=1&confirm=1&sesskey=$USER->sesskey", $returnurl);
print_footer();
exit;
}
else {
$transaction = $DB->start_delegated_transaction();
try {
if (!$DB->delete_records('facetoface_session_field', 'id', $id)) {
throw new Exception(get_string('error:couldnotdeletefield', 'facetoface'));
}
if (!$DB->delete_records('facetoface_session_data', 'fieldid', $id)) {
throw new Exception(get_string('error:couldnotdeletefield', 'facetoface'));
}
$transaction->allow_commit();
} catch (Exception $e) {
$transaction->rollback($e);
}
redirect($returnurl);
}
}
$mform = new mod_facetoface_customfield_form(null, compact('id'));
if ($mform->is_cancelled()){
redirect($returnurl);
}
if ($fromform = $mform->get_data()) { // Form submitted
if (empty($fromform->submitbutton)) {
print_error('error:unknownbuttonclicked', 'facetoface', $returnurl);
}
// Post-process the input
if (empty($fromform->required)) {
$fromform->required = 0;
}
if (empty($fromform->isfilter)) {
$fromform->isfilter = 0;
}
if (empty($fromform->showinsummary)) {
$fromform->showinsummary = 0;
}
if (empty($fromform->type)) {
$fromform->possiblevalues = '';
}
$values_list = explode("\n", trim($fromform->possiblevalues));
$pos_vals = array();
foreach ($values_list as $val) {
$trimmed_val = trim($val);
if (strlen($trimmed_val) != 0) {
$pos_vals[] = $trimmed_val;
}
}
$todb = new object();
$todb->name = trim($fromform->name);
$todb->shortname = trim($fromform->shortname);
$todb->type = $fromform->type;
$todb->defaultvalue = trim($fromform->defaultvalue);
$todb->possiblevalues = implode(CUSTOMFIELD_DELIMITER, $pos_vals);
$todb->required = $fromform->required;
$todb->isfilter = $fromform->isfilter;
$todb->showinsummary = $fromform->showinsummary;
if ($field != null) {
$todb->id = $field->id;
if (!$DB->update_record('facetoface_session_field', $todb)) {
print_error('error:couldnotupdatefield', 'facetoface', $returnurl);
}
}
else {
if (!$DB->insert_record('facetoface_session_field', $todb)) {
print_error('error:couldnotaddfield', 'facetoface', $returnurl);
}
}
redirect($returnurl);
}
elseif ($field != null) { // Edit mode
// Set values for the form
$toform = new object();
$toform->name = $field->name;
$toform->shortname = $field->shortname;
$toform->type = $field->type;
$toform->defaultvalue = $field->defaultvalue;
$value_array = explode(CUSTOMFIELD_DELIMITER, $field->possiblevalues);
$possible_values = implode(PHP_EOL, $value_array);
$toform->possiblevalues = $possible_values;
$toform->required = ($field->required == 1);
$toform->isfilter = ($field->isfilter == 1);
$toform->showinsummary = ($field->showinsummary == 1);
$mform->set_data($toform);
}
echo $OUTPUT->header();
echo $OUTPUT->box_start();
echo $OUTPUT->heading($title);
$mform->display();
echo $OUTPUT->box_end();
echo $OUTPUT->footer();