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
Resetpassword.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Customer\Block\Account
;
7
8
use
Magento\Customer\Model\AccountManagement
;
9
16
class
Resetpassword
extends
\Magento\Framework\View\Element\Template
17
{
23
public
function
isAutocompleteDisabled
()
24
{
25
return
(
bool
)!$this->_scopeConfig->getValue(
26
\
Magento
\
Customer
\Model\
Form::XML_PATH_ENABLE_AUTOCOMPLETE
,
27
\
Magento
\Store\Model\
ScopeInterface::SCOPE_STORE
28
);
29
}
30
37
public
function
getMinimumPasswordLength
()
38
{
39
return
$this->_scopeConfig->getValue(
AccountManagement::XML_PATH_MINIMUM_PASSWORD_LENGTH
);
40
}
41
48
public
function
getRequiredCharacterClassesNumber
()
49
{
50
return
$this->_scopeConfig->getValue(
AccountManagement::XML_PATH_REQUIRED_CHARACTER_CLASSES_NUMBER
);
51
}
52
}
Magento\Store\Model\ScopeInterface\SCOPE_STORE
const SCOPE_STORE
Definition:
ScopeInterface.php:21
Magento\Customer\Block\Account\Resetpassword\isAutocompleteDisabled
isAutocompleteDisabled()
Definition:
Resetpassword.php:23
Magento\Customer\Model\AccountManagement
Definition:
AccountManagement.php:64
Magento\Customer\Block\Account\Customer
Definition:
Customer.php:14
Magento\Customer\Block\Account\Resetpassword\getMinimumPasswordLength
getMinimumPasswordLength()
Definition:
Resetpassword.php:37
Magento\Customer\Model\Form\XML_PATH_ENABLE_AUTOCOMPLETE
const XML_PATH_ENABLE_AUTOCOMPLETE
Definition:
Form.php:19
Magento\Customer\Block\Account
Magento\Customer\Block\Account\Resetpassword\getRequiredCharacterClassesNumber
getRequiredCharacterClassesNumber()
Definition:
Resetpassword.php:48
Magento
Magento\Framework\View\Element\Template
Definition:
Template.php:32
Magento\Customer\Model\AccountManagement\XML_PATH_REQUIRED_CHARACTER_CLASSES_NUMBER
const XML_PATH_REQUIRED_CHARACTER_CLASSES_NUMBER
Definition:
AccountManagement.php:159
Magento\Customer\Block\Account\Resetpassword
Definition:
Resetpassword.php:16
Magento\Customer\Model\AccountManagement\XML_PATH_MINIMUM_PASSWORD_LENGTH
const XML_PATH_MINIMUM_PASSWORD_LENGTH
Definition:
AccountManagement.php:154