Skip to content

Commit bb16235

Browse files
authored
Merge pull request #155 from andreaswolf/feature-create-docs-dynamic-branch-20240615105049
[DOCS] Generate documentation
2 parents 901fe46 + 68c3488 commit bb16235

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

packages/typo3-fractor/docs/typo3-fractor-rules.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 8 Rules Overview
1+
# 9 Rules Overview
22

33
## AbstractMessageGetSeverityFluidRector
44

@@ -142,6 +142,42 @@ Migrate null flag
142142

143143
<br>
144144

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+
145181
## RemoveNoCacheHashAndUseCacheHashAttributeFractor
146182

147183
Remove noCacheHash="1" and useCacheHash="1" attribute

0 commit comments

Comments
 (0)