Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.
<?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/>.

/**
 * @package    moodlecore
 * @subpackage backup-moodle2
 * @copyright  2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */


defined('MOODLE_INTERNAL') || die();


/**
 * restore plugin class that provides the necessary information
 * needed to restore one essay qtype plugin
 *
 * @copyright  2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class restore_qtype_essay_plugin extends restore_qtype_plugin {

    /**
     * Returns the paths to be handled by the plugin at question level
     */
    protected function define_question_plugin_structure() {
        return array(
            new restore_path_element('essay', $this->get_pathfor('/essay'))
        );
    }

    /**
     * Process the qtype/essay element
     */
    public function process_essay($data) {
        global $DB;

        $data = (object)$data;
        $oldid = $data->id;

        if (!isset($data->responsetemplate)) {
            $data->responsetemplate = '';
        }
        if (!isset($data->responsetemplateformat)) {
            $data->responsetemplateformat = FORMAT_HTML;
        }
        if (!isset($data->responserequired)) {
            $data->responserequired = 1;
        }
> if (!isset($data->minwordlimit)) { if (!isset($data->attachmentsrequired)) { > $data->minwordlimit = null; $data->attachmentsrequired = 0; > } } > if (!isset($data->maxwordlimit)) { > $data->maxwordlimit = null; // Detect if the question is created or mapped. > }
$questioncreated = $this->get_mappingid('question_created', $this->get_old_parentid('question')) ? true : false; // If the question has been created by restore, we need to create its // qtype_essay too. if ($questioncreated) { $data->questionid = $this->get_new_parentid('question'); $newitemid = $DB->insert_record('qtype_essay_options', $data); $this->set_mapping('qtype_essay', $oldid, $newitemid); } } /** * Return the contents of this qtype to be processed by the links decoder */ public static function define_decode_contents() { return array( new restore_decode_content('qtype_essay_options', 'graderinfo', 'qtype_essay'), ); } /** * When restoring old data, that does not have the essay options information * in the XML, supply defaults. */ protected function after_execute_question() { global $DB; $essayswithoutoptions = $DB->get_records_sql(" SELECT q.* FROM {question} q JOIN {backup_ids_temp} bi ON bi.newitemid = q.id LEFT JOIN {qtype_essay_options} qeo ON qeo.questionid = q.id WHERE q.qtype = ? AND qeo.id IS NULL AND bi.backupid = ? AND bi.itemname = ? ", array('essay', $this->get_restoreid(), 'question_created')); foreach ($essayswithoutoptions as $q) { $defaultoptions = new stdClass(); $defaultoptions->questionid = $q->id; $defaultoptions->responseformat = 'editor'; $defaultoptions->responserequired = 1; $defaultoptions->responsefieldlines = 15;
> $defaultoptions->minwordlimit = null; $defaultoptions->attachments = 0; > $defaultoptions->maxwordlimit = null;
$defaultoptions->attachmentsrequired = 0; $defaultoptions->graderinfo = ''; $defaultoptions->graderinfoformat = FORMAT_HTML; $defaultoptions->responsetemplate = ''; $defaultoptions->responsetemplateformat = FORMAT_HTML; $DB->insert_record('qtype_essay_options', $defaultoptions); } } }