FriendsOfTYPO3 / extension_builder

TYPO3 extension to kickstart and maintain TYPO3 extensions
https://docs.typo3.org/p/friendsoftypo3/extension-builder/11.0/en-us/
GNU General Public License v2.0
113 stars 80 forks source link

Configuration/page.tsconfig #786

Open SSFGizmo opened 4 months ago

SSFGizmo commented 4 months ago

Is there anything against creating 'Configuration/page.tsconfig' and moving this part from extLocalconf.phpt

mod <k:curlyBrackets>
            wizards.newContentElement.wizardItems.ext-{extension.extensionKey} <k:curlyBrackets>
                header = {extension.name}
                after = common
                elements {<f:for each="{extension.plugins}" as="plugin">
                    {plugin.key} <k:curlyBrackets>
                        iconIdentifier = {extension.extensionKey}-plugin-{plugin.key}
                        title = LLL:EXT:{extension.extensionKey}/Resources/Private/Language/locallang_db.xlf:tx_{extension.extensionKey}_{plugin.key}.name
                        description = LLL:EXT:{extension.extensionKey}/Resources/Private/Language/locallang_db.xlf:tx_{extension.extensionKey}_{plugin.key}.description
                        tt_content_defValues <k:curlyBrackets>
                            CType = {extension.extensionKey}_{plugin.key}
                        </k:curlyBrackets>
                    </k:curlyBrackets></f:for>
                }
                show = *
            </k:curlyBrackets>
       </k:curlyBrackets>

to it?