Your IP : 3.147.53.81


Current Path : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/components/bitrix/iblock.selector.element/
Upload File :
Current File : /var/www/admin_ftp_12/data/www/httpdocs/bitrix/components/bitrix/iblock.selector.element/class.php

<?php
use Bitrix\Main\Loader,
	Bitrix\Main\Localization\Loc,
	Bitrix\Iblock;

if (!defined('B_PROLOG_INCLUDED') || B_PROLOG_INCLUDED !== true) die();

Loc::loadMessages(__FILE__);

if (!Loader::includeModule('iblock'))
{
	ShowError(Loc::getMessage('IBLOCK_SELECTOR_ELEMENT_ERR_IBLOCK_MODULE_NOT_INSTALLED'));
	return;
}

class IblockElement extends Iblock\Component\Selector\Element
{
	public function __construct($component = null)
	{
		parent::__construct($component);
	}
}