Exemplo n.º 1
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_template_shipping_calculated');
     return parent::save();
 }
Exemplo n.º 2
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('amazon_template_shippingoverride');
     return parent::save();
 }
Exemplo n.º 3
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_account_pickup_store');
     return parent::save();
 }
Exemplo n.º 4
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('template_description_definition');
     return parent::save();
 }
Exemplo n.º 5
0
 public function save()
 {
     $this->getHelper('Data\\Cache\\Permanent')->removeTagValues('ebay_template_othercategory');
     return parent::save();
 }
Exemplo n.º 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;
 }