mirror of
https://github.com/moodle/moodle.git
synced 2025-04-20 07:56:06 +02:00
Dropping support for scheduled release of grades - it is gradebook's
duty
This commit is contained in:
parent
10bc4bce2b
commit
ec0753e35b
@ -31,8 +31,7 @@
|
||||
<FIELD NAME="submissionstart" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be started manually, greater than 0 the timestamp of the start of the submission phase" PREVIOUS="examplesmode" NEXT="submissionend"/>
|
||||
<FIELD NAME="submissionend" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be closed manually, greater than 0 the timestamp of the end of the submission phase" PREVIOUS="submissionstart" NEXT="assessmentstart"/>
|
||||
<FIELD NAME="assessmentstart" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be started manually, greater than 0 the timestamp of the start of the assessment phase" PREVIOUS="submissionend" NEXT="assessmentend"/>
|
||||
<FIELD NAME="assessmentend" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be closed manually, greater than 0 the timestamp of the end of the assessment phase" PREVIOUS="assessmentstart" NEXT="releasegrades"/>
|
||||
<FIELD NAME="releasegrades" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be released manually, greater than 0 the timestamp when final grades are published" PREVIOUS="assessmentend"/>
|
||||
<FIELD NAME="assessmentend" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" DEFAULT="0" SEQUENCE="false" COMMENT="0 = will be closed manually, greater than 0 the timestamp of the end of the assessment phase" PREVIOUS="assessmentstart"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id" NEXT="course_fk"/>
|
||||
|
@ -136,7 +136,6 @@ $string['phasesubmission'] = 'Submission phase';
|
||||
$string['previewassessmentform'] = 'Preview';
|
||||
$string['reassess'] = 'Re-assess';
|
||||
$string['receivedgrades'] = 'Received grades';
|
||||
$string['releasegrades'] = 'Push final grades into the gradebook';
|
||||
$string['saveandclose'] = 'Save and close';
|
||||
$string['saveandcontinue'] = 'Save and continue editing';
|
||||
$string['saveandpreview'] = 'Save and preview';
|
||||
|
@ -178,11 +178,6 @@ class mod_workshop_mod_form extends moodleform_mod {
|
||||
$mform->setHelpButton('assessmentend', array('assessmentend', $label, 'workshop'));
|
||||
$mform->setAdvanced('assessmentend');
|
||||
|
||||
$label = get_string('releasegrades', 'workshop');
|
||||
$mform->addElement('date_selector', 'releasegrades', $label, array('optional' => true));
|
||||
$mform->setHelpButton('releasegrades', array('releasegrades', $label, 'workshop'));
|
||||
$mform->setAdvanced('releasegrades');
|
||||
|
||||
// Common module settinga, Restrict availability, Activity completion etc. ----
|
||||
$features = array('groups'=>true, 'groupings'=>true, 'groupmembersonly'=>true,
|
||||
'outcomes'=>true, 'gradecat'=>false, 'idnumber'=>false);
|
||||
|
@ -28,6 +28,6 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$module->version = 2009102900;
|
||||
$module->version = 2009102901;
|
||||
$module->requires = 2009090400; // Requires this Moodle version
|
||||
$module->cron = 60;
|
||||
|
Loading…
x
Reference in New Issue
Block a user