當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AbstractExtensibleModel::afterSave方法代碼示例

本文整理匯總了PHP中Magento\Framework\Model\AbstractExtensibleModel::afterSave方法的典型用法代碼示例。如果您正苦於以下問題:PHP AbstractExtensibleModel::afterSave方法的具體用法?PHP AbstractExtensibleModel::afterSave怎麽用?PHP AbstractExtensibleModel::afterSave使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Magento\Framework\Model\AbstractExtensibleModel的用法示例。


在下文中一共展示了AbstractExtensibleModel::afterSave方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: afterSave

 /**
  * After save process
  *
  * @return $this
  */
 public function afterSave()
 {
     parent::afterSave();
     $this->_getResource()->saveLabel($this);
     $this->_getResource()->savePrices($this);
     return $this;
 }
開發者ID:opexsw,項目名稱:magento2,代碼行數:12,代碼來源:Attribute.php

示例2: afterSave

 /**
  * @return \Magento\Framework\Model\AbstractModel
  * @throws \Magento\Framework\Exception\LocalizedException
  */
 public function afterSave()
 {
     $this->getValueInstance()->unsetValues();
     if (is_array($this->getData('values'))) {
         foreach ($this->getData('values') as $value) {
             $this->getValueInstance()->addValue($value);
         }
         $this->getValueInstance()->setOption($this)->saveValues();
     } elseif ($this->getGroupByType($this->getType()) == self::OPTION_GROUP_SELECT) {
         throw new LocalizedException(__('Select type options required values rows.'));
     }
     return parent::afterSave();
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:17,代碼來源:Option.php

示例3: afterSave

 /**
  * After save process
  *
  * @return $this
  */
 public function afterSave()
 {
     $this->getResource()->saveItemTitle($this);
     return parent::afterSave();
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:10,代碼來源:Sample.php

示例4: afterSave

 /**
  * After save rule
  * Re-declared for populate rate calculations
  *
  * @return $this
  */
 public function afterSave()
 {
     parent::afterSave();
     $this->saveCalculationData();
     $this->_eventManager->dispatch('tax_settings_change_after');
     return $this;
 }
開發者ID:opexsw,項目名稱:magento2,代碼行數:13,代碼來源:Rule.php

示例5: afterSave

 /**
  * Save related items
  *
  * @return $this
  */
 public function afterSave()
 {
     parent::afterSave();
     if (null !== $this->_addresses) {
         $this->getAddressesCollection()->save();
     }
     if (null !== $this->_items) {
         $this->getItemsCollection()->save();
     }
     if (null !== $this->_payments) {
         $this->getPaymentsCollection()->save();
     }
     if (null !== $this->_currentPayment) {
         $this->getPayment()->save();
     }
     return $this;
 }
開發者ID:kid17,項目名稱:magento2,代碼行數:22,代碼來源:Quote.php

示例6: afterSave

 /**
  * Save rate titles
  *
  * @return \Magento\Tax\Model\Calculation\Rate
  */
 public function afterSave()
 {
     $this->saveTitles();
     $this->_eventManager->dispatch('tax_settings_change_after');
     return parent::afterSave();
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:11,代碼來源:Rate.php

示例7: afterSave

 /**
  * @return \Magento\Framework\Model\AbstractModel
  * @throws \Magento\Framework\Exception\LocalizedException
  */
 public function afterSave()
 {
     $this->getValueInstance()->unsetValues();
     $values = $this->getValues() ?: $this->getData('values');
     if (is_array($values)) {
         foreach ($values as $value) {
             if ($value instanceof \Magento\Catalog\Api\Data\ProductCustomOptionValuesInterface) {
                 $data = $value->getData();
             } else {
                 $data = $value;
             }
             $this->getValueInstance()->addValue($data);
         }
         $this->getValueInstance()->setOption($this)->saveValues();
     } elseif ($this->getGroupByType($this->getType()) == self::OPTION_GROUP_SELECT) {
         throw new LocalizedException(__('Select type options required values rows.'));
     }
     return parent::afterSave();
 }
開發者ID:Doability,項目名稱:magento2dev,代碼行數:23,代碼來源:Option.php


注:本文中的Magento\Framework\Model\AbstractExtensibleModel::afterSave方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。