first commit
This commit is contained in:
65
presetcode/add.php
Normal file
65
presetcode/add.php
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
require_once('../../../config.php');
|
||||
require_once($CFG->libdir.'/weblib.php');
|
||||
require_once('../lib.php');
|
||||
require_once('form.php');
|
||||
|
||||
$id = required_param('id', PARAM_INT); // programming ID
|
||||
$params = array('id' => $id);
|
||||
$PAGE->set_url('/mod/programming/presetcode/add.php', $params);
|
||||
|
||||
if (! $cm = get_coursemodule_from_id('programming', $id)) {
|
||||
print_error('invalidcoursemodule');
|
||||
}
|
||||
|
||||
if (! $course = $DB->get_record('course', array('id' => $cm->course))) {
|
||||
print_error('coursemisconf');
|
||||
}
|
||||
|
||||
if (! $programming = $DB->get_record('programming', array('id' => $cm->instance))) {
|
||||
print_error('invalidprogrammingid', 'programming');
|
||||
}
|
||||
|
||||
require_login($course->id, true, $cm);
|
||||
$context = context_module::instance($cm->id);
|
||||
|
||||
require_capability('mod/programming:edittestcase', $context);
|
||||
|
||||
$mform = new presetcode_form();
|
||||
if ($mform->is_cancelled()) {
|
||||
redirect(new moodle_url('/mod/programming/presetcode/list.php', array('id' => $cm->id)));
|
||||
|
||||
} else if ($data = $mform->get_data()) {
|
||||
unset($data->id);
|
||||
$data->programmingid = $programming->id;
|
||||
|
||||
if ($data->choosename == '1') $data->name = '<prepend>';
|
||||
if ($data->choosename == '2') $data->name = '<postpend>';
|
||||
|
||||
$data->sequence = $DB->count_records('programming_presetcode', array('programmingid' => $programming->id), 'MAX(sequence)') + 1;
|
||||
$DB->insert_record('programming_presetcode', $data);
|
||||
programming_presetcode_adjust_sequence($programming->id);
|
||||
|
||||
redirect(new moodle_url('/mod/programming/presetcode/list.php', array('id' => $cm->id)), get_string('presetcodeadded', 'programming'));
|
||||
|
||||
} else {
|
||||
/// Print the page header
|
||||
$PAGE->set_title($programming->name);
|
||||
$PAGE->set_heading(format_string($course->fullname));
|
||||
echo $OUTPUT->header();
|
||||
|
||||
/// Print tabs
|
||||
$renderer = $PAGE->get_renderer('mod_programming');
|
||||
$tabs = programming_navtab('edittest', 'presetcode', $course, $programming, $cm);
|
||||
echo $renderer->render_navtab($tabs);
|
||||
|
||||
/// Print page content
|
||||
echo html_writer::tag('h2', $programming->name);
|
||||
echo html_writer::tag('h3', get_string('addpresetcode', 'programming').$OUTPUT->help_icon('presetcode', 'programming'));
|
||||
|
||||
$mform->display();
|
||||
|
||||
/// Finish the page
|
||||
echo $OUTPUT->footer($course);
|
||||
}
|
||||
Reference in New Issue
Block a user