-
Notifications
You must be signed in to change notification settings - Fork 3
/
edit.php
98 lines (89 loc) · 4.09 KB
/
edit.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
<?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/>.
/**
* This is the create/edit page for a hello world instance.
* @package block
* @subpackage hello_world
* @copyright 2017 benIT
* @author benIT <benoit.works@gmail.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../../config.php');
require_once('helloworld_form.php');
global $DB, $OUTPUT, $PAGE;
// Check for all required variables.
$courseid = required_param('courseid', PARAM_INT);
if (!$course = $DB->get_record('course', array('id' => $courseid))) {
print_error('invalidcourse', 'block_helloworld', $courseid);
}
require_login($course);
require_capability('block/helloworld:managepages', context_course::instance($courseid));
//breadcrumb
$blockid = required_param('blockid', PARAM_INT);
$id = optional_param('id', 0, PARAM_INT);
$viewpage = optional_param('viewpage', false, PARAM_BOOL);
$settingsnode = $PAGE->settingsnav->add(get_string('helloworldsettings', 'block_helloworld'));
$editurl = new moodle_url('/blocks/helloworld/edit.php', array('id' => $id, 'courseid' => $courseid, 'blockid' => $blockid));
$editnode = $settingsnode->add(get_string('editpage', 'block_helloworld'), $editurl);
$editnode->make_active();
$PAGE->set_url('/blocks/helloworld/edit.php', array('id' => $courseid));
$PAGE->set_pagelayout('standard');
$PAGE->set_heading(get_string('editpage', 'block_helloworld'));
$context = context_course::instance($courseid);
$contextid = $context->id;
$PAGE->set_context($context);
// Create some options for the file manager
$filemanageropts = array('subdirs' => 0, 'maxbytes' => '0', 'maxfiles' => 50, 'context' => $context);
$customdata = array('filemanageropts' => $filemanageropts);
$helloworld_form = new helloworld_form(null, $customdata);
$entry = new stdClass;
$entry->blockid = $blockid;
$entry->courseid = $courseid;
$entry->id = $id;
$helloworld_form->set_data($entry);
if ($helloworld_form->is_cancelled()) {
// Cancelled forms redirect to the course main page.
$courseurl = new moodle_url('/course/view.php', array('id' => $courseid));
redirect($courseurl);
} else if ($form_submitted_data = $helloworld_form->get_data()) {
//form has been submitted
file_save_draft_area_files($form_submitted_data->attachment, $context->id, 'block_helloworld', 'attachment',
$form_submitted_data->attachment, array('subdirs' => 0, 'maxbytes' => 500000, 'maxfiles' => 1));
if ($form_submitted_data->id != 0) {
if (!$DB->update_record('block_helloworld', $form_submitted_data)) {
print_error('updateerror', 'block_helloworld');
}
} else {
if (!$DB->insert_record('block_helloworld', $form_submitted_data)) {
print_error('inserterror', 'block_helloworld');
}
}
$courseurl = new moodle_url('/course/view.php', array('id' => $courseid));
redirect($courseurl);
} else {
// form didn't validate or this is the first display
$site = get_site();
echo $OUTPUT->header();
if ($id) {
$helloworldpage = $DB->get_record('block_helloworld', array('id' => $id));
$helloworld_form->set_data($helloworldpage);
$draftitemid = $helloworldpage->attachment ; //file_get_submitted_draft_itemid('attachment');
file_prepare_draft_area($draftitemid, $context->id, 'block_helloworld', 'attachment', $helloworldpage->attachment,
array('subdirs' => 0, 'maxbytes' => 5000000, 'maxfiles' => 1));
}
$helloworld_form->display();
echo $OUTPUT->footer();
}