-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsitenotice.php
141 lines (115 loc) · 4.34 KB
/
sitenotice.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
<?php
require_once '../../config.php';
require_once 'sitenotice_form.php';
$id = required_param('id', PARAM_INT); // ID in webinar_notice
$d = optional_param('d', false, PARAM_BOOL); // set to true to delete the given notice
$confirm = optional_param('confirm', false, PARAM_BOOL); // delete confirmation
$notice = null;
if ($id > 0) {
if (!$notice = get_record('webinar_notice', 'id', $id)) {
error('Notice 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=modsettingwebinar";
// 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', 'webinar'));
$title = get_string('addnewnotice', 'webinar');
if ($notice != null) {
$title = $notice->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);
$info = new object();
$info->name = format_string($notice->name);
$info->text = format_text($notice->text, FORMAT_HTML);
notice_yesno(get_string('noticedeleteconfirm', 'webinar', $info),
"sitenotice.php?id=$id&d=1&confirm=1&sesskey=$USER->sesskey", $returnurl);
print_footer();
exit;
}
else {
begin_sql();
if (!delete_records('webinar_notice', 'id', $id)) {
rollback_sql();
print_error('error:couldnotdeletenotice', 'webinar', $returnurl);
}
if (!delete_records('webinar_notice_data', 'noticeid', $id)) {
rollback_sql();
print_error('error:couldnotdeletenotice', 'webinar', $returnurl);
}
commit_sql();
redirect($returnurl);
}
}
$customfields = webinar_get_session_customfields();
$mform = new mod_webinar_sitenotice_form(null, compact('id', 'customfields'));
if ($mform->is_cancelled()){
redirect($returnurl);
}
if ($fromform = $mform->get_data()) { // Form submitted
if (empty($fromform->submitbutton)) {
print_error('error:unknownbuttonclicked', 'webinar', $returnurl);
}
$todb = new object();
$todb->name = trim($fromform->name);
$todb->text = trim($fromform->text);
begin_sql();
if ($notice != null) {
$todb->id = $notice->id;
if (!update_record('webinar_notice', $todb)) {
rollback_sql();
print_error('error:couldnotupdatenotice', 'webinar', $returnurl);
}
}
else {
$notice = new object();
if (!$notice->id = insert_record('webinar_notice', $todb)) {
rollback_sql();
print_error('error:couldnotaddnotice', 'webinar', $returnurl);
}
}
foreach ($customfields as $field) {
$fieldname = "custom_$field->shortname";
if (empty($fromform->$fieldname)) {
$fromform->$fieldname = ''; // need to be able to clear fields
}
if (!webinar_save_customfield_value($field->id, $fromform->$fieldname, $notice->id, 'notice')) {
rollback_sql();
print_error('error:couldnotsavecustomfield', 'webinar', $returnurl);
}
}
commit_sql();
redirect($returnurl);
}
elseif ($notice != null) { // Edit mode
// Set values for the form
$toform = new object();
$toform->name = $notice->name;
$toform->text = $notice->text;
foreach ($customfields as $field) {
$fieldname = "custom_$field->shortname";
$toform->$fieldname = webinar_get_customfield_value($field, $notice->id, 'notice');
}
$mform->set_data($toform);
}
print_header_simple(format_string($title), '', $navigation, '', '', true);
echo $OUTPUT->box_start();
echo $OUTPUT->heading($title);
//print_heading($title);
$mform->display();
echo $OUTPUT->box_end();
echo $OUTPUT->footer();