![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Webkul/PrivateShop/Controller/Adminhtml/PrivateGroup/ |
<?php /** * Webkul Software * * @category Webkul * @package Webkul_PrivateShop * @author Webkul Software Private Limited * @copyright Webkul Software Private Limited (https://webkul.com) * @license https://store.webkul.com/license.html */ namespace Webkul\PrivateShop\Controller\Adminhtml\PrivateGroup; use Webkul\PrivateShop\Api\Data\PrivateGroupInterfaceFactory; class Edit extends \Webkul\PrivateShop\Controller\Adminhtml\PrivateGroup { /** * STORE_SCOPE */ public const STORE_SCOPE = "private_shop/general/group_store_view"; /** * Authorization level of a basic admin session * * Constant Admin Resource */ public const ADMIN_RESOURCE = 'Webkul_PrivateShop::view'; /** * @var \Magento\Framework\View\Result\PageFactory */ protected $resultPageFactory; /** * @var PrivateGroupInterfaceFactory */ protected $privateGroupFactory; /** * @var \Magento\Framework\Controller\Result\JsonFactory */ protected $resultJsonFactory; /** * @var \Magento\Framework\App\Config\ScopeConfigInterface */ protected $scopeConfig; /** * Constructor * * @param \Magento\Backend\App\Action\Context $context * @param \Magento\Framework\Registry $coreRegistry * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory * @param PrivateGroupInterfaceFactory $privateGroupFactory * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory */ public function __construct( \Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $coreRegistry, \Magento\Framework\View\Result\PageFactory $resultPageFactory, PrivateGroupInterfaceFactory $privateGroupFactory, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory ) { $this->resultPageFactory = $resultPageFactory; $this->privateGroupFactory = $privateGroupFactory; $this->scopeConfig = $scopeConfig; $this->resultJsonFactory = $resultJsonFactory; parent::__construct($context, $coreRegistry); } /** * Edit action * * @return \Magento\Framework\Controller\ResultInterface */ public function execute() { // 1. Get ID and create model $id = $this->getRequest()->getParam('entity_id'); $model = $this->privateGroupFactory->create(); $postValue = $this->getRequest()->getPostValue(); if ($postValue) { $resultJson = $this->resultJsonFactory->create(); return $resultJson->setData(['scope' => 1]); } // 2. Initial checking if ($id) { $model->load($id); if (!$model->getId()) { $this->messageManager->addErrorMessage(__('This Privategroup no longer exists.')); /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */ $resultRedirect = $this->resultRedirectFactory->create(); return $resultRedirect->setPath('*/*/'); } } $this->_coreRegistry->register('privategroup', $model); // 3. Build edit form /** @var \Magento\Backend\Model\View\Result\Page $resultPage */ $resultPage = $this->resultPageFactory->create(); $this->initPage($resultPage)->addBreadcrumb( $id ? __('Edit Group') : __('New Group'), $id ? __('Edit Group') : __('New Group') ); $resultPage->getConfig()->getTitle()->prepend(__('Group')); $resultPage->getConfig()->getTitle()->prepend($model->getId() ? $model->getTitle() : __('New Group')); return $resultPage; } }