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


PHP CustomerRepositoryInterface::deleteById方法代码示例

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


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

示例1: tearDown

 /**
  * Ensure that fixture customer and his addresses are deleted.
  */
 protected function tearDown()
 {
     /** @var \Magento\Framework\Registry $registry */
     $registry = Bootstrap::getObjectManager()->get('Magento\\Framework\\Registry');
     $registry->unregister('isSecureArea');
     $registry->register('isSecureArea', true);
     try {
         $fixtureFirstAddressId = 1;
         $this->addressRepository->deleteById($fixtureFirstAddressId);
     } catch (\Magento\Framework\Exception\NoSuchEntityException $e) {
         /** First address fixture was not used */
     }
     try {
         $fixtureSecondAddressId = 2;
         $this->addressRepository->deleteById($fixtureSecondAddressId);
     } catch (\Magento\Framework\Exception\NoSuchEntityException $e) {
         /** Second address fixture was not used */
     }
     try {
         $fixtureCustomerId = 1;
         $this->customerRepository->deleteById($fixtureCustomerId);
     } catch (\Magento\Framework\Exception\NoSuchEntityException $e) {
         /** Customer fixture was not used */
     }
     $registry->unregister('isSecureArea');
     $registry->register('isSecureArea', false);
     parent::tearDown();
 }
开发者ID:andrewhowdencom,项目名称:m2onk8s,代码行数:31,代码来源:AddressRepositoryTest.php

示例2: massAction

 /**
  * @param AbstractCollection $collection
  * @return \Magento\Backend\Model\View\Result\Redirect
  */
 protected function massAction(AbstractCollection $collection)
 {
     $customersDeleted = 0;
     foreach ($collection->getAllIds() as $customerId) {
         $this->customerRepository->deleteById($customerId);
         $customersDeleted++;
     }
     if ($customersDeleted) {
         $this->messageManager->addSuccess(__('A total of %1 record(s) were deleted.', $customersDeleted));
     }
     /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
     $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
     $resultRedirect->setPath($this->getComponentRefererUrl());
     return $resultRedirect;
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:19,代码来源:MassDelete.php

示例3: testDeleteById

 /**
  * @magentoAppArea adminhtml
  * @magentoDataFixture Magento/Customer/_files/customer.php
  * @magentoAppIsolation enabled
  */
 public function testDeleteById()
 {
     $fixtureCustomerEmail = 'customer@example.com';
     $fixtureCustomerId = 1;
     $this->customerRepository->deleteById($fixtureCustomerId);
     /** Ensure that customer was deleted */
     $this->setExpectedException('Magento\\Framework\\Exception\\NoSuchEntityException', 'No such entity with email = customer@example.com, websiteId = 1');
     $this->customerRepository->get($fixtureCustomerEmail);
 }
开发者ID:vasiljok,项目名称:magento2,代码行数:14,代码来源:CustomerRepositoryTest.php

示例4: testCustomerDeletedByIdAdminArea

 /**
  * @magentoAppArea adminhtml
  * @magentoDataFixture Magento/Newsletter/_files/subscribers.php
  */
 public function testCustomerDeletedByIdAdminArea()
 {
     $objectManager = Bootstrap::getObjectManager();
     /** @var \Magento\Newsletter\Model\Subscriber $subscriber */
     $subscriber = $objectManager->create('Magento\\Newsletter\\Model\\Subscriber');
     $subscriber->loadByEmail('customer@example.com');
     $this->assertTrue($subscriber->isSubscribed());
     $this->customerRepository->deleteById(1);
     $this->verifySubscriptionNotExist('customer@example.com');
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:14,代码来源:PluginTest.php


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