• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/helper/ui/grid/workgroup/members.php
  • Класс: BitrixSocialnetworkHelperUIGridWorkgroupMembers
  • Вызов: Members::getMembersPopupShowFunction
static function getMembersPopupShowFunction(
	int $groupId = 0,
	string $groupType = '',
	string $gridId = ''
): string
{
	if ($groupId <= 0)
	{
		return '';
	}

	$gridId = htmlspecialcharsbx(CUtil::JSescape($gridId));
	$groupType = htmlspecialcharsbx(CUtil::JSescape($groupType));

	return '
		BX.Socialnetwork.UI.Grid.Controller.getById('' . $gridId . '')
			.getMembersPopup()
			.showPopup(' . $groupId . ', '' . $groupType . '', this); 
		event.stopPropagation();'
	;
}