Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/monara/public_html/test.athavaneng.com/themes.php on line 99

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
. /** * Essay question type upgrade code. * * @package qtype * @subpackage essay * @copyright 2011 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Upgrade code for the essay question type. * @param int $oldversion the version we are upgrading from. */ function xmldb_qtype_essay_upgrade($oldversion) { global $CFG, $DB; $dbman = $DB->get_manager(); // Automatically generated Moodle v3.9.0 release upgrade line. // Put any upgrade step following this. if ($oldversion < 2021052501) { // Define field maxbytes to be added to qtype_essay_options. $table = new xmldb_table('qtype_essay_options'); $field = new xmldb_field('maxbytes', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0', 'responsetemplateformat'); // Conditionally launch add field maxbytes. if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } // Essay savepoint reached. upgrade_plugin_savepoint(true, 2021052501, 'qtype', 'essay'); } if ($oldversion < 2021052502) { // Define field minwordlimit to be added to qtype_essay_options. $table = new xmldb_table('qtype_essay_options'); $field = new xmldb_field('minwordlimit', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'responsefieldlines'); // Conditionally launch add field minwordlimit. if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } // Define field maxwordlimit to be added to qtype_essay_options. $table = new xmldb_table('qtype_essay_options'); $field = new xmldb_field('maxwordlimit', XMLDB_TYPE_INTEGER, '10', null, null, null, null, 'minwordlimit'); // Conditionally launch add field maxwordlimit. if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); } // Essay savepoint reached. upgrade_plugin_savepoint(true, 2021052502, 'qtype', 'essay'); } // Automatically generated Moodle v4.0.0 release upgrade line. // Put any upgrade step following this. return true; }