Skip to content

Instantly share code, notes, and snippets.

@kathangeorg
Created July 20, 2012 09:10
Show Gist options
  • Save kathangeorg/3149761 to your computer and use it in GitHub Desktop.
Save kathangeorg/3149761 to your computer and use it in GitHub Desktop.
TYPO§ Workspace: change TCA settings
//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