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
.
/**
* Extra classes needed for HTMLPurifier customisation for Moodle.
*
* @package core
* @copyright 2012 Petr Skoda {@link http://skodak.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL 3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Validates RTSP defined by RFC 2326
*/
class HTMLPurifier_URIScheme_rtsp extends HTMLPurifier_URIScheme {
public $browsable = true;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}
/**
* Validates RTMP defined by Adobe
*/
class HTMLPurifier_URIScheme_rtmp extends HTMLPurifier_URIScheme {
public $browsable = false;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}
/**
* Validates IRC defined by IETF Draft
*/
class HTMLPurifier_URIScheme_irc extends HTMLPurifier_URIScheme {
public $browsable = true;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}
/**
* Validates MMS defined by Microsoft
*/
class HTMLPurifier_URIScheme_mms extends HTMLPurifier_URIScheme {
public $browsable = true;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}
/**
* Validates Gopher defined by RFC 4266
*/
class HTMLPurifier_URIScheme_gopher extends HTMLPurifier_URIScheme {
public $browsable = true;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}
/**
* Validates TeamSpeak defined by TeamSpeak
*/
class HTMLPurifier_URIScheme_teamspeak extends HTMLPurifier_URIScheme {
public $browsable = true;
public $hierarchical = true;
public function doValidate(&$uri, $config, $context) {
$uri->userinfo = null;
return true;
}
}