• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/bizproctype/usertypepropertydiskfile.php
  • Класс: BitrixIblockBizprocTypeUserTypePropertyDiskFile
  • Вызов: UserTypePropertyDiskFile::clearValueMultiple
static function clearValueMultiple(FieldType $fieldType, $values)
	{
		if(!is_array($values))
		{
			$values = array($values);
		}

		$property = static::getUserType($fieldType);
		$iblockId = self::getIblockId($fieldType);

		if (array_key_exists('DeleteAttachedFiles', $property))
		{
			call_user_func_array($property['DeleteAttachedFiles'], array($iblockId, $values));
		}
	}