本文整理汇总了PHP中Magento\Framework\Object::unsetData方法的典型用法代码示例。如果您正苦于以下问题:PHP Object::unsetData方法的具体用法?PHP Object::unsetData怎么用?PHP Object::unsetData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\Object
的用法示例。
在下文中一共展示了Object::unsetData方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _restoreOldAttrValue
/**
* Restore old attribute value
*
* @param \Magento\Framework\Object $object
* @param mixed $oldAttrValue
* @return void
*/
protected function _restoreOldAttrValue($object, $oldAttrValue)
{
$attrCode = $this->getAttribute();
if (is_null($oldAttrValue)) {
$object->unsetData($attrCode);
} else {
$object->setData($attrCode, $oldAttrValue);
}
}
示例2: _unserialize
/**
* Try to unserialize the attribute value
*
* @param \Magento\Framework\Object $object
* @return $this
*/
protected function _unserialize(\Magento\Framework\Object $object)
{
$attrCode = $this->getAttribute()->getAttributeCode();
if ($object->getData($attrCode)) {
try {
$unserialized = unserialize($object->getData($attrCode));
$object->setData($attrCode, $unserialized);
} catch (\Exception $e) {
$object->unsetData($attrCode);
}
}
return $this;
}
示例3: testUnsetData
/**
* Tests \Magento\Framework\Object->unsetData()
*/
public function testUnsetData()
{
$data = ['key1' => 'value1', 'key2' => 'value2', 'key3' => 3, 'key4' => 4];
$this->_object->setData($data);
$this->_object->unsetData('key1');
unset($data['key1']);
$this->assertEquals($data, $this->_object->getData());
$this->_object->unsetData(['key2', 'key3']);
unset($data['key2']);
unset($data['key3']);
$this->assertEquals($data, $this->_object->getData());
$this->_object->unsetData();
$this->assertEquals([], $this->_object->getData());
}
示例4: _serializeField
/**
* Serialize specified field in an object
*
* @param \Magento\Framework\Object $object
* @param string $field
* @param mixed $defaultValue
* @param bool $unsetEmpty
* @return $this
*/
protected function _serializeField(\Magento\Framework\Object $object, $field, $defaultValue = null, $unsetEmpty = false)
{
$value = $object->getData($field);
if (empty($value)) {
if ($unsetEmpty) {
$object->unsetData($field);
} else {
if (is_object($defaultValue) || is_array($defaultValue)) {
$defaultValue = serialize($defaultValue);
}
$object->setData($field, $defaultValue);
}
} elseif (is_array($value) || is_object($value)) {
$object->setData($field, serialize($value));
}
return $this;
}