예제 #1
0
 /**
  * Protect delete from non admin area
  *
  * Register indexing event before delete store
  *
  * @return $this
  */
 protected function _beforeDelete()
 {
     \Magento\Framework\App\ObjectManager::getInstance()->get('Magento\\Index\\Model\\Indexer')->logEvent($this, self::ENTITY, \Magento\Index\Model\Event::TYPE_DELETE);
     $this->_configDataResource->clearScopeData(\Magento\Store\Model\ScopeInterface::SCOPE_STORES, $this->getId());
     return parent::_beforeDelete();
 }
예제 #2
0
 /**
  * Validate tax class can be deleted
  *
  * @return $this
  * @throws \Magento\Framework\Model\Exception
  */
 protected function _beforeDelete()
 {
     $this->checkClassCanBeDeleted();
     return parent::_beforeDelete();
 }
예제 #3
0
파일: Review.php 프로젝트: aiesh/magento2
 /**
  * Validate user before delete
  *
  * @return $this
  */
 protected function _beforeDelete()
 {
     return parent::_beforeDelete();
 }
예제 #4
0
 /**
  * @return $this
  */
 protected function _beforeDelete()
 {
     $this->_configDataResource->clearScopeData(\Magento\Store\Model\ScopeInterface::SCOPE_WEBSITES, $this->getId());
     $this->_configDataResource->clearScopeData(\Magento\Store\Model\ScopeInterface::SCOPE_STORES, $this->getStoreIds());
     return parent::_beforeDelete();
 }
예제 #5
0
파일: Rate.php 프로젝트: aiesh/magento2
 /**
  * Processing object before delete data
  *
  * @return \Magento\Tax\Model\Calculation\Rate
  * @throws \Magento\Framework\Model\Exception
  */
 protected function _beforeDelete()
 {
     if ($this->_isInRule()) {
         throw new CouldNotDeleteException('The tax rate cannot be removed. It exists in a tax rule.');
     }
     return parent::_beforeDelete();
 }
예제 #6
0
파일: Instance.php 프로젝트: aiesh/magento2
 /**
  * Invalidate related cache if instance contain layout updates
  *
  * @return $this
  */
 protected function _beforeDelete()
 {
     if ($this->getPageGroups()) {
         $this->_invalidateCache();
     }
     return parent::_beforeDelete();
 }
예제 #7
0
파일: File.php 프로젝트: aiesh/magento2
 /**
  * Prepare file before it will be deleted
  *
  * @return $this
  */
 protected function _beforeDelete()
 {
     $fileService = $this->getCustomizationService();
     $fileService->delete($this);
     return parent::_beforeDelete();
 }
예제 #8
0
파일: Customer.php 프로젝트: aiesh/magento2
 /**
  * Prepare customer for delete
  *
  * @return $this
  */
 protected function _beforeDelete()
 {
     //TODO : Revisit and figure handling permissions in MAGETWO-11084 Implementation: Service Context Provider
     return parent::_beforeDelete();
 }