Your IP : 18.226.87.143


Current Path : /home/bitrix/ext_www/crm.klimatlend.ua/kb/binding/
Upload File :
Current File : /home/bitrix/ext_www/crm.klimatlend.ua/kb/binding/group.php

<?php
require($_SERVER['DOCUMENT_ROOT'] . '/bitrix/header.php');

$request = \Bitrix\Main\Application::getInstance()->getContext()->getRequest();

$groupId = $request->get('groupId');
$afterCreate = '/kb/group/wiki/#site_show#/view/#landing_edit#/?close=Y';

$APPLICATION->IncludeComponent(
	'bitrix:ui.sidepanel.wrapper',
	'',
	[
		'POPUP_COMPONENT_NAME' => 'bitrix:landing.binding.group',
		'POPUP_COMPONENT_TEMPLATE_NAME' => '',
		'POPUP_COMPONENT_PARAMS' => [
			'GROUP_ID' => $groupId,
			'PATH_AFTER_CREATE' => $afterCreate
		],
		'USE_PADDING' => false,
		'USE_UI_TOOLBAR' => 'Y'
	]
);

require($_SERVER['DOCUMENT_ROOT'] . '/bitrix/footer.php');