Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/components/bitrix/spotlight/templates/.default/
Upload File :
Current File : /var/www/homesaver/www/bitrix/components/bitrix/spotlight/templates/.default/template.php

<?php

use Bitrix\Main\Web\Json;

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

/** @var array $arResult*/
/** @var \CBitrixComponentTemplate $this*/

$frame = $this->createFrame()->begin("");

if ($arResult["IS_AVAILABLE"]):
	CJSCore::Init("spotlight");
?>

<script>
BX.ready(function() {
	try
	{
		var spotlight = BX.SpotLight.Manager.create(<?= Json::encode($arResult["OPTIONS"]) ?>);
		spotlight.show();
	}
	catch (e)
	{

	}
});
</script>

<?
endif;
$frame->end();