• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/externallink.php
  • Класс: BitrixDiskExternalLink
  • Вызов: ExternalLink::incrementDownloadCount
public function incrementDownloadCount()
{
	$this->errorCollection->clear();
	$success = $this->update(array(
		'DOWNLOAD_COUNT' => new SqlExpression('?# + 1', 'DOWNLOAD_COUNT'),
	));

	if($success)
	{
		$this->downloadCount++;
	}

	return $success;
}