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
. /** * List of deprecated mod_url functions. * * @package mod_url * @copyright 2021 Peter D * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Print url heading. * * @deprecated since 4.0 * @param object $url * @param object $cm * @param object $course * @param bool $notused This variable is no longer used. * @return void */ function url_print_heading($url, $cm, $course, $notused = false) { global $OUTPUT; debugging('url_print_heading is deprecated. Handled by activity_header now.', DEBUG_DEVELOPER); echo $OUTPUT->heading(format_string($url->name), 2); } /** * Print url introduction. * * @deprecated since 4.0 * @param object $url * @param object $cm * @param object $course * @param bool $ignoresettings print even if not specified in modedit * @return void */ function url_print_intro($url, $cm, $course, $ignoresettings=false) { global $OUTPUT; debugging('url_print_intro is deprecated. Handled by activity_header now.', DEBUG_DEVELOPER); if ($intro = url_get_intro($url, $cm, $ignoresettings)) { echo $OUTPUT->box_start('mod_introbox', 'urlintro'); echo $intro; echo $OUTPUT->box_end(); } }