1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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);
- }
- }
|