-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomfield.php
149 lines (126 loc) · 4.59 KB
/
customfield.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
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
<?php
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 = get_record('facetoface_session_field', 'id', $id)) {
error('Field ID is incorrect: '. $id);
}
}
$contextsystem = get_context_instance(CONTEXT_SYSTEM);
require_login(0, false);
require_capability('moodle/site:config', $contextsystem);
$returnurl = "$CFG->wwwroot/admin/settings.php?section=modsettingfacetoface";
// Header
$navlinks = array();
$navlinks[] = array('name' => get_string('administration'));
$navlinks[] = array('name' => get_string('managemodules'));
$navlinks[] = array('name' => get_string('activities'));
$navlinks[] = array('name' => get_string('modulename', 'facetoface'));
$title = get_string('addnewfield', 'facetoface');
if ($field != null) {
$title = $field->name;
}
$navlinks[] = array('name' => format_string($title));
$navigation = build_navigation($navlinks);
// Handle deletions
if (!empty($d)) {
if (!confirm_sesskey()) {
print_error('confirmsesskeybad', 'error');
}
if (!$confirm) {
print_header_simple(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 {
begin_sql();
if (!delete_records('facetoface_session_field', 'id', $id)) {
rollback_sql();
print_error('error:couldnotdeletefield', 'facetoface', $returnurl);
}
if (!delete_records('facetoface_session_data', 'fieldid', $id)) {
rollback_sql();
print_error('error:couldnotdeletefield', 'facetoface', $returnurl);
}
commit_sql();
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 (!update_record('facetoface_session_field', $todb)) {
print_error('error:couldnotupdatefield', 'facetoface', $returnurl);
}
}
else {
if (!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);
}
print_header_simple(format_string($title), '', $navigation, '', '', true);
print_box_start();
print_heading($title);
$mform->display();
print_box_end();
print_footer();