• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/volumetmp.php
  • Класс: Bitrix\Crm\VolumeTmpTable
  • Вызов: VolumeTmpTable::clearTemporally
static function clearTemporally()
{
	$connection = Main\Application::getConnection();
	$tmpName = self::getTableName();
	if ($connection->isTableExists($tmpName))
	{
		$connection->truncateTable($tmpName);
	}
}