submission.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php
  2. // This file is part of
  3. //
  4. // Moodle is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // Moodle is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
  16. require_once('../../config.php');
  17. require_once('locallib.php');
  18. require_once('lib.php');
  19. // Test libs
  20. require_once('libs/testlib.php'); // Remove when going to production
  21. require_once('forms/submission_form.php'); // Requires Form class File
  22. require_once('forms/submission_form_functions.php'); // Require functions file for submission form
  23. $cmid = required_param('cmid', PARAM_INT); // Course Module ID.
  24. $id = optional_param('id', 0, PARAM_INT); // Gradeimporter id.
  25. $subid = optional_param('subid', -1, PARAM_INT); // Submission id.
  26. // $update = optional_param('update', 0, PARAM_INT); // If 1 the submission is beign updated.
  27. // Checks if everything is correct
  28. // If any of the queries fail, throw error because of MUST_EXIST clause
  29. $cm = get_coursemodule_from_id('gradeimporter', $cmid, 0, false, MUST_EXIST);
  30. $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
  31. $gradeimporter = $DB->get_record('gradeimporter', array('id' => $cm->instance), '*', MUST_EXIST);
  32. // Gets context for File API
  33. $context = context_module::instance($cm->id);
  34. // Sets URL
  35. $url = new moodle_url('/mod/gradeimporter/submission.php', array('cmid' => $cm->id));
  36. if (!empty($id)) {
  37. $url->param('id', $id);
  38. }
  39. $PAGE->set_url($url);
  40. // Requires capabilities
  41. require_login($course, false, $cm);
  42. require_capability('mod/gradeimporter:edit', $context);
  43. // Prepare data for submission form
  44. if (!isset($entry)) {
  45. // If its creating new submission
  46. $entry = new stdClass();
  47. $entry->id = null;
  48. }
  49. // Set parameters to sendo to the form
  50. $entry->cmid = $cm->id;
  51. $maxbytes = $course->maxbytes;
  52. // Prepare file manager
  53. $filemanageroptions = array('subdirs' => 0,
  54. 'maxbytes' => $maxbytes,
  55. 'areamaxbytes' => 10485760,
  56. 'maxfiles' => 1,
  57. 'accepted_types' => array('.csv', '.zip')
  58. );
  59. $entry = file_prepare_standard_filemanager($entry, 'submissionfiles', $filemanageroptions, $context,
  60. 'mod_gradeimporter', 'submissionfiles', $entry->id);
  61. // Create new mform to show to the user
  62. $mform = new mod_gradeimporter_submission_form(null, array('submission' => $entry,
  63. 'filemanageroptions' => $filemanageroptions
  64. )
  65. );
  66. if ($mform->is_cancelled()) {
  67. // Handle form cancel operation, if cancel button is present on form
  68. echo("form is cancelled");
  69. } else if ($formdata = $mform->get_data()) {
  70. reset_submissions($context->id); // Remove when going to production
  71. $entry = create_submission($formdata, $gradeimporter->id, $USER->id);
  72. // Gets file manager content
  73. $entry = file_postupdate_standard_filemanager($entry, 'submissionfiles',
  74. $filemanageroptions, $context, 'mod_gradeimporter',
  75. 'submissionfiles', $entry->id);
  76. store_files($context, $cm, $entry);
  77. // When complete redirect to view.php
  78. // uncomment later
  79. redirect("view.php?id=$cm->id&edit=1");
  80. // In this case you process validated data. $mform->get_data() returns data posted in form.
  81. } else {
  82. // This branch is executed if the form is submitted but the data doesn't validate and the form should be redisplayed
  83. // ...or on the first display of the form.
  84. if ($subid != -1) {
  85. // If its updating an existing submission
  86. // Get data from db and insert into form
  87. $subdata = $DB->get_record('gradeimporter_submission', array('id' => $subid));
  88. $subdata->description = array('text' => $subdata->description,
  89. 'format' => $subdata->descriptionformat
  90. );
  91. $mform->set_data($subdata);
  92. }
  93. $PAGE->set_title($gradeimporter->name);
  94. $PAGE->set_heading($course->fullname);
  95. echo $OUTPUT->header();
  96. echo $OUTPUT->heading(format_string($gradeimporter->name), 2);
  97. $mform->display();
  98. echo $OUTPUT->footer();
  99. }