File tree 1 file changed +37
-1
lines changed
packages/typo3-fractor/docs
1 file changed +37
-1
lines changed Original file line number Diff line number Diff line change 1
- # 8 Rules Overview
1
+ # 9 Rules Overview
2
2
3
3
## AbstractMessageGetSeverityFluidRector
4
4
@@ -142,6 +142,42 @@ Migrate null flag
142
142
143
143
<br >
144
144
145
+ ## MigratePasswordAndSaltedPasswordToPasswordTypeFlexFormFractor
146
+
147
+ Migrate password and salted password to password type
148
+
149
+ - class: [ ` a9f\Typo3Fractor\TYPO3v12\FlexForm\MigratePasswordAndSaltedPasswordToPasswordTypeFlexFormFractor ` ] ( ../rules/TYPO3v12/FlexForm/MigratePasswordAndSaltedPasswordToPasswordTypeFlexFormFractor.php )
150
+
151
+ ``` diff
152
+ <T3DataStructure>
153
+ <ROOT>
154
+ <sheetTitle>aTitle</sheetTitle>
155
+ <type>array</type>
156
+ <el>
157
+ <password_field>
158
+ <label>Password</label>
159
+ <config>
160
+ - <type>input</type>
161
+ - <eval>trim,password,saltedPassword</eval>
162
+ + <type>password</type>
163
+ </config>
164
+ </password_field>
165
+ <another_password_field>
166
+ <label>Password</label>
167
+ <config>
168
+ - <type>input</type>
169
+ - <eval>trim,password</eval>
170
+ + <type>password</type>
171
+ + <hashed>false</hashed>
172
+ </config>
173
+ </another_password_field>
174
+ </el>
175
+ </ROOT>
176
+ </T3DataStructure>
177
+ ```
178
+
179
+ <br >
180
+
145
181
## RemoveNoCacheHashAndUseCacheHashAttributeFractor
146
182
147
183
Remove noCacheHash="1" and useCacheHash="1" attribute
You can’t perform that action at this time.
0 commit comments