コード例 #1
0
ファイル: Product.php プロジェクト: njaeger/magento_github
 protected function _afterLoad()
 {
     if ($data = $this->getAdditionalData()) {
         $data = unserialize($data);
         if (isset($data['attributes'])) {
             $this->setAttributes($data['attributes']);
         }
     }
     return parent::_afterLoad();
 }
コード例 #2
0
ファイル: Page.php プロジェクト: njaeger/magento_github
 protected function _afterLoad()
 {
     if ($data = $this->getAdditionalData()) {
         $data = unserialize($data);
         if (isset($data['page_type'])) {
             $this->setPageType($data['page_type']);
         }
     }
     return parent::_afterLoad();
 }