芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/admin/tool/log/store/standard/db/upgrade.php
. /** * Standard log store upgrade. * * @package logstore_standard * @copyright 2014 Petr Skoda * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); function xmldb_logstore_standard_upgrade($oldversion) { global $CFG; // Automatically generated Moodle v3.3.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.4.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.5.0 release upgrade line. // Put any upgrade step following this. // Automatically generated Moodle v3.6.0 release upgrade line. // Put any upgrade step following this. if ($oldversion < 2019032800) { // For existing installations, set the new jsonformat option to off (no behaviour change). // New installations default to on. set_config('jsonformat', 0, 'logstore_standard'); upgrade_plugin_savepoint(true, 2019032800, 'logstore', 'standard'); } // Automatically generated Moodle v3.7.0 release upgrade line. // Put any upgrade step following this. return true; }