• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/operator.php
  • Класс: BitrixImOpenLinesOperator
  • Вызов: Operator::markSpam
public function markSpam()
{
	$access = $this->checkAccess();
	if (!$access['RESULT'])
	{
		return false;
	}

	$chat = new Chat($this->chatId);
	$chat->markSpamAndFinish($this->userId);

	return true;
}