Warning: Undefined array key "बहिः गच्छतु" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 136

Warning: Undefined array key "aksi" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 140

Warning: Undefined array key "नामपत्र" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 159

Warning: Undefined array key "नामपत्र" in /home/httpd/vhosts/puntogroup.ru/httpdocs/collections/plint/index.php(1) : eval()'d code on line 181
Current File : /home/httpd/vhosts/puntogroup.ru/httpdocs/include/carousel_staff.php
<?
//получаем идентификатор Инфоблока из параметров компонента
$IBLOCK_ID = intval($arParams['IBLOCK_ID']);
if ($IBLOCK_ID <=0) $IBLOCK_ID = 10;
 
if(!CModule::IncludeModule("iblock"))
    die('iblock module is not included!');
//делаем выборку из Инфоблока
$arSort = Array("SORT"=>"ASC", "NAME"=>"ASC");
$arFilter = Array("IBLOCK_ID"=>$IBLOCK_ID,"ACTIVE"=>"Y");
$obIBlockResult = CIBlockElement::GetList($arSort, $arFilter);
//выводим результат выборки в виде списка	
echo "<h3 align='center'>Другие сотрудники компании Punto Group</h3>";
echo "<div class='owl-carousel owl-theme owl-staff'>";	
while($arFields = $obIBlockResult->GetNext()) { 
if ($_SERVER['REQUEST_URI'] != $arFields["DETAIL_PAGE_URL"]) {
?>
	<div class="item--staff">
		<a href='<?=$arFields["DETAIL_PAGE_URL"]?>'>
			<img src='<?=CFile::GetPath($arFields["PREVIEW_PICTURE"])?>' alt="<?=$arFields["NAME"]?>">
		</a>
		<a href='<?=$arFields["DETAIL_PAGE_URL"]?>'class='names--staff' ><?=$arFields["NAME"]?></a>
	</div>
<?}
}
echo "</div>";
?>

<script>
    $(function () {
        // Owl Carousel
        var owl = $(".owl-carousel");
        owl.owlCarousel({
            items: 3,
            margin: 10,
            loop: true,
            nav: false,
            responsive: {
                0: {
                    items: 1
                },
                600: {
                    items: 2
                },
                1180: {
                    items: 3
                }
            }
        });
    });
</script>

<style>
.owl-carousel .owl-dots {
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
}
</style>