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
.
/**
* DTL == Database Transfer Library
*
* This library includes all the required functions used to handle
* transfer of data from one database to another.
*
* @package core
* @subpackage dtl
* @copyright 2008 Andrei Bautu
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
// Require {@link ddllib.php}
require_once($CFG->libdir.'/ddllib.php');
// Require {@link database_exporter.php}
require_once($CFG->libdir.'/dtl/database_exporter.php');
// Require {@link xml_database_exporter.php}
require_once($CFG->libdir.'/dtl/xml_database_exporter.php');
// Require {@link file_xml_database_exporter.php}
require_once($CFG->libdir.'/dtl/file_xml_database_exporter.php');
// Require {@link string_xml_database_exporter.php}
require_once($CFG->libdir.'/dtl/string_xml_database_exporter.php');
// Require {@link database_mover.php}
require_once($CFG->libdir.'/dtl/database_mover.php');
// Require {@link database_importer.php}
require_once($CFG->libdir.'/dtl/database_importer.php');
// Require {@link xml_database_importer.php}
require_once($CFG->libdir.'/dtl/xml_database_importer.php');
// Require {@link file_xml_database_importer.php}
require_once($CFG->libdir.'/dtl/file_xml_database_importer.php');
// Require {@link string_xml_database_importer.php}
require_once($CFG->libdir.'/dtl/string_xml_database_importer.php');
/**
* Exception class for db transfer
* @see moodle_exception
*/
class dbtransfer_exception extends moodle_exception {
/**
* @global object
* @param string $errorcode
* @param string $a
* @param string $link
* @param string $debuginfo
*/
function __construct($errorcode, $a=null, $link='', $debuginfo=null) {
global $CFG;
if (empty($link)) {
$link = "$CFG->wwwroot/$CFG->admin/";
}
parent::__construct($errorcode, 'core_dbtransfer', $link, $a, $debuginfo);
}
}