mirror of
https://github.com/SkillDisplay/TYPO3ContentElements.git
synced 2024-11-22 11:26:08 +01:00
Daniel Siepmann
da3aed135c
Allow editors to add new content element "skills". The element contains an input for a comma separated list of skill IDs. A preview in backend is shown. Frontend rendering is provided.
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
|
|
(function (string $extensionKey, string $tableName) {
|
|
$languagePath = 'LLL:EXT:' . $extensionKey . '/Resources/Private/Language/locallang_be.xlf:' . $tableName . '.';
|
|
|
|
\TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule($GLOBALS['SiteConfiguration']['site'], [
|
|
'columns' => [
|
|
'skilldisplay_user_secret' => [
|
|
'label' => $languagePath . 'skilldisplay_user_secret',
|
|
'config' => [
|
|
'type' => 'input',
|
|
],
|
|
],
|
|
'skilldisplay_api_key' => [
|
|
'label' => $languagePath . 'skilldisplay_api_key',
|
|
'config' => [
|
|
'type' => 'input',
|
|
],
|
|
],
|
|
'skilldisplay_verifier_id' => [
|
|
'label' => $languagePath . 'skilldisplay_verifier_id',
|
|
'config' => [
|
|
'type' => 'input',
|
|
],
|
|
],
|
|
],
|
|
'types' => [
|
|
'0' => [
|
|
'showitem' => $GLOBALS['SiteConfiguration']['site']['types']['0']['showitem']
|
|
. ', ' . implode(',', [
|
|
'--div--;' . $languagePath . 'div.skilldisplay',
|
|
'skilldisplay_user_secret',
|
|
'skilldisplay_api_key',
|
|
'skilldisplay_verifier_id',
|
|
]),
|
|
],
|
|
],
|
|
]);
|
|
})('skilldisplay', 'site');
|