![]() 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/old/vendor/magento/module-catalog/Controller/Adminhtml/Product/Set/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Controller\Adminhtml\Product\Set; use Magento\Framework\Registry; use Magento\Backend\App\Action\Context; use Magento\Framework\App\ObjectManager; use Magento\Backend\Model\View\Result\Page; use Magento\Framework\View\Result\PageFactory; use Magento\Framework\Controller\ResultInterface; use Magento\Eav\Api\AttributeSetRepositoryInterface; use Magento\Catalog\Controller\Adminhtml\Product\Set; use Magento\Framework\Exception\NoSuchEntityException; use Magento\Framework\App\Action\HttpGetActionInterface; /** * Edit attribute set controller. */ class Edit extends Set implements HttpGetActionInterface { /** * @var PageFactory */ protected $resultPageFactory; /** * @var AttributeSetRepositoryInterface */ private $attributeSetRepository; /** * @param Context $context * @param Registry $coreRegistry * @param PageFactory $resultPageFactory * @param AttributeSetRepositoryInterface $attributeSetRepository */ public function __construct( Context $context, Registry $coreRegistry, PageFactory $resultPageFactory, AttributeSetRepositoryInterface $attributeSetRepository = null ) { parent::__construct($context, $coreRegistry); $this->resultPageFactory = $resultPageFactory; $this->attributeSetRepository = $attributeSetRepository ?: ObjectManager::getInstance()->get(AttributeSetRepositoryInterface::class); } /** * @inheritdoc */ public function execute() { $this->_setTypeId(); $attributeSet = $this->attributeSetRepository->get($this->getRequest()->getParam('id')); if (!$attributeSet->getId()) { return $this->resultRedirectFactory->create()->setPath('catalog/*/index'); } $this->_coreRegistry->register('current_attribute_set', $attributeSet); /** @var Page $resultPage */ $resultPage = $this->resultPageFactory->create(); $resultPage->setActiveMenu('Magento_Catalog::catalog_attributes_sets'); $resultPage->getConfig()->getTitle()->prepend(__('Attribute Sets')); $resultPage->getConfig()->getTitle()->prepend( $attributeSet->getId() ? $attributeSet->getAttributeSetName() : __('New Set') ); $resultPage->addBreadcrumb(__('Catalog'), __('Catalog')); $resultPage->addBreadcrumb(__('Manage Product Sets'), __('Manage Product Sets')); return $resultPage; } }