1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
.container.php
См. документацию.
1<?php
2
30use Bitrix\Catalog\v2\Property\Property;
58
59return [
60 Dependency::CONTAINER => Container::class,
61
62 Dependency::IBLOCK_INFO => IblockInfo::class,
63 Dependency::PRODUCT_CONVERTER => ProductConverter::class,
64 Dependency::REPOSITORY_FACADE => Repository::class,
65
66 Dependency::PRODUCT_FACTORY => ProductFactory::class,
67 Dependency::PRODUCT_REPOSITORY => ProductRepository::class,
68
69 ProductFactory::PRODUCT => Product::class,
70
71 Dependency::SECTION_FACTORY => SectionFactory::class,
72 Dependency::SECTION_REPOSITORY => SectionRepository::class,
73
74 SectionFactory::SECTION => Section::class,
75 SectionFactory::SECTION_COLLECTION => SectionCollection::class,
76
77 Dependency::SKU_FACTORY => SkuFactory::class,
78 Dependency::SKU_REPOSITORY => SkuRepository::class,
79
80 SkuFactory::SIMPLE_SKU => SimpleSku::class,
81 SkuFactory::SKU => Sku::class,
82 SkuFactory::SKU_COLLECTION => SkuCollection::class,
83
84 Dependency::PROPERTY_FACTORY => PropertyFactory::class,
85 Dependency::PROPERTY_REPOSITORY => PropertyRepository::class,
86
87 PropertyFactory::PROPERTY => Property::class,
88 PropertyFactory::PROPERTY_COLLECTION => PropertyCollection::class,
89
90 Dependency::PROPERTY_VALUE_FACTORY => PropertyValueFactory::class,
91
92 PropertyValueFactory::PROPERTY_VALUE => PropertyValue::class,
93 PropertyValueFactory::PROPERTY_VALUE_COLLECTION => PropertyValueCollection::class,
94
95 Dependency::PROPERTY_FEATURE_FACTORY => PropertyFeatureFactory::class,
96 Dependency::PROPERTY_FEATURE_REPOSITORY => PropertyFeatureRepository::class,
97
98 PropertyFeatureFactory::PROPERTY_FEATURE => PropertyFeature::class,
99 PropertyFeatureFactory::PROPERTY_FEATURE_COLLECTION => PropertyFeatureCollection::class,
100
101 Dependency::PRICE_FACTORY => PriceFactory::class,
102 Dependency::PRICE_REPOSITORY => PriceRepository::class,
103
104 PriceFactory::SIMPLE_PRICE => SimplePrice::class,
105 PriceFactory::QUANTITY_DEPENDENT_PRICE => QuantityDependentPrice::class,
106 PriceFactory::PRICE_COLLECTION => PriceCollection::class,
107
108 Dependency::IMAGE_FACTORY => ImageFactory::class,
109 Dependency::IMAGE_REPOSITORY => ImageRepository::class,
110
111 ImageFactory::DETAIL_IMAGE => DetailImage::class,
112 ImageFactory::PREVIEW_IMAGE => PreviewImage::class,
113 ImageFactory::MORE_PHOTO_IMAGE => MorePhotoImage::class,
114 ImageFactory::IMAGE_COLLECTION => ImageCollection::class,
115
116 Dependency::MEASURE_RATIO_FACTORY => MeasureRatioFactory::class,
117 Dependency::MEASURE_RATIO_REPOSITORY => MeasureRatioRepository::class,
118
119 MeasureRatioFactory::SIMPLE_MEASURE_RATIO => SimpleMeasureRatio::class,
120 MeasureRatioFactory::MEASURE_RATIO_COLLECTION => MeasureRatioCollection::class,
121
122 Dependency::BARCODE_FACTORY => BarcodeFactory::class,
123 Dependency::BARCODE_REPOSITORY => BarcodeRepository::class,
124
125 BarcodeFactory::BARCODE => Barcode::class,
126 BarcodeFactory::BARCODE_COLLECTION => BarcodeCollection::class,
127
128 Dependency::STORE_PRODUCT_FACTORY => StoreProductFactory::class,
129 Dependency::STORE_PRODUCT_REPOSITORY => StoreProductRepository::class,
130
131 StoreProductFactory::STORE_PRODUCT => StoreProduct::class,
132 StoreProductFactory::STORE_PRODUCT_COLLECTION => StoreProductCollection::class,
133
134 'sku.tree' => SkuTree::class,
135
136 'integration.seo.facebook.facade' => FacebookFacade::class,
137 'integration.seo.facebook.product.processor' => FacebookProductProcessor::class,
138 'integration.seo.facebook.product.repository' => FacebookProductRepository::class,
139];
Определения basket.php:2