• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/responsiblequeue.php
  • Класс: Bitrix\Crm\WebForm\ResponsibleQueue
  • Вызов: ResponsibleQueue::loadList
public function loadList()
{
	$listDb = QueueTable::getList(array(
		'select' => array('USER_ID', 'WORK_TIME'),
		'filter' => array('=FORM_ID' => $this->entityId),
		'cache' => array('ttl' => 0)
	));
	while ($item = $listDb->fetch())
	{
		$this->list[] = $item['USER_ID'];
		$this->isWorkTimeCheckEnabled = $item['WORK_TIME'] == 'Y';
	}
}