コード例 #1
0
ファイル: Calculated.php プロジェクト: Doability/magento2dev
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_template_shipping_calculated');
     return parent::save();
 }
コード例 #2
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('amazon_template_shippingoverride');
     return parent::save();
 }
コード例 #3
0
ファイル: PickupStore.php プロジェクト: Doability/magento2dev
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_account_pickup_store');
     return parent::save();
 }
コード例 #4
0
ファイル: Definition.php プロジェクト: Doability/magento2dev
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('template_description_definition');
     return parent::save();
 }
コード例 #5
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_template_othercategory');
     return parent::save();
 }
コード例 #6
0
 public function save()
 {
     if (!is_null($this->childMode) && is_null($this->getData('component_mode'))) {
         $this->setData('component_mode', $this->childMode);
     }
     $temp = parent::save();
     if (is_null($this->childObject)) {
         return $temp;
     }
     $this->getChildObject()->save();
     return $temp;
 }