Created
July 20, 2012 09:10
-
-
Save kathangeorg/3149761 to your computer and use it in GitHub Desktop.
TYPO§ Workspace: change TCA settings
This file contains hidden or 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
//insert in ext_tables.php | |
// increase number of workspace related backend users and backend usergroups | |
t3lib_div::loadTCA('sys_workspace'); | |
$TCA['sys_workspace']['columns']['adminusers']['config']['maxitems'] = 99; | |
$TCA['sys_workspace']['columns']['members']['config']['maxitems'] = 99; | |
$TCA['sys_workspace']['columns']['reviewers']['config']['maxitems'] = 99; | |
// increase number of workspace related db and file mount points | |
$TCA['sys_workspace']['columns']['db_mountpoints']['config']['maxitems'] = 99; | |
$TCA['sys_workspace']['columns']['file_mountpoints']['config']['maxitems'] = 99; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment