mirror of
https://github.com/moodle/moodle.git
synced 2025-07-28 01:41:03 +02:00
85 lines
3.3 KiB
PHP
85 lines
3.3 KiB
PHP
<?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/>.
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
/**
|
|
* assign module data generator class
|
|
*
|
|
* @package mod_assign
|
|
* @category test
|
|
* @copyright 2012 Paul Charsley
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class mod_assign_generator extends testing_module_generator {
|
|
|
|
/**
|
|
* Create new assign module instance
|
|
* @param array|stdClass $record
|
|
* @param array $options (mostly course_module properties)
|
|
* @return stdClass activity record with extra cmid field
|
|
*/
|
|
public function create_instance($record = null, array $options = null) {
|
|
global $CFG;
|
|
require_once("$CFG->dirroot/mod/assign/lib.php");
|
|
|
|
$this->instancecount++;
|
|
$i = $this->instancecount;
|
|
|
|
$record = (object)(array)$record;
|
|
$options = (array)$options;
|
|
|
|
if (empty($record->course)) {
|
|
throw new coding_exception('module generator requires $record->course');
|
|
}
|
|
|
|
$defaultsettings = array(
|
|
'name' => get_string('pluginname', 'assign').' '.$i,
|
|
'intro' => 'Test assign ' . $i,
|
|
'introformat' => FORMAT_MOODLE,
|
|
'alwaysshowdescription' => 1,
|
|
'submissiondrafts' => 1,
|
|
'requiresubmissionstatement' => 0,
|
|
'sendnotifications' => 0,
|
|
'sendlatenotifications' => 0,
|
|
'duedate' => 0,
|
|
'allowsubmissionsfromdate' => 0,
|
|
'grade' => 100,
|
|
'cutoffdate' => 0,
|
|
'teamsubmission' => 0,
|
|
'requireallteammemberssubmit' => 0,
|
|
'teamsubmissiongroupingid' => 0,
|
|
'blindmarking' => 0,
|
|
'cmidnumber' => '',
|
|
'attemptreopenmethod' => 'none',
|
|
'maxattempts' => -1,
|
|
'markingworkflow' => 0,
|
|
'markingallocation' => 0,
|
|
);
|
|
|
|
foreach ($defaultsettings as $name => $value) {
|
|
if (!isset($record->{$name})) {
|
|
$record->{$name} = $value;
|
|
}
|
|
}
|
|
|
|
$record->coursemodule = $this->precreate_course_module($record->course, $options);
|
|
$id = assign_add_instance($record, null);
|
|
rebuild_course_cache($record->course, true);
|
|
return $this->post_add_instance($id, $record->coursemodule);
|
|
}
|
|
}
|