• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/ui/entityselector/scrumuserprovider.php
  • Класс: BitrixTasksIntegrationUIEntitySelectorScrumUserProvider
  • Вызов: ScrumUserProvider::fillDialog
public function fillDialog(Dialog $dialog): void
{
	$groupId = $this->getOption('groupId');

	$userIds = $this->getUserToGroupIds($groupId);

	foreach (Dialog::getItems($userIds) as $item)
	{
		$item->addTab($this->entityId);
		$dialog->addItem($item);
	}

	$dialog->addTab(new Tab([
		'id' => $this->entityId,
		'title' => Loc::getMessage('TASKS_UI_ENTITY_SELECTOR_SCRUM_USER_TAB'),
	]));
}