123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Catalog\Model\ResourceModel;
- /**
- * Catalog Config Resource Model
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Config extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
- {
- /**
- * catalog_product entity type id
- *
- * @var int
- */
- protected $_entityTypeId;
- /**
- * Store id
- *
- * @var int
- */
- protected $_storeId = null;
- /**
- * Eav config
- *
- * @var \Magento\Eav\Model\Config
- */
- protected $_eavConfig;
- /**
- * Store manager
- *
- * @var \Magento\Store\Model\StoreManagerInterface
- */
- protected $_storeManager;
- /**
- * @param \Magento\Framework\Model\ResourceModel\Db\Context $context
- * @param \Magento\Store\Model\StoreManagerInterface $storeManager
- * @param \Magento\Eav\Model\Config $eavConfig
- * @param string $connectionName
- */
- public function __construct(
- \Magento\Framework\Model\ResourceModel\Db\Context $context,
- \Magento\Store\Model\StoreManagerInterface $storeManager,
- \Magento\Eav\Model\Config $eavConfig,
- $connectionName = null
- ) {
- $this->_storeManager = $storeManager;
- $this->_eavConfig = $eavConfig;
- parent::__construct($context, $connectionName);
- }
- /**
- * Initialize connection
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init('eav_attribute', 'attribute_id');
- }
- /**
- * Set store id
- *
- * @param integer $storeId
- * @return $this
- */
- public function setStoreId($storeId)
- {
- $this->_storeId = (int)$storeId;
- return $this;
- }
- /**
- * Return store id.
- * If is not set return current app store
- *
- * @return integer
- */
- public function getStoreId()
- {
- if ($this->_storeId === null) {
- $this->_storeId = (int)$this->_storeManager->getStore()->getId();
- }
- return $this->_storeId;
- }
- /**
- * Retrieve catalog_product entity type id
- *
- * @return int
- */
- public function getEntityTypeId()
- {
- if ($this->_entityTypeId === null) {
- $this->_entityTypeId = (int)$this->_eavConfig->getEntityType(\Magento\Catalog\Model\Product::ENTITY)
- ->getId();
- }
- return $this->_entityTypeId;
- }
- /**
- * Retrieve Product Attributes Used in Catalog Product listing
- *
- * @return array
- */
- public function getAttributesUsedInListing()
- {
- $connection = $this->getConnection();
- $storeLabelExpr = $connection->getCheckSql('al.value IS NOT NULL', 'al.value', 'main_table.frontend_label');
- $select = $connection->select()->from(
- ['main_table' => $this->getTable('eav_attribute')]
- )->join(
- ['additional_table' => $this->getTable('catalog_eav_attribute')],
- 'main_table.attribute_id = additional_table.attribute_id'
- )->joinLeft(
- ['al' => $this->getTable('eav_attribute_label')],
- 'al.attribute_id = main_table.attribute_id AND al.store_id = ' . (int)$this->getStoreId(),
- ['store_label' => $storeLabelExpr]
- )->where(
- 'main_table.entity_type_id = ?',
- $this->getEntityTypeId()
- )->where(
- 'additional_table.used_in_product_listing = ?',
- 1
- );
- return $connection->fetchAll($select);
- }
- /**
- * Retrieve Used Product Attributes for Catalog Product Listing Sort By
- *
- * @return array
- */
- public function getAttributesUsedForSortBy()
- {
- $connection = $this->getConnection();
- $storeLabelExpr = $connection->getCheckSql('al.value IS NULL', 'main_table.frontend_label', 'al.value');
- $select = $connection->select()->from(
- ['main_table' => $this->getTable('eav_attribute')]
- )->join(
- ['additional_table' => $this->getTable('catalog_eav_attribute')],
- 'main_table.attribute_id = additional_table.attribute_id'
- )->joinLeft(
- ['al' => $this->getTable('eav_attribute_label')],
- 'al.attribute_id = main_table.attribute_id AND al.store_id = ' . $this->getStoreId(),
- ['store_label' => $storeLabelExpr]
- )->where(
- 'main_table.entity_type_id = ?',
- $this->getEntityTypeId()
- )->where(
- 'additional_table.used_for_sort_by = ?',
- 1
- );
- return $connection->fetchAll($select);
- }
- }
|