本文整理汇总了PHP中Mage_Catalog_Model_Abstract::dataHasChangedFor方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Catalog_Model_Abstract::dataHasChangedFor方法的具体用法?PHP Mage_Catalog_Model_Abstract::dataHasChangedFor怎么用?PHP Mage_Catalog_Model_Abstract::dataHasChangedFor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Catalog_Model_Abstract
的用法示例。
在下文中一共展示了Mage_Catalog_Model_Abstract::dataHasChangedFor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: afterSave
/**
* After Save Attribute manipulation
*
* @param Mage_Catalog_Model_Abstract $object
* @return $this
*/
public function afterSave($object)
{
// var_dump($object);exit;
$hasChanges = $object->dataHasChangedFor($this->getAttribute()->getName());
if (!$hasChanges) {
return $this;
}
$data = $object->getData($this->getAttribute()->getName());
return $this;
}
示例2: _isAvailableUrl
/**
* Check unique url_key value in catalog_category_entity_url_key table.
*
* @param Mage_Catalog_Model_Abstract $object
* @return bool
* @throws Mage_Core_Exception
*/
protected function _isAvailableUrl($object)
{
$select = $this->_connection->select()->from($this->getAttribute()->getBackendTable(), array('entity_id', 'store_id'))->where('value = ?', $object->getUrlKey())->limit(1);
$row = $this->_connection->fetchRow($select);
// we should allow save same url key for product in current store view
// but not allow save existing url key in current store view from another store view
if (empty($row)) {
return true;
} elseif ($object->hasData('url_key') && !$object->dataHasChangedFor('url_key')) {
return true;
} elseif ($object->getId() && $object->getStoreId() !== null && ($row['store_id'] == $object->getStoreId() && $row['entity_id'] == $object->getId())) {
return true;
}
return false;
}