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
. /** * Database upgrades for the RSS block. * * @package block_rss_client * @copyright 2014 Davo Smith * @author Neill Magill * @license http://www.gnu.org/copyleft/gpl.html GNU GPL */ defined('MOODLE_INTERNAL') || die(); /** * Upgrade the block_rss_client database. * * @param int $oldversion The version number of the plugin that was installed. * @return boolean */ function xmldb_block_rss_client_upgrade($oldversion) { global $CFG, $DB; // Automatically generated Moodle v3.9.0 release upgrade line. // Put any upgrade step following this. if ($oldversion < 2021121600) { // From Moodle 4.0, this block has been disabled by default in new installations. // If the site has no instances of this block, it will disabled during the upgrading process too. $totalcount = $DB->count_records('block_instances', ['blockname' => 'rss_client']); if ($totalcount == 0) { $DB->set_field('block', 'visible', 0, ['name' => 'rss_client']); } upgrade_block_savepoint(true, 2021121600, 'rss_client', false); } // Automatically generated Moodle v4.0.0 release upgrade line. // Put any upgrade step following this. return true; }