| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/main/lib/ui/uploader/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/main/lib/ui/uploader/errorcatcher.php |
<?
namespace Bitrix\Main\UI\Uploader;
/**
* Class ErrorCatcher is used in main/tools/upload.php:16 to catch unknown server response.
* @package Bitrix\Main\UI\Uploader
*
*/
class ErrorCatcher
{
/**
* @param string $path URL where error was registered.
* @param string $errorText Error text.
* @return void
*/
public function log($path, $errorText)
{
if (check_bitrix_sessid() &&
is_string($path) &&
is_string($errorText) &&
\Bitrix\Main\Config\Option::get("main", "uploaderLog", "N") == "Y")
{
trigger_error("Uploading error! Path: ".mb_substr($path, 0, 100)."\n Text:".mb_substr($errorText, 0, 500), E_USER_WARNING);
}
}
}