-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport 12.4] [TASK] Merge properties back into interface page (#1172)
[TASK] Merge properties back into interface page Releases: main, 12.4 Co-authored-by: lina.wolf <[email protected]>
- Loading branch information
1 parent
f2752cd
commit fa0c5b2
Showing
4 changed files
with
50 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
$GLOBALS['TCA']['tx_myextension_mytable'] = array_merge_recursive( | ||
$GLOBALS['TCA']['tx_myextension_mytable'], | ||
[ | ||
'interface' => [ | ||
'maxDBListItems' => 30, | ||
'maxSingleDBListItems' => 50, | ||
], | ||
] | ||
); |