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-quote
Model
Quote
Config.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Quote\Model\Quote
;
7
8
class
Config
9
{
13
private
$_attributeConfig;
14
18
public
function
__construct
(\
Magento
\Catalog\Model\Attribute\
Config
$attributeConfig)
19
{
20
$this->_attributeConfig = $attributeConfig;
21
}
22
26
public
function
getProductAttributes
()
27
{
28
return
$this->_attributeConfig->getAttributeNames(
'quote_item'
);
29
}
30
}
Magento\Quote\Model\Quote\Config\getProductAttributes
getProductAttributes()
Definition:
Config.php:26
Magento
Magento\Quote\Model\Quote
Definition:
AddressTest.php:6
Magento\Quote\Model\Quote\Config\__construct
__construct(\Magento\Catalog\Model\Attribute\Config $attributeConfig)
Definition:
Config.php:18
Magento\Framework\App\ResourceConnection\Config
Definition:
Config.php:14