当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Catalog_Model_Abstract::setData方法代码示例

本文整理汇总了PHP中Mage_Catalog_Model_Abstract::setData方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Catalog_Model_Abstract::setData方法的具体用法?PHP Mage_Catalog_Model_Abstract::setData怎么用?PHP Mage_Catalog_Model_Abstract::setData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Catalog_Model_Abstract的用法示例。


在下文中一共展示了Mage_Catalog_Model_Abstract::setData方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _setAttributeValue

 /**
  * Initialize attribute value for object
  *
  * @param Mage_Catalog_Model_Abstract $object
  * @param array $valueRow
  * @return Mage_Catalog_Model_Resource_Abstract
  */
 protected function _setAttributeValue($object, $valueRow)
 {
     $attribute = $this->getAttribute($valueRow['attribute_id']);
     if ($attribute) {
         $attributeCode = $attribute->getAttributeCode();
         $isDefaultStore = $valueRow['store_id'] == $this->getDefaultStoreId();
         if (isset($this->_attributes[$valueRow['attribute_id']])) {
             if ($isDefaultStore) {
                 $object->setAttributeDefaultValue($attributeCode, $valueRow['value']);
             } else {
                 $object->setAttributeDefaultValue($attributeCode, $this->_attributes[$valueRow['attribute_id']]['value']);
             }
         } else {
             $this->_attributes[$valueRow['attribute_id']] = $valueRow;
         }
         $value = $valueRow['value'];
         $valueId = $valueRow['value_id'];
         $object->setData($attributeCode, $value);
         if (!$isDefaultStore) {
             $object->setExistsStoreValueFlag($attributeCode);
         }
         if (Mage::getVersion() > '1.6.2.0') {
             $attribute->getBackend()->setEntityValueId($object, $valueId);
         } else {
             $attribute->getBackend()->setValueId($object, $valueId);
         }
     }
     return $this;
 }
开发者ID:ahsanmage,项目名称:vr,代码行数:36,代码来源:Abstract.php

示例2: afterLoad

 /**
  * Assign group prices to product data
  *
  * @param Mage_Catalog_Model_Abstract $object
  * @return $this
  */
 public function afterLoad($object)
 {
     $data = $this->_getResource()->loadProfileData($object->getId(), $object->getEntityTypeId());
     $object->setData($this->getAttribute()->getName(), $data);
     $object->setOrigData($this->getAttribute()->getName(), $data);
     return $this;
 }
开发者ID:tormit,项目名称:Ho_Import,代码行数:13,代码来源:Profile.php

示例3: testUnsetData

 public function testUnsetData()
 {
     $data = array('key1' => 'value1', 'key2' => 'value2');
     $this->_model->setData($data);
     // unset one locked
     $this->_model->lockAttribute('key1')->unsetData('key1');
     $this->assertEquals($data, $this->_model->getData());
     // unset all with read only
     $this->_model->setIsReadonly(true)->unsetData();
     $this->assertEquals($data, $this->_model->getData());
     // unset all
     $this->_model->unlockAttributes()->setIsReadonly(false)->unsetData();
     $this->assertEquals(array(), $this->_model->getData());
 }
开发者ID:relue,项目名称:magento2,代码行数:14,代码来源:AbstractTest.php

示例4: _generateNextUrlKeySuffix

 /**
  * Generate unique url key if current url key already occupied
  *
  * @param Mage_Catalog_Model_Abstract $object
  * @return Mage_Catalog_Model_Abstract
  */
 protected function _generateNextUrlKeySuffix(Mage_Catalog_Model_Abstract $object)
 {
     $prefixValue = $object->getData($this->getAttribute()->getAttributeCode());
     $requestPathField = new Zend_Db_Expr($this->_connection->quoteIdentifier('value'));
     //select increment part of request path and cast expression to integer
     $urlIncrementPartExpression = $this->_eavHelper->getCastToIntExpression($this->_connection->getSubstringSql($requestPathField, strlen($prefixValue) + 1, $this->_connection->getLengthSql($requestPathField) . ' - ' . strlen($prefixValue)));
     $prefixRegexp = preg_quote($prefixValue);
     $orCondition = $this->_connection->select()->orWhere($this->_connection->prepareSqlCondition('value', array('regexp' => '^' . $prefixRegexp . '$')))->orWhere($this->_connection->prepareSqlCondition('value', array('regexp' => '^' . $prefixRegexp . '-[0-9]*$')))->getPart(Zend_Db_Select::WHERE);
     $select = $this->_connection->select();
     $select->from($this->getAttribute()->getBackendTable(), new Zend_Db_Expr('MAX(ABS(' . $urlIncrementPartExpression . '))'))->where('value LIKE :url_key')->where('entity_id <> :entity_id')->where(implode('', $orCondition));
     $bind = array('url_key' => $prefixValue . '%', 'entity_id' => (int) $object->getId());
     $suffix = $this->_connection->fetchOne($select, $bind);
     if (!is_null($suffix)) {
         $suffix = (int) $suffix;
         $object->setData($this->getAttribute()->getAttributeCode(), sprintf('%s-%s', $prefixValue, ++$suffix));
     }
     return $object;
 }
开发者ID:QiuLihua83,项目名称:magento-enterprise-1.13.1.0,代码行数:24,代码来源:Urlkey.php

示例5: _setAttribteValue

 /**
  * Initialize attribute value for object
  *
  * @param   Mage_Catalog_Model_Abstract $object
  * @param   array $valueRow
  * @return  Mage_Eav_Model_Entity_Abstract
  */
 protected function _setAttribteValue($object, $valueRow)
 {
     $attribute = $this->getAttribute($valueRow['attribute_id']);
     if ($attribute) {
         $attributeCode = $attribute->getAttributeCode();
         if (!empty($valueRow['store_value_id'])) {
             $value = $valueRow['store_value'];
             $valueId = $valueRow['store_value_id'];
             $object->setAttributeDefaultValue($attributeCode, $valueRow['value']);
         } else {
             $value = $valueRow['value'];
             $valueId = $valueRow['value_id'];
         }
         $object->setData($attributeCode, $value);
         $attribute->getBackend()->setValueId($valueId);
     }
     return $this;
 }
开发者ID:joebushi,项目名称:magento-mirror,代码行数:25,代码来源:Abstract.php

示例6: _setAttribteValue

 /**
  * Initialize attribute value for object
  *
  * @param   Mage_Catalog_Model_Abstract $object
  * @param   array $valueRow
  * @return  Mage_Eav_Model_Entity_Abstract
  */
 protected function _setAttribteValue($object, $valueRow)
 {
     $attribute = $this->getAttribute($valueRow['attribute_id']);
     if ($attribute) {
         $attributeCode = $attribute->getAttributeCode();
         if (isset($this->_attributes[$valueRow['attribute_id']])) {
             if ($valueRow['store_id'] == $this->getDefaultStoreId()) {
                 $object->setAttributeDefaultValue($attributeCode, $valueRow['value']);
             } else {
                 $object->setAttributeDefaultValue($attributeCode, $this->_attributes[$valueRow['attribute_id']]['value']);
             }
         } else {
             $this->_attributes[$valueRow['attribute_id']] = $valueRow;
         }
         $value = $valueRow['value'];
         $valueId = $valueRow['value_id'];
         $object->setData($attributeCode, $value);
         $attribute->getBackend()->setValueId($valueId);
     }
     return $this;
 }
开发者ID:codercv,项目名称:urbansurprisedev,代码行数:28,代码来源:Abstract.php


注:本文中的Mage_Catalog_Model_Abstract::setData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。