• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_webdav_helper.php
  • Класс: CVoxImplantDiskHelper
  • Вызов: CVoxImplantDiskHelper::CheckParams
static function CheckParams($arHistory, $arFile)
{
	if (!($arHistory['CALL_START_DATE'] instanceof BitrixMainTypeDateTime))
		return false;

	if ($arHistory['PHONE_NUMBER'] == '')
		return false;

	if (intval($arFile['ID']) <= 0)
		return false;

	if ($arFile['ORIGINAL_NAME'] == '')
		return false;

	if (intval($arFile['FILE_SIZE']) <= 0)
		return false;

	return true;
}