Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/components/bitrix/landing.binding.menu/templates/.default/
Upload File :
Current File : /var/www/homesaver/www/bitrix/components/bitrix/landing.binding.menu/templates/.default/create.php

<?php
if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true)
{
	die();
}

$request = \bitrix\Main\HttpContext::getCurrent()->getRequest();

if (!empty($arResult['ERRORS']))
{
	showError(implode("\n", $arResult['ERRORS']));
	return;
}
?>

<?if ($template = $request->get('tpl')):?>

	<?$APPLICATION->IncludeComponent(
		'bitrix:landing.demo_preview',
		'.default',
		array(
			'CODE' => $template,
			'TYPE' => $arParams['TYPE'],
			'DONT_LEAVE_FRAME' => 'Y',
			'BINDING_TYPE' => 'MENU',
			'BINDING_ID' => $arParams['MENU_ID']
		),
		$component
	);?>

<?else:?>

	<?$APPLICATION->IncludeComponent(
		'bitrix:landing.demo',
		'.default',
		array(
			'TYPE' => $arParams['TYPE'],
			'PAGE_URL_LANDING_VIEW' => $arParams['PATH_AFTER_CREATE'],
			'DONT_LEAVE_FRAME' => 'Y',
			'BINDING_TYPE' => 'MENU',
			'BINDING_ID' => $arParams['MENU_ID']
		),
		$component
	);?>

<?endif;?>