• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/node/link.php
  • Класс: BitrixLandingNodeLink
  • Вызов: Link::isFrame
static function isFrame(): bool
{
	static $isIframe = null;

	if ($isIframe === null)
	{
		$request = Application::getInstance()->getContext()->getRequest();
		$isIframe = $request->get('IFRAME') == 'Y';
	}

	return $isIframe;
}