Exemple #1
0
 /**
  * @return \Magento\Framework\Controller\Result\Redirect
  */
 public function execute()
 {
     $resultRedirect = $this->resultRedirectFactory->create();
     $scope = $this->getRequest()->getParam('scope');
     $scopeId = (int) $this->getRequest()->getParam('scope_id');
     $data = $this->getRequestData();
     try {
         $designConfigData = $this->configFactory->create($scope, $scopeId, $data);
         $this->designConfigRepository->save($designConfigData);
         $this->messageManager->addSuccess(__('You saved the configuration.'));
         $this->dataPersistor->clear('theme_design_config');
         $returnToEdit = (bool) $this->getRequest()->getParam('back', false);
         $resultRedirect->setPath('theme/design_config/');
         if ($returnToEdit) {
             $resultRedirect->setPath('theme/design_config/edit', ['scope' => $scope, 'scope_id' => $scopeId]);
         }
         return $resultRedirect;
     } catch (LocalizedException $e) {
         $messages = explode("\n", $e->getMessage());
         foreach ($messages as $message) {
             $this->messageManager->addError(__('%1', $message));
         }
     } catch (\Exception $e) {
         $this->messageManager->addException($e, __('Something went wrong while saving this configuration:') . ' ' . $e->getMessage());
     }
     $this->dataPersistor->set('theme_design_config', $data);
     $resultRedirect->setPath('theme/design_config/edit', ['scope' => $scope, 'scope_id' => $scopeId]);
     return $resultRedirect;
 }
 /**
  * @expectedExceptionMessage Can not save empty config
  * @expectedException \Magento\Framework\Exception\LocalizedException
  */
 public function testSaveWithoutConfig()
 {
     $this->designConfig->expects($this->exactly(2))->method('getExtensionAttributes')->willReturn($this->designExtension);
     $this->designExtension->expects($this->once())->method('getDesignConfigData')->willReturn(false);
     $this->repository->save($this->designConfig);
 }