About the TYPO3.org News category

TYPO3.org News. Fetched from TODO.

https://docs.typo3.org/typo3cms/CoreApiReference/ExtensionArchitecture/ExtendingTca/Examples/Index.html

How can we add new fields in a new tab in user setting in TYPO3 version 8.7? Our problem is the creation of a new tab.

I can add new fields to personal data tab in user setting, but I need to create new fields into a new tab. For backend admin user setting I added a new tab, but for user setting I want to try this. I have an extension and since the installation of the extension it will add-on.

$GLOBALS[‘TYPO3_USER_SETTINGS’][‘columns’][‘media_url’] = array(
‘label’ => ‘Use it for images’,
‘type’ => ‘check’,
‘table’ => ‘be_users’,
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addFieldsToUserSettings(‘media_url’,‘after:field_mapping’);

Its added on existing tab but I need to put fields on new tab in user setting for non admin user.