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
. /** * Label module * * @package mod_label * @copyright 2003 onwards Martin Dougiamas {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once("../../config.php"); $id = optional_param('id',0,PARAM_INT); // Course Module ID, or $l = optional_param('l',0,PARAM_INT); // Label ID if ($id) { $PAGE->set_url('/mod/label/view.php', array('id' => $id)); if (! $cm = get_coursemodule_from_id('label', $id, 0, true)) { throw new \moodle_exception('invalidcoursemodule'); } if (! $course = $DB->get_record("course", array("id"=>$cm->course))) { throw new \moodle_exception('coursemisconf'); } if (! $label = $DB->get_record("label", array("id"=>$cm->instance))) { throw new \moodle_exception('invalidcoursemodule'); } } else { $PAGE->set_url('/mod/label/view.php', array('l' => $l)); if (! $label = $DB->get_record("label", array("id"=>$l))) { throw new \moodle_exception('invalidcoursemodule'); } if (! $course = $DB->get_record("course", array("id"=>$label->course)) ){ throw new \moodle_exception('coursemisconf'); } if (! $cm = get_coursemodule_from_instance("label", $label->id, $course->id, true)) { throw new \moodle_exception('invalidcoursemodule'); } } require_login($course, true, $cm); $url = course_get_url($course, $cm->sectionnum, []); $url->set_anchor('module-' . $id); redirect($url);