• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/model/transcriptline.php
  • Класс: BitrixVoximplantModelTranscriptLineTable
  • Вызов: TranscriptLineTable::deleteByTranscriptId
static function deleteByTranscriptId($transcriptId)
{
	$transcriptId = (int)$transcriptId;

	if($transcriptId <= 0)
	{
		throw new MainArgumentException('transcriptId must be greater than zero.', 'transcriptId');
	}

	$helper = MainApplication::getConnection()->getSqlHelper();

	MainApplication::getConnection()->queryExecute("DELETE FROM ".$helper->quote(static::getTableName())." WHERE TRANSCRIPT_ID = {$transcriptId}");
}