예제 #1
0
 /**
  * Retrieve Select for update attribute value in flat table
  *
  * @param   int $store
  * @return  \Magento\Framework\DB\Select|null
  */
 public function getFlatUpdateSelect($store)
 {
     /** @var $option \Magento\Eav\Model\Resource\Entity\Attribute\Option */
     $option = $this->_optionFactory->create();
     return $option->getFlatUpdateSelect($this->getAttribute(), $store, false);
 }
예제 #2
0
파일: View.php 프로젝트: aiesh/magento2
 /**
  * Retrieve Select for update Attribute value in flat table
  *
  * @param   int $store
  * @return  \Magento\Framework\DB\Select|null
  */
 public function getFlatUpdateSelect($store)
 {
     return $this->optionFactory->create()->getFlatUpdateSelect($this->getAttribute(), $store, false);
 }
예제 #3
0
 /**
  * Retrieve Select for update Attribute value in flat table
  *
  * @param   int $store
  * @return  \Magento\Framework\DB\Select|null
  */
 public function getFlatUpdateSelect($store)
 {
     return $this->_entityAttribute->create()->getFlatUpdateSelect($this->getAttribute(), $store, false);
 }