Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/components/bitrix/player/templates/.default/
Upload File :
Current File : /var/www/homesaver/www/bitrix/components/bitrix/player/templates/.default/youtube.php

<?
/** @var array $arResult */
/** @var array $arParams */

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

$aspectRatio = $arParams['WIDTH'] > 0 && $arParams['HEIGHT'] > 0 ? "{$arParams['WIDTH']} / {$arParams['HEIGHT']}" : 'auto';
?>

<iframe
	src="<?=$arResult['YOUTUBE_EMBEDDED']?>"
	width="<?=$arParams['WIDTH']?>"
	style="aspect-ratio: <?=$aspectRatio?>"
	frameborder="0"
	allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
	referrerpolicy="strict-origin-when-cross-origin"
	allowfullscreen
></iframe>