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
.
defined('MOODLE_INTERNAL') || die();
/**
* @param int $oldversion the version we are upgrading from
* @return bool result
*/
function xmldb_repository_dropbox_upgrade($oldversion) {
global $CFG, $DB;
// Automatically generated Moodle v3.9.0 release upgrade line.
// Put any upgrade step following this.
if ($oldversion < 2021052501) {
$key = get_config('dropbox', 'dropbox_key');
$secret = get_config('dropbox', 'dropbox_secret');
if ($key && $secret) {
$params = [
'name' => 'Dropbox',
'clientid' => $key,
'clientsecret' => $secret,
'loginparamsoffline' => 'token_access_type=offline',
'image' => '',
'showonloginpage' => 0, // Internal services only.
];
$record = $DB->get_record('oauth2_issuer', ['name' => 'Dropbox'], 'id');
if (!$record) {
$params = array_merge($params, [
'timecreated' => time(),
'timemodified' => time(),
'usermodified' => time(),
'baseurl' => 0,
'sortorder' => '',
'loginparams' => '',
'requireconfirmation' => 1,
'alloweddomains' => '',
'loginscopes' => 'openid profile email',
'loginscopesoffline' => 'openid profile email',
]);
$id = $DB->insert_record('oauth2_issuer', $params);
} else {
$id = $record->id;
$params['id'] = $id;
$DB->update_record('oauth2_issuer', $params);
}
set_config('dropbox_issuerid', $id, 'dropbox');
unset_config('dropbox_key', 'dropbox');
unset_config('dropbox_secret', 'dropbox');
}
// Dropbox savepoint reached.
upgrade_plugin_savepoint(true, 2021052501, 'repository', 'dropbox');
}
// Automatically generated Moodle v4.0.0 release upgrade line.
// Put any upgrade step following this.
return true;
}