| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Block\Form\Login;
- /**
- * Customer login info block
- *
- * @api
- * @since 100.0.2
- */
- class Info extends \Magento\Framework\View\Element\Template
- {
- /**
- * @var \Magento\Customer\Model\Url
- */
- protected $_customerUrl;
- /**
- * Checkout data
- *
- * @var \Magento\Checkout\Helper\Data
- */
- protected $checkoutData;
- /**
- * Core url
- *
- * @var \Magento\Framework\Url\Helper\Data
- */
- protected $coreUrl;
- /**
- * Registration
- *
- * @var \Magento\Customer\Model\Registration
- */
- protected $registration;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Customer\Model\Registration $registration
- * @param \Magento\Customer\Model\Url $customerUrl
- * @param \Magento\Checkout\Helper\Data $checkoutData
- * @param \Magento\Framework\Url\Helper\Data $coreUrl
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Customer\Model\Registration $registration,
- \Magento\Customer\Model\Url $customerUrl,
- \Magento\Checkout\Helper\Data $checkoutData,
- \Magento\Framework\Url\Helper\Data $coreUrl,
- array $data = []
- ) {
- parent::__construct($context, $data);
- $this->registration = $registration;
- $this->_customerUrl = $customerUrl;
- $this->checkoutData = $checkoutData;
- $this->coreUrl = $coreUrl;
- }
- /**
- * Return registration
- *
- * @return \Magento\Customer\Model\Registration
- */
- public function getRegistration()
- {
- return $this->registration;
- }
- /**
- * Retrieve create new account url
- *
- * @return string
- */
- public function getCreateAccountUrl()
- {
- $url = $this->getData('create_account_url');
- if ($url === null) {
- $url = $this->_customerUrl->getRegisterUrl();
- }
- if ($this->checkoutData->isContextCheckout()) {
- $url = $this->coreUrl->addRequestParam($url, ['context' => 'checkout']);
- }
- return $url;
- }
- }
|