![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/Ecombricks/InventoryInventoryCatalogPrice/Plugin/Model/Product/ |
<?php /** * Copyright © eComBricks. All rights reserved. * See COPYING.txt for license details. */ namespace Ecombricks\InventoryInventoryCatalogPrice\Plugin\Model\Product; /** * Product source item price model plugin */ class SourceItemPrice extends \Ecombricks\InventoryInventoryCatalog\Plugin\Model\Product\SourceItemOption { /** * Constructor * * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\InventoryConfigurationApi\Model\IsSourceItemManagementAllowedForProductTypeInterface $isSourceItemManagementAllowedForProductType * @param \Ecombricks\Inventory\Model\SourceManagement $sourceManagement * @param \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\Get $getSourceItemOptions * @param \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\ValueDataKey $sourceItemOptionValueDataKey * @param \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\Config $sourceItemOptionConfig * @return void */ public function __construct( \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\InventoryConfigurationApi\Model\IsSourceItemManagementAllowedForProductTypeInterface $isSourceItemManagementAllowedForProductType, \Ecombricks\Inventory\Model\SourceManagement $sourceManagement, \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\Get $getSourceItemOptions, \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\ValueDataKey $sourceItemOptionValueDataKey, \Ecombricks\InventoryInventoryCatalogPrice\Model\SourceItemPrice\Config $sourceItemOptionConfig ) { parent::__construct( $storeManager, $isSourceItemManagementAllowedForProductType, $sourceManagement, $getSourceItemOptions, $sourceItemOptionValueDataKey, $sourceItemOptionConfig ); } }