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

	$group = Workgroup::getById($groupId);

	if ($group && $group->isScrumProject())
	{
		$dialog->addItems($this->makeScrumRoles());
	}
	else
	{
		$dialog->addItems($this->makeRoles());
	}

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