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
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('uploader', function (Y, NAME) { /** * Provides UI for selecting multiple files and functionality for * uploading multiple files to the server with support for either * html5 or Flash transport mechanisms, automatic queue management, * upload progress monitoring, and error events. * @module uploader * @main uploader * @since 3.5.0 */ /** * `Y.Uploader` serves as an alias for either `Y.UploaderFlash` * or `Y.UploaderHTML5`, depending on the feature set available * in a specific browser. If neither HTML5 nor Flash transport layers are available, `Y.Uploader.TYPE` * static property is set to `"none"`. * * @class Uploader */ /** * The static property reflecting the type of uploader that `Y.Uploader` * aliases. The possible values are: * * * @property TYPE * @type {String} * @static */ var Win = Y.config.win; if (Win && Win.File && Win.FormData && Win.XMLHttpRequest) { Y.Uploader = Y.UploaderHTML5; } else if (Y.SWFDetect.isFlashVersionAtLeast(10,0,45)) { Y.Uploader = Y.UploaderFlash; } else { Y.namespace("Uploader"); Y.Uploader.TYPE = "none"; } }, '3.17.2', {"requires": ["uploader-html5", "uploader-flash"]});