You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
1.2 KiB

<?php
// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
function prefs_workspace_list()
{
return [
'workspace_ui' => [
'name' => tr('Workspace UI'),
'description' => tr('Combines multiple site features to create a workspace experience for workgroups.'),
'type' => 'flag',
'default' => 'n',
'perspective' => false,
'dependencies' => [
'feature_wiki',
'namespace_enabled',
'feature_perspective',
'feature_categories',
],
],
'workspace_root_category' => [
'name' => tr('Workspace root category'),
'description' => tr('ID of the root category containing all workspaces.'),
'type' => 'text',
'filter' => 'int',
'default' => 0,
'perspective' => false,
'warning' => tr('This value is automatically managed and should not need to be modified manually.'),
'profile_reference' => 'category',
],
];
}