Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-catalog
Model
ResourceModel
Product
Indexer
Price
BasePriceModifier.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price
;
9
14
class
BasePriceModifier
implements
PriceModifierInterface
15
{
19
private
$priceModifiers;
20
24
public
function
__construct
(array $priceModifiers)
25
{
26
$this->priceModifiers = $priceModifiers;
27
}
28
32
public
function
modifyPrice
(
IndexTableStructure
$priceTable, array $entityIds = []) : void
33
{
34
foreach
($this->priceModifiers as $priceModifier) {
35
$priceModifier->modifyPrice($priceTable, $entityIds);
36
}
37
}
38
}
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\BasePriceModifier\modifyPrice
modifyPrice(IndexTableStructure $priceTable, array $entityIds=[])
Definition:
BasePriceModifier.php:32
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\BasePriceModifier
Definition:
BasePriceModifier.php:14
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\PriceModifierInterface
Definition:
PriceModifierInterface.php:13
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\BasePriceModifier\__construct
__construct(array $priceModifiers)
Definition:
BasePriceModifier.php:24
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price\IndexTableStructure
Definition:
IndexTableStructure.php:13
Magento\Catalog\Model\ResourceModel\Product\Indexer\Price
Definition:
BasePriceModifier.php:8