![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-customer/Block/Form/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Form; use Magento\Customer\Api\CustomerRepositoryInterface; use Magento\Customer\Model\AccountManagement; /** * Customer edit form block * * @api * @SuppressWarnings(PHPMD.DepthOfInheritance) * @since 100.0.2 */ class Edit extends \Magento\Customer\Block\Account\Dashboard { /** * Retrieve form data * * @return array */ protected function getFormData() { $data = $this->getData('form_data'); if ($data === null) { $formData = $this->customerSession->getCustomerFormData(true); $data = []; if ($formData) { $data['data'] = $formData; $data['customer_data'] = 1; } $this->setData('form_data', $data); } return $data; } /** * Restore entity data from session. Entity and form code must be defined for the form. * * @param \Magento\Customer\Model\Metadata\Form $form * @param null $scope * @return \Magento\Customer\Block\Form\Register */ public function restoreSessionData(\Magento\Customer\Model\Metadata\Form $form, $scope = null) { $formData = $this->getFormData(); if (isset($formData['customer_data']) && $formData['customer_data']) { $request = $form->prepareRequest($formData['data']); $data = $form->extractData($request, $scope, false); $form->restoreData($data); } return $this; } /** * Return whether the form should be opened in an expanded mode showing the change password fields * * @return bool * * @SuppressWarnings(PHPMD.BooleanGetMethodName) */ public function getChangePassword() { return $this->customerSession->getChangePassword(); } /** * Get minimum password length * * @return string * @since 100.1.0 */ public function getMinimumPasswordLength() { return $this->_scopeConfig->getValue(AccountManagement::XML_PATH_MINIMUM_PASSWORD_LENGTH); } /** * Get minimum password length * * @return string * @since 100.1.0 */ public function getRequiredCharacterClassesNumber() { return $this->_scopeConfig->getValue(AccountManagement::XML_PATH_REQUIRED_CHARACTER_CLASSES_NUMBER); } }