Sindbad~EG File Manager
<?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/>.
/**
* Database upgrade.
*
* @package theme_adaptable
* @copyright 2019 G J Barnard
* {@link https://moodle.org/user/profile.php?id=442195}
* {@link https://gjbarnard.co.uk}
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
*/
/**
* Upgrade.
*
* @param int $oldversion Is this an old version
* @return bool Success.
*/
function xmldb_theme_adaptable_upgrade($oldversion = 0) {
if ($oldversion < 2020073101) {
if (get_config('theme_adaptable', 'fontname') == 'default') {
set_config('fontname', 'sans-serif', 'theme_adaptable');
}
if (get_config('theme_adaptable', 'fontheadername') == 'default') {
set_config('fontheadername', 'sans-serif', 'theme_adaptable');
}
if (get_config('theme_adaptable', 'fonttitlename') == 'default') {
set_config('fonttitlename', 'sans-serif', 'theme_adaptable');
}
upgrade_plugin_savepoint(true, 2020073101, 'theme', 'adaptable');
}
if ($oldversion < 2020073107) {
$settings = get_config('theme_adaptable');
foreach ($settings as $settingname => $settingvalue) {
$settingvalue = trim($settingvalue);
$changedsettingvalue = preg_replace('/^0px|\b0px/', '0', $settingvalue);
if ((!is_null($changedsettingvalue)) && ($changedsettingvalue != $settingvalue)) {
// Not null and replacement(s) have happened.
set_config($settingname, $changedsettingvalue, 'theme_adaptable');
}
}
upgrade_plugin_savepoint(true, 2020073107, 'theme', 'adaptable');
}
// Method check after purge to reload updated local_toolbox if needed.
$localtoolbox = \theme_adaptable\toolbox::get_local_toolbox();
if (is_object($localtoolbox)) {
if (method_exists($localtoolbox, 'supported_methods')) {
// Method check. Will throw upgrade_exception if one or more are missing.
$methods = ['get_custom_js'];
$unsupportedmethods = $localtoolbox->supported_methods($methods, '401.0.4 - 2023102203');
if (!empty($unsupportedmethods)) {
echo $unsupportedmethods;
}
}
}
if ($oldversion < 2022112314) {
$value = get_config('theme_adaptable', 'menuhovercolor');
if (!empty($value)) {
set_config('menubkhovercolor', $value, 'theme_adaptable');
// Prevent replacement when upgrade has already happened in a version for an older Moodle!
unset_config('menuhovercolor', 'theme_adaptable');
}
upgrade_plugin_savepoint(true, 2022112314, 'theme', 'adaptable');
}
if ($oldversion < 2022112315) {
$value = get_config('theme_adaptable', 'buttonfocuscolor');
if (!empty($value)) {
set_config('inputbuttonfocuscolour', $value, 'theme_adaptable');
// Prevent replacement in a newer version of the theme!
unset_config('buttonfocuscolor', 'theme_adaptable');
}
$value = get_config('theme_adaptable', 'inputbuttonfocuscolouropacity');
if (!empty($value)) {
set_config('inputbuttonfocuscolouropacity', $value, 'theme_adaptable');
// Prevent replacement in a newer version of the theme!
unset_config('inputbuttonfocuscolouropacity', 'theme_adaptable');
}
upgrade_plugin_savepoint(true, 2022112315, 'theme', 'adaptable');
}
if ($oldversion < 2022112316) {
$value = get_config('theme_adaptable', 'navbardisplaysubmenuarrow');
if (!empty($value)) {
set_config('navbardisplaymenuarrow', $value, 'theme_adaptable');
// Prevent replacement when upgrade has already happened in a version for an older Moodle!
unset_config('navbardisplaysubmenuarrow', 'theme_adaptable');
}
$value = get_config('theme_adaptable', 'msgbadgecolor');
if (!empty($value)) {
set_config('notbadgebackgroundcolour', $value, 'theme_adaptable');
// Prevent replacement when upgrade has already happened in a version for an older Moodle!
unset_config('msgbadgecolor', 'theme_adaptable');
}
upgrade_plugin_savepoint(true, 2022112316, 'theme', 'adaptable');
}
// Automatic 'Purge all caches'....
purge_all_caches();
return true;
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists