1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Account;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
- use Magento\Customer\Model\Registration;
- use Magento\Customer\Model\Session;
- use Magento\Framework\View\Result\PageFactory;
- use Magento\Framework\App\Action\Context;
- class Create extends \Magento\Customer\Controller\AbstractAccount implements HttpGetActionInterface
- {
- /**
- * @var \Magento\Customer\Model\Registration
- */
- protected $registration;
- /**
- * @var Session
- */
- protected $session;
- /**
- * @var PageFactory
- */
- protected $resultPageFactory;
- /**
- * @param Context $context
- * @param Session $customerSession
- * @param PageFactory $resultPageFactory
- * @param Registration $registration
- */
- public function __construct(
- Context $context,
- Session $customerSession,
- PageFactory $resultPageFactory,
- Registration $registration
- ) {
- $this->session = $customerSession;
- $this->resultPageFactory = $resultPageFactory;
- $this->registration = $registration;
- parent::__construct($context);
- }
- /**
- * Customer register form page
- *
- * @return \Magento\Framework\Controller\Result\Redirect|\Magento\Framework\View\Result\Page
- */
- public function execute()
- {
- if ($this->session->isLoggedIn() || !$this->registration->isAllowed()) {
- /** @var \Magento\Framework\Controller\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultRedirectFactory->create();
- $resultRedirect->setPath('*/*');
- return $resultRedirect;
- }
- /** @var \Magento\Framework\View\Result\Page $resultPage */
- $resultPage = $this->resultPageFactory->create();
- return $resultPage;
- }
- }
|