ez-pro/s1/include/blocks/widget/right_dock_icon.php
2025-11-13 19:04:05 +03:00

21 lines
624 B
PHP

<?php
if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true ) die();
//options from TSolution\Functions::showBlockHtml
$arOptions = $arConfig['PARAMS'];
?>
<span class="link fill-theme-hover" title="<?=$arOptions['TITLE'];?>">
<span class="animate-load"
data-event="jqm"
data-param-id="widget"
data-width="<?=$arOptions['WIDTH'];?>"
data-name="widget"
<?=$arOptions['SLIDE_DATA'];?>
>
<?if ($arOptions['ICON_SVG']):?>
<?=$arOptions['ICON_SVG'];?>
<?else:?>
<img class="widget-img" src="<?=$arOptions['ICON'];?>" alt="<?=$arOptions['TITLE'];?>" />
<?endif;?>
</span>
</span>