本文整理匯總了PHP中Magento\Framework\Model\AbstractModel::_afterLoad方法的典型用法代碼示例。如果您正苦於以下問題:PHP AbstractModel::_afterLoad方法的具體用法?PHP AbstractModel::_afterLoad怎麽用?PHP AbstractModel::_afterLoad使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Magento\Framework\Model\AbstractModel
的用法示例。
在下文中一共展示了AbstractModel::_afterLoad方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _afterLoad
/**
* Set model data from info field
*
* @return $this
*/
protected function _afterLoad()
{
parent::_afterLoad();
$info = $this->jsonHelper->jsonDecode($this->getInfo());
if (is_array($info)) {
foreach ($info as $key => $value) {
$this->setData($key, $value);
}
}
return $this;
}
示例2: _afterLoad
/**
* after load
*
* @return $this
*/
protected function _afterLoad()
{
parent::_afterLoad();
$this->setCondition(unserialize($this->getCondition()));
return $this;
}
示例3: _afterLoad
/**
* Trigger collect totals after loading, if required
*
* @return $this
*/
protected function _afterLoad()
{
// collect totals and save me, if required
if (1 == $this->getData('trigger_recollect')) {
$this->collectTotals()->save();
}
return parent::_afterLoad();
}
示例4: _afterLoad
/**
* After load.
*
* @return $this
*/
public function _afterLoad()
{
parent::_afterLoad();
//@codingStandardsIgnoreStart
$this->setCondition(unserialize($this->getCondition()));
//@codingStandardsIgnoreEnd
return $this;
}