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
. /** * Delete a file type with a confirmation box. * * @package tool_filetypes * @copyright 2014 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require(__DIR__ . '/../../../config.php'); require_once($CFG->libdir . '/adminlib.php'); admin_externalpage_setup('tool_filetypes'); $extension = required_param('extension', PARAM_ALPHANUMEXT); $redirecturl = new \moodle_url('/admin/tool/filetypes/index.php'); if (optional_param('delete', 0, PARAM_INT)) { require_sesskey(); // Delete the file type from the config. core_filetypes::delete_type($extension); redirect($redirecturl); } // Page settings. $title = get_string('deletefiletypes', 'tool_filetypes'); $context = context_system::instance(); $PAGE->set_url(new \moodle_url('/admin/tool/filetypes/delete.php', array('extension' => $extension))); $PAGE->navbar->add($title); $PAGE->set_context($context); $PAGE->set_pagelayout('admin'); $PAGE->set_title($SITE->fullname. ': ' . $title); $PAGE->set_primary_active_tab('siteadminnode'); $PAGE->set_secondary_active_tab('server'); // Display the page. echo $OUTPUT->header(); $message = get_string('delete_confirmation', 'tool_filetypes', $extension); $deleteurl = new \moodle_url('delete.php', array('extension' => $extension, 'delete' => 1)); $yesbutton = new single_button($deleteurl, get_string('yes')); $nobutton = new single_button($redirecturl, get_string('no'), 'get'); echo $OUTPUT->confirm($message, $yesbutton, $nobutton); echo $OUTPUT->footer();