You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
<?
|
|
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die();
|
|
$this->setFrameMode(true);
|
|
|
|
if(isset($arResult['ELEMENT_H1']) && !empty($arResult['ELEMENT_H1']))
|
|
{
|
|
$this->SetViewTarget("sotbit_seometa_h1");
|
|
echo $arResult['ELEMENT_H1'];
|
|
$this->EndViewTarget();
|
|
}
|
|
if(isset($arResult['ELEMENT_TOP_DESC']) && !empty($arResult['ELEMENT_TOP_DESC']))
|
|
{
|
|
$this->SetViewTarget("sotbit_seometa_top_desc");
|
|
echo $arResult['ELEMENT_TOP_DESC'];
|
|
$this->EndViewTarget();
|
|
}
|
|
if(isset($arResult['ELEMENT_BOTTOM_DESC']) && !empty($arResult['ELEMENT_BOTTOM_DESC']))
|
|
{
|
|
$this->SetViewTarget("sotbit_seometa_bottom_desc");
|
|
echo $arResult['ELEMENT_BOTTOM_DESC'];
|
|
$this->EndViewTarget();
|
|
}
|
|
if(isset($arResult['ELEMENT_ADD_DESC']) && !empty($arResult['ELEMENT_ADD_DESC']))
|
|
{
|
|
$this->SetViewTarget("sotbit_seometa_add_desc");
|
|
echo $arResult['ELEMENT_ADD_DESC'];
|
|
$this->EndViewTarget();
|
|
}
|
|
if(isset($arResult['ELEMENT_FILE']) && !empty($arResult['ELEMENT_FILE']))
|
|
{
|
|
$this->SetViewTarget("sotbit_seometa_file");
|
|
echo '<img src="' . $arResult['ELEMENT_FILE']['SRC'] . '" alt="' . $arResult['ELEMENT_FILE']['DESCRIPTION'] . '">';
|
|
$this->EndViewTarget();
|
|
}
|
|
?>
|