• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/commentcontroller.php
  • Класс: Bitrix\Crm\Timeline\CommentController
  • Вызов: CommentController::onDelete
public function onDelete($id, array $params = array())
{
	$id = (int)$id;
	if($id <= 0)
	{
		throw new \Bitrix\Main\ArgumentException('ID must be greater than zero.', 'ID');
	}

	$this->sendPullEventOnDelete(new ItemIdentifier($params['ENTITY_TYPE_ID'], $params['ENTITY_ID']), $id);
}