trueprogramming / tca-select-items
Adds api for adding TCA items array
Installs: 395
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: >8.1
- typo3/cms-core: ^12.0
Requires (Dev)
- phpstan/phpstan: ^1.10
- saschaegerer/phpstan-typo3: ^1.9
- typo3/coding-standards: ^0.7.1
README
Author: Michael Semle
E-Mail: git@mikeproduction.de
repo: https://github.com/true-programming/tca-select-items
This extension provides helper functionality for TCA select items. For beginners, adding TCA items via array parameter is kinda frustrating. Using this extension and it's select item model class no need to remember the correct array usage.
Usage
For example for tt_content CType:
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTcaSelectItem(
'tt_content',
'CType',
(new \Trueprogramming\TcaSelectItems\TCA\TCASelectItem(
'My awesom select item',
'awesom_select_item',
'EXT:awesom_extension/Resources/Public/Icons/Extension.svg',
'group-awesome'
))->toArray()
);
How to install this extension?
You can set this up via composer (composer require trueprogramming/tca-select-items
).
Requirements
- TYPO3 v12.
License
The extension is licensed under GPL v2+, same as the TYPO3 Core.
For details see the LICENSE file in this repository.