getRequest()->getParam('id'); $this->_coreRegistry->register(RegistryConstants::CURRENT_GROUP_ID, $groupId); return $groupId; } /** * Edit or create customer group. * * @return \Magento\Backend\Model\View\Result\Page */ public function execute() { $groupId = $this->_initGroup(); /** @var \Magento\Backend\Model\View\Result\Page $resultPage */ $resultPage = $this->resultPageFactory->create(); $resultPage->setActiveMenu('Magento_Customer::customer_group'); $resultPage->getConfig()->getTitle()->prepend(__('Customer Groups')); $resultPage->addBreadcrumb(__('Customers'), __('Customers')); $resultPage->addBreadcrumb(__('Customer Groups'), __('Customer Groups'), $this->getUrl('customer/group')); if ($groupId === null) { $resultPage->addBreadcrumb(__('New Group'), __('New Customer Groups')); $resultPage->getConfig()->getTitle()->prepend(__('New Customer Group')); } else { $resultPage->addBreadcrumb(__('Edit Group'), __('Edit Customer Groups')); $resultPage->getConfig()->getTitle()->prepend( $this->groupRepository->getById($groupId)->getCode() ); } $resultPage->getLayout()->addBlock('Magento\Customer\Block\Adminhtml\Group\Edit', 'group', 'content') ->setEditMode((bool)$groupId); return $resultPage; } }