-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreShopProductBundle.php
More file actions
79 lines (67 loc) · 3.66 KB
/
CoreShopProductBundle.php
File metadata and controls
79 lines (67 loc) · 3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
declare(strict_types=1);
/*
* CoreShop
*
* This source file is available under the terms of the
* CoreShop Commercial License (CCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) CoreShop GmbH (https://www.coreshop.com)
* @license CoreShop Commercial License (CCL)
*
*/
namespace CoreShop\Bundle\ProductBundle;
use CoreShop\Bundle\MoneyBundle\CoreShopMoneyBundle;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductCustomAttributesCalculatorsPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductDiscountCalculatorsPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductDiscountPriceCalculatorsPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductPriceRuleActionPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductPriceRuleConditionPass;
use CoreShop\Bundle\StudioFormBundle\DependencyInjection\Compiler\RegisterFormTypesFromTagsPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductRetailPriceCalculatorsPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductSpecificPriceRuleActionPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductSpecificPriceRuleConditionPass;
use CoreShop\Bundle\ProductBundle\DependencyInjection\Compiler\ProductValidPriceRuleFetcherPass;
use CoreShop\Bundle\ResourceBundle\AbstractResourceBundle;
use CoreShop\Bundle\ResourceBundle\CoreShopResourceBundle;
use CoreShop\Bundle\RuleBundle\CoreShopRuleBundle;
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
use Symfony\Component\DependencyInjection\ContainerBuilder;
final class CoreShopProductBundle extends AbstractResourceBundle
{
public function getSupportedDrivers(): array
{
return [
CoreShopResourceBundle::DRIVER_DOCTRINE_ORM,
];
}
public function build(ContainerBuilder $container): void
{
parent::build($container);
$container->addCompilerPass(new ProductPriceRuleConditionPass());
$container->addCompilerPass(new ProductPriceRuleActionPass());
$container->addCompilerPass(new ProductSpecificPriceRuleConditionPass());
$container->addCompilerPass(new ProductSpecificPriceRuleActionPass());
$container->addCompilerPass(new ProductValidPriceRuleFetcherPass());
$container->addCompilerPass(new ProductRetailPriceCalculatorsPass());
$container->addCompilerPass(new ProductDiscountPriceCalculatorsPass());
$container->addCompilerPass(new ProductDiscountCalculatorsPass());
$container->addCompilerPass(new ProductCustomAttributesCalculatorsPass());
$container->addCompilerPass(new RegisterFormTypesFromTagsPass(ProductPriceRuleConditionPass::PRODUCT_PRICE_RULE_CONDITION_TAG));
$container->addCompilerPass(new RegisterFormTypesFromTagsPass(ProductPriceRuleActionPass::PRODUCT_PRICE_RULE_ACTION_TAG));
$container->addCompilerPass(new RegisterFormTypesFromTagsPass(ProductSpecificPriceRuleConditionPass::PRODUCT_SPECIFIC_PRICE_RULE_CONDITION_TAG));
$container->addCompilerPass(new RegisterFormTypesFromTagsPass(ProductSpecificPriceRuleActionPass::PRODUCT_SPECIFIC_PRICE_RULE_ACTION_TAG));
}
public static function registerDependentBundles(BundleCollection $collection): void
{
parent::registerDependentBundles($collection);
$collection->addBundle(new CoreShopMoneyBundle(), 3600);
$collection->addBundle(new CoreShopRuleBundle(), 3500);
}
protected function getModelNamespace(): string
{
return 'CoreShop\Component\Product\Model';
}
}