Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-customer
Block
Account
Forgotpassword.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Customer\Block\Account
;
7
8
use
Magento\Customer\Model\Url
;
9
use
Magento\Framework\View\Element\Template
;
10
17
class
Forgotpassword
extends
\Magento\Framework\View\Element\Template
18
{
22
protected
$customerUrl
;
23
29
public
function
__construct
(
30
Template
\
Context
$context,
31
Url
$customerUrl
,
32
array
$data
= []
33
) {
34
$this->customerUrl =
$customerUrl
;
35
parent::__construct($context,
$data
);
36
}
37
43
public
function
getLoginUrl
()
44
{
45
return
$this->customerUrl->getLoginUrl();
46
}
47
}
Magento\Customer\Block\Account\Forgotpassword\$customerUrl
$customerUrl
Definition:
Forgotpassword.php:22
Magento\Customer\Model\Url
Definition:
Url.php:17
Magento\Framework\View\Element\Template
Definition:
Context.php:6
Magento\Customer\Block\Account\Forgotpassword\getLoginUrl
getLoginUrl()
Definition:
Forgotpassword.php:43
Magento\Framework\View\Element\Template\Context
Definition:
Context.php:23
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Customer\Block\Account
Magento\Framework\View\Element\Template
Definition:
Template.php:32
Magento\Customer\Block\Account\Forgotpassword\__construct
__construct(Template\Context $context, Url $customerUrl, array $data=[])
Definition:
Forgotpassword.php:29
Magento\Customer\Block\Account\Forgotpassword
Definition:
Forgotpassword.php:17