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

	$chat = new Chat($this->chatId);
	$chat->setSilentMode($active);

	return true;
}