当前位置: 首页>>代码示例>>PHP>>正文


PHP Ess_M2ePro_Model_Component_Abstract::deleteInstance方法代码示例

本文整理汇总了PHP中Ess_M2ePro_Model_Component_Abstract::deleteInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Ess_M2ePro_Model_Component_Abstract::deleteInstance方法的具体用法?PHP Ess_M2ePro_Model_Component_Abstract::deleteInstance怎么用?PHP Ess_M2ePro_Model_Component_Abstract::deleteInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ess_M2ePro_Model_Component_Abstract的用法示例。


在下文中一共展示了Ess_M2ePro_Model_Component_Abstract::deleteInstance方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->categoryTemplateModel = NULL);
     $temp && ($this->categorySpecificSourceModels = array());
     return $temp;
 }
开发者ID:ppkowalski,项目名称:M2E,代码行数:7,代码来源:Specific.php

示例2: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->shippingTemplateModel = NULL);
     $temp && ($this->shippingServiceSourceModels = array());
     return $temp;
 }
开发者ID:ppkowalski,项目名称:M2E,代码行数:7,代码来源:Service.php

示例3: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->descriptionTemplateModel = NULL);
     $temp && ($this->descriptionDefinitionSourceModels = array());
     return $temp;
 }
开发者ID:newedge-media,项目名称:iwantmymeds,代码行数:7,代码来源:Definition.php

示例4: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->newProductTemplateModel = NULL);
     $temp && ($this->newProductAttributeSourceModels = array());
     return $temp;
 }
开发者ID:ReeceCrossland,项目名称:essua-m2epro,代码行数:7,代码来源:Attribute.php

示例5: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->categoryTemplateModel = NULL);
     $temp && ($this->magentoProductModel = NULL);
     return $temp;
 }
开发者ID:xiaoguizhidao,项目名称:ecommerce,代码行数:7,代码来源:Specific.php

示例6: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->accountModel = NULL);
     $temp && ($this->marketplaceModel = NULL);
     $temp && ($this->magentoProductModel = NULL);
     return $temp;
 }
开发者ID:giuseppemorelli,项目名称:magento-extension,代码行数:8,代码来源:Item.php

示例7: deleteInstance

 public function deleteInstance()
 {
     $items = $this->getRelatedSimpleItems('Ebay_Listing_Auto_Category', 'group_id', true);
     foreach ($items as $item) {
         $item->deleteInstance();
     }
     return parent::deleteInstance();
 }
开发者ID:technomagegithub,项目名称:magento,代码行数:8,代码来源:Group.php

示例8: deleteInstance

 public function deleteInstance()
 {
     if ($this->isLocked()) {
         return false;
     }
     $temp = parent::deleteInstance();
     $temp && ($this->newProductTemplateModel = NULL);
     $temp && ($this->newProductCoreSourceModels = array());
     return $temp;
 }
开发者ID:ReeceCrossland,项目名称:essua-m2epro,代码行数:10,代码来源:Core.php

示例9: deleteInstance

 public function deleteInstance()
 {
     if (!parent::deleteInstance()) {
         return false;
     }
     /** @var $connWrite Varien_Db_Adapter_Pdo_Mysql */
     $connWrite = Mage::getSingleton('core/resource')->getConnection('core_write');
     $coreResourceModel = Mage::getSingleton('core/resource');
     $filterGroupRelation = $coreResourceModel->getTableName('m2epro_ebay_motor_filter_to_group');
     $connWrite->delete($filterGroupRelation, array('group_id = ?' => $this->getId()));
     return true;
 }
开发者ID:ReeceCrossland,项目名称:essua-m2epro,代码行数:12,代码来源:Group.php

示例10: deleteInstance

 public function deleteInstance()
 {
     // Delete watermark if exists
     // ----------------------------------
     $varDir = new Ess_M2ePro_Model_General_VariablesDir(array('child_folder' => 'ebay/template/description/watermarks'));
     $watermarkPath = $varDir->getPath() . $this->getId() . '.png';
     if (is_file($watermarkPath)) {
         @unlink($watermarkPath);
     }
     // ----------------------------------
     $temp = parent::deleteInstance();
     $temp && ($this->magentoProductModel = NULL);
     return $temp;
 }
开发者ID:xiaoguizhidao,项目名称:bb,代码行数:14,代码来源:Description.php

示例11: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->accountModel = NULL);
     return $temp;
 }
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:6,代码来源:Message.php

示例12: deleteInstance

 public function deleteInstance()
 {
     $temp = parent::deleteInstance();
     $temp && ($this->generalTemplateModel = NULL);
     return $temp;
 }
开发者ID:xiaoguizhidao,项目名称:beut,代码行数:6,代码来源:Payment.php


注:本文中的Ess_M2ePro_Model_Component_Abstract::deleteInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。