Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/catalog/ |
Upload File : |
<?php use Bitrix\Catalog\Component\SkuTree; use Bitrix\Catalog\v2\Converter\ProductConverter; use Bitrix\Catalog\v2\Facade\Repository; use Bitrix\Catalog\v2\Iblock\IblockInfo; use Bitrix\Catalog\v2\Image\DetailImage; use Bitrix\Catalog\v2\Image\ImageCollection; use Bitrix\Catalog\v2\Image\ImageFactory; use Bitrix\Catalog\v2\Image\ImageRepository; use Bitrix\Catalog\v2\Image\MorePhotoImage; use Bitrix\Catalog\v2\Image\PreviewImage; use Bitrix\Catalog\v2\Integration\Seo\Facebook\FacebookFacade; use Bitrix\Catalog\v2\Integration\Seo\Facebook\FacebookProductProcessor; use Bitrix\Catalog\v2\Integration\Seo\Facebook\FacebookProductRepository; use Bitrix\Catalog\v2\IoC\Container; use Bitrix\Catalog\v2\IoC\Dependency; use Bitrix\Catalog\v2\MeasureRatio\MeasureRatioCollection; use Bitrix\Catalog\v2\MeasureRatio\MeasureRatioFactory; use Bitrix\Catalog\v2\MeasureRatio\MeasureRatioRepository; use Bitrix\Catalog\v2\MeasureRatio\SimpleMeasureRatio; use Bitrix\Catalog\v2\Price\PriceCollection; use Bitrix\Catalog\v2\Price\PriceFactory; use Bitrix\Catalog\v2\Price\PriceRepository; use Bitrix\Catalog\v2\Price\QuantityDependentPrice; use Bitrix\Catalog\v2\Price\SimplePrice; use Bitrix\Catalog\v2\Product\Product; use Bitrix\Catalog\v2\Product\ProductFactory; use Bitrix\Catalog\v2\Product\ProductRepository; use Bitrix\Catalog\v2\Property\Property; use Bitrix\Catalog\v2\Property\PropertyCollection; use Bitrix\Catalog\v2\Property\PropertyFactory; use Bitrix\Catalog\v2\Property\PropertyRepository; use Bitrix\Catalog\v2\PropertyFeature\PropertyFeature; use Bitrix\Catalog\v2\PropertyFeature\PropertyFeatureCollection; use Bitrix\Catalog\v2\PropertyFeature\PropertyFeatureFactory; use Bitrix\Catalog\v2\PropertyFeature\PropertyFeatureRepository; use Bitrix\Catalog\v2\PropertyValue\PropertyValue; use Bitrix\Catalog\v2\PropertyValue\PropertyValueCollection; use Bitrix\Catalog\v2\PropertyValue\PropertyValueFactory; use Bitrix\Catalog\v2\Section\Section; use Bitrix\Catalog\v2\Section\SectionCollection; use Bitrix\Catalog\v2\Section\SectionFactory; use Bitrix\Catalog\v2\Section\SectionRepository; use Bitrix\Catalog\v2\Sku\SimpleSku; use Bitrix\Catalog\v2\Sku\Sku; use Bitrix\Catalog\v2\Sku\SkuCollection; use Bitrix\Catalog\v2\Sku\SkuFactory; use Bitrix\Catalog\v2\Sku\SkuRepository; use Bitrix\Catalog\v2\Barcode\Barcode; use Bitrix\Catalog\v2\Barcode\BarcodeCollection; use Bitrix\Catalog\v2\Barcode\BarcodeFactory; use Bitrix\Catalog\v2\Barcode\BarcodeRepository; use Bitrix\Catalog\v2\StoreProduct\StoreProduct; use Bitrix\Catalog\v2\StoreProduct\StoreProductCollection; use Bitrix\Catalog\v2\StoreProduct\StoreProductFactory; use Bitrix\Catalog\v2\StoreProduct\StoreProductRepository; return [ Dependency::CONTAINER => Container::class, Dependency::IBLOCK_INFO => IblockInfo::class, Dependency::PRODUCT_CONVERTER => ProductConverter::class, Dependency::REPOSITORY_FACADE => Repository::class, Dependency::PRODUCT_FACTORY => ProductFactory::class, Dependency::PRODUCT_REPOSITORY => ProductRepository::class, ProductFactory::PRODUCT => Product::class, Dependency::SECTION_FACTORY => SectionFactory::class, Dependency::SECTION_REPOSITORY => SectionRepository::class, SectionFactory::SECTION => Section::class, SectionFactory::SECTION_COLLECTION => SectionCollection::class, Dependency::SKU_FACTORY => SkuFactory::class, Dependency::SKU_REPOSITORY => SkuRepository::class, SkuFactory::SIMPLE_SKU => SimpleSku::class, SkuFactory::SKU => Sku::class, SkuFactory::SKU_COLLECTION => SkuCollection::class, Dependency::PROPERTY_FACTORY => PropertyFactory::class, Dependency::PROPERTY_REPOSITORY => PropertyRepository::class, PropertyFactory::PROPERTY => Property::class, PropertyFactory::PROPERTY_COLLECTION => PropertyCollection::class, Dependency::PROPERTY_VALUE_FACTORY => PropertyValueFactory::class, PropertyValueFactory::PROPERTY_VALUE => PropertyValue::class, PropertyValueFactory::PROPERTY_VALUE_COLLECTION => PropertyValueCollection::class, Dependency::PROPERTY_FEATURE_FACTORY => PropertyFeatureFactory::class, Dependency::PROPERTY_FEATURE_REPOSITORY => PropertyFeatureRepository::class, PropertyFeatureFactory::PROPERTY_FEATURE => PropertyFeature::class, PropertyFeatureFactory::PROPERTY_FEATURE_COLLECTION => PropertyFeatureCollection::class, Dependency::PRICE_FACTORY => PriceFactory::class, Dependency::PRICE_REPOSITORY => PriceRepository::class, PriceFactory::SIMPLE_PRICE => SimplePrice::class, PriceFactory::QUANTITY_DEPENDENT_PRICE => QuantityDependentPrice::class, PriceFactory::PRICE_COLLECTION => PriceCollection::class, Dependency::IMAGE_FACTORY => ImageFactory::class, Dependency::IMAGE_REPOSITORY => ImageRepository::class, ImageFactory::DETAIL_IMAGE => DetailImage::class, ImageFactory::PREVIEW_IMAGE => PreviewImage::class, ImageFactory::MORE_PHOTO_IMAGE => MorePhotoImage::class, ImageFactory::IMAGE_COLLECTION => ImageCollection::class, Dependency::MEASURE_RATIO_FACTORY => MeasureRatioFactory::class, Dependency::MEASURE_RATIO_REPOSITORY => MeasureRatioRepository::class, MeasureRatioFactory::SIMPLE_MEASURE_RATIO => SimpleMeasureRatio::class, MeasureRatioFactory::MEASURE_RATIO_COLLECTION => MeasureRatioCollection::class, Dependency::BARCODE_FACTORY => BarcodeFactory::class, Dependency::BARCODE_REPOSITORY => BarcodeRepository::class, BarcodeFactory::BARCODE => Barcode::class, BarcodeFactory::BARCODE_COLLECTION => BarcodeCollection::class, Dependency::STORE_PRODUCT_FACTORY => StoreProductFactory::class, Dependency::STORE_PRODUCT_REPOSITORY => StoreProductRepository::class, StoreProductFactory::STORE_PRODUCT => StoreProduct::class, StoreProductFactory::STORE_PRODUCT_COLLECTION => StoreProductCollection::class, 'sku.tree' => SkuTree::class, 'integration.seo.facebook.facade' => FacebookFacade::class, 'integration.seo.facebook.product.processor' => FacebookProductProcessor::class, 'integration.seo.facebook.product.repository' => FacebookProductRepository::class, ];