Merge branch 'MDL-69297-39' of git://github.com/peterRd/moodle into MOODLE_39_STABLE

This commit is contained in:
Victor Deniz Falcon 2020-08-19 23:45:32 +01:00
commit f2fe8b1664

View file

@ -5129,18 +5129,33 @@ class assign {
require_once($CFG->dirroot . '/mod/assign/submissionconfirmform.php');
// Check that all of the submission plugins are ready for this submission.
// Also check whether there is something to be submitted as well against atleast one.
$notifications = array();
$submission = $this->get_user_submission($USER->id, false);
if ($this->get_instance()->teamsubmission) {
$submission = $this->get_group_submission($USER->id, 0, false);
}
$plugins = $this->get_submission_plugins();
$hassubmission = false;
foreach ($plugins as $plugin) {
if ($plugin->is_enabled() && $plugin->is_visible()) {
$check = $plugin->precheck_submission($submission);
if ($check !== true) {
$notifications[] = $check;
}
if (is_object($submission) && !$plugin->is_empty($submission)) {
$hassubmission = true;
}
}
}
// If there are no submissions and no existing notifications to be displayed the stop.
if (!$hassubmission && !$notifications) {
$notifications[] = get_string('addsubmission_help', 'assign');
}
$data = new stdClass();
$adminconfig = $this->get_admin_config();
$requiresubmissionstatement = $this->get_instance()->requiresubmissionstatement;