forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.php
More file actions
170 lines (148 loc) · 5.28 KB
/
Form.php
File metadata and controls
170 lines (148 loc) · 5.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* Copyright 2013 Adobe
* All Rights Reserved.
*/
namespace Magento\Backend\Block\System\Account\Edit;
use Magento\Framework\App\ObjectManager;
use Magento\Framework\Locale\OptionInterface;
/**
* Adminhtml edit admin user account form
*/
class Form extends \Magento\Backend\Block\Widget\Form\Generic
{
public const IDENTITY_VERIFICATION_PASSWORD_FIELD = 'current_password';
/**
* @var \Magento\Backend\Model\Auth\Session
*/
protected $_authSession;
/**
* @var \Magento\User\Model\UserFactory
*/
protected $_userFactory;
/**
* @var \Magento\Framework\Locale\ListsInterface
*/
protected $_localeLists;
/**
* Operates with deployed locales.
*
* @var OptionInterface
*/
private $deployedLocales;
/**
* @param \Magento\Backend\Block\Template\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magento\Framework\Data\FormFactory $formFactory
* @param \Magento\User\Model\UserFactory $userFactory
* @param \Magento\Backend\Model\Auth\Session $authSession
* @param \Magento\Framework\Locale\ListsInterface $localeLists
* @param array $data
* @param OptionInterface $deployedLocales Operates with deployed locales
*/
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Framework\Data\FormFactory $formFactory,
\Magento\User\Model\UserFactory $userFactory,
\Magento\Backend\Model\Auth\Session $authSession,
\Magento\Framework\Locale\ListsInterface $localeLists,
array $data = [],
?OptionInterface $deployedLocales = null
) {
$this->_userFactory = $userFactory;
$this->_authSession = $authSession;
$this->_localeLists = $localeLists;
$this->deployedLocales = $deployedLocales
?: ObjectManager::getInstance()->get(OptionInterface::class);
parent::__construct($context, $registry, $formFactory, $data);
}
/**
* @inheritdoc
*/
protected function _prepareForm()
{
$userId = $this->_authSession->getUser()->getId();
$user = $this->_userFactory->create()->load($userId);
$user->unsetData('password');
/** @var \Magento\Framework\Data\Form $form */
$form = $this->_formFactory->create();
$fieldset = $form->addFieldset('base_fieldset', ['legend' => __('Account Information')]);
$fieldset->addField(
'username',
'text',
['name' => 'username', 'label' => __('User Name'), 'title' => __('User Name'), 'required' => true]
);
$fieldset->addField(
'firstname',
'text',
['name' => 'firstname', 'label' => __('First Name'), 'title' => __('First Name'), 'required' => true]
);
$fieldset->addField(
'lastname',
'text',
['name' => 'lastname', 'label' => __('Last Name'), 'title' => __('Last Name'), 'required' => true]
);
$fieldset->addField('user_id', 'hidden', ['name' => 'user_id']);
$fieldset->addField(
'email',
'text',
['name' => 'email', 'label' => __('Email'), 'title' => __('User Email'), 'required' => true]
);
$fieldset->addField(
'password',
'password',
[
'name' => 'password',
'label' => __('New Password'),
'title' => __('New Password'),
'class' => 'validate-admin-password'
]
);
$fieldset->addField(
'confirmation',
'password',
[
'name' => 'password_confirmation',
'label' => __('Password Confirmation'),
'class' => 'validate-cpassword'
]
);
$fieldset->addField(
'interface_locale',
'select',
[
'name' => 'interface_locale',
'label' => __('Interface Locale'),
'title' => __('Interface Locale'),
'values' => $this->deployedLocales->getTranslatedOptionLocales(),
'class' => 'select'
]
);
$verificationFieldset = $form->addFieldset(
'current_user_verification_fieldset',
['legend' => __('Current User Identity Verification')]
);
$verificationFieldset->addField(
self::IDENTITY_VERIFICATION_PASSWORD_FIELD,
'password',
[
'name' => self::IDENTITY_VERIFICATION_PASSWORD_FIELD,
'label' => __('Your Password'),
'id' => self::IDENTITY_VERIFICATION_PASSWORD_FIELD,
'title' => __('Your Password'),
'class' => 'validate-current-password required-entry',
'required' => true
]
);
$data = $user->getData();
unset($data[self::IDENTITY_VERIFICATION_PASSWORD_FIELD]);
$form->setValues($data);
$form->setAction($this->getUrl('adminhtml/system_account/save'));
$form->setMethod('post');
$form->setUseContainer(true);
$form->setId('edit_form');
$this->setForm($form);
return parent::_prepareForm();
}
}