Enter a type and click search.




Results for Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver

File: vendor/magento/module-catalog/etc/frontend/di.xml

<type name="Magento\Framework\App\ResourceConnection">
    <plugin name="get_catalog_category_product_index_table_name"
            type="Magento\Catalog\Model\Indexer\Category\Product\Plugin\TableResolver"></plugin>
    <plugin name="get_catalog_product_price_index_table_name"
            type="Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver"></plugin>
</type>

This is a type configuration.

This configuration is for the frontend area. This is the area that corresponds with the cart sub-application.

This configuration also tells the object manager to use the plugin class with Magento\Framework\App\ResourceConnection objects.

Results for Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver

File: vendor/magento/module-catalog/etc/di.xml

<type name="Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver">
    <arguments>
        <argument name="priceTableResolver" xsi:type="object">
            Magento\Catalog\Model\Indexer\Product\Price\PriceTableResolver\Proxy
        </argument>
        <argument name="storeManager" xsi:type="object">
            Magento\Store\Model\StoreManagerInterface\Proxy
        </argument>
        <argument name="context" xsi:type="object">
            Magento\Framework\App\Http\Context\Proxy
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver object that the following arguments should be used in the foo object's constructor.

Results for Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver

File: vendor/magento/module-catalog/etc/webapi_soap/di.xml

<type name="Magento\Framework\App\ResourceConnection">
    <plugin name="get_catalog_category_product_index_table_name"
            type="Magento\Catalog\Model\Indexer\Category\Product\Plugin\TableResolver"></plugin>
    <plugin name="get_catalog_product_price_index_table_name"
            type="Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver"></plugin>
</type>

This is a type configuration.

This configuration is for the webapi_soap area. This is the area that corresponds with the SOAP Api sub-application.

This configuration also tells the object manager to use the plugin class with Magento\Framework\App\ResourceConnection objects.

Results for Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver

File: vendor/magento/module-catalog/etc/webapi_rest/di.xml

<type name="Magento\Framework\App\ResourceConnection">
    <plugin name="get_catalog_category_product_index_table_name"
            type="Magento\Catalog\Model\Indexer\Category\Product\Plugin\TableResolver"></plugin>
    <plugin name="get_catalog_product_price_index_table_name"
            type="Magento\Catalog\Model\Indexer\Product\Price\Plugin\TableResolver"></plugin>
</type>

This is a type configuration.

This configuration is for the webapi_rest area. This is the area that corresponds with the REST Api sub-application.

This configuration also tells the object manager to use the plugin class with Magento\Framework\App\ResourceConnection objects.