• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/call.php
  • Класс: BitrixVoximplantCall
  • Вызов: Call::addToQueueHistory
public function addToQueueHistory(array $users)
{
	foreach ($users as $userId)
	{
		if(!in_array($userId, $this->queueHistory))
		{
			$this->queueHistory[] = $userId;
		}
	}
	CallTable::update($this->id, ['QUEUE_HISTORY' => $this->queueHistory]);
}