TYPO3 CMS  TYPO3_6-2
ext_tables.php
Go to the documentation of this file.
1 <?php
2 if (!defined('TYPO3_MODE')) {
3  die('Access denied.');
4 }
5 if (TYPO3_MODE === 'BE') {
7  'user',
8  'setup',
9  'after:task',
10  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'mod/'
11  );
13  '_MOD_user_setup',
14  'EXT:setup/locallang_csh_mod.xlf'
15  );
16 
17  $GLOBALS['TYPO3_USER_SETTINGS'] = array(
18  'ctrl' => array(
19  'dividers2tabs' => 1
20  ),
21  'columns' => array(
22  'realName' => array(
23  'type' => 'text',
24  'label' => 'LLL:EXT:setup/mod/locallang.xlf:beUser_realName',
25  'table' => 'be_users',
26  'csh' => 'beUser_realName'
27  ),
28  'email' => array(
29  'type' => 'text',
30  'label' => 'LLL:EXT:setup/mod/locallang.xlf:beUser_email',
31  'table' => 'be_users',
32  'csh' => 'beUser_email'
33  ),
34  'emailMeAtLogin' => array(
35  'type' => 'check',
36  'label' => 'LLL:EXT:setup/mod/locallang.xlf:emailMeAtLogin',
37  'csh' => 'emailMeAtLogin'
38  ),
39  'password' => array(
40  'type' => 'password',
41  'label' => 'LLL:EXT:setup/mod/locallang.xlf:newPassword',
42  'table' => 'be_users',
43  'csh' => 'newPassword',
44  ),
45  'password2' => array(
46  'type' => 'password',
47  'label' => 'LLL:EXT:setup/mod/locallang.xlf:newPasswordAgain',
48  'table' => 'be_users',
49  'csh' => 'newPasswordAgain',
50  ),
51  'lang' => array(
52  'type' => 'select',
53  'itemsProcFunc' => 'TYPO3\\CMS\\Setup\\Controller\\SetupModuleController->renderLanguageSelect',
54  'label' => 'LLL:EXT:setup/mod/locallang.xlf:language',
55  'csh' => 'language'
56  ),
57  'startModule' => array(
58  'type' => 'select',
59  'itemsProcFunc' => 'TYPO3\\CMS\\Setup\\Controller\\SetupModuleController->renderStartModuleSelect',
60  'label' => 'LLL:EXT:setup/mod/locallang.xlf:startModule',
61  'csh' => 'startModule'
62  ),
63  'thumbnailsByDefault' => array(
64  'type' => 'check',
65  'label' => 'LLL:EXT:setup/mod/locallang.xlf:showThumbs',
66  'csh' => 'showThumbs'
67  ),
68  'titleLen' => array(
69  'type' => 'text',
70  'label' => 'LLL:EXT:setup/mod/locallang.xlf:maxTitleLen',
71  'csh' => 'maxTitleLen'
72  ),
73  'edit_RTE' => array(
74  'type' => 'check',
75  'label' => 'LLL:EXT:setup/mod/locallang.xlf:edit_RTE',
76  'csh' => 'edit_RTE'
77  ),
78  'edit_docModuleUpload' => array(
79  'type' => 'check',
80  'label' => 'LLL:EXT:setup/mod/locallang.xlf:edit_docModuleUpload',
81  'csh' => 'edit_docModuleUpload'
82  ),
83  'showHiddenFilesAndFolders' => array(
84  'type' => 'check',
85  'label' => 'LLL:EXT:setup/mod/locallang.xlf:showHiddenFilesAndFolders',
86  'csh' => 'showHiddenFilesAndFolders'
87  ),
88  'copyLevels' => array(
89  'type' => 'text',
90  'label' => 'LLL:EXT:setup/mod/locallang.xlf:copyLevels',
91  'csh' => 'copyLevels'
92  ),
93  'recursiveDelete' => array(
94  'type' => 'check',
95  'label' => 'LLL:EXT:setup/mod/locallang.xlf:recursiveDelete',
96  'csh' => 'recursiveDelete'
97  ),
98  'simulate' => array(
99  'type' => 'select',
100  'itemsProcFunc' => 'TYPO3\\CMS\\Setup\\Controller\\SetupModuleController->renderSimulateUserSelect',
101  'label' => 'LLL:EXT:setup/mod/locallang.xlf:simulate',
102  'csh' => 'simuser'
103  ),
104  'resetConfiguration' => array(
105  'type' => 'button',
106  'label' => 'LLL:EXT:setup/mod/locallang.xlf:resetConfiguration',
107  'buttonlabel' => 'LLL:EXT:setup/mod/locallang.xlf:resetConfigurationShort',
108  'csh' => 'reset',
109  'onClick' => 'if (confirm(\'%s\')) { document.getElementById(\'setValuesToDefault\').value = 1; this.form.submit(); }',
110  'onClickLabels' => array(
111  'LLL:EXT:setup/mod/locallang.xlf:setToStandardQuestion'
112  )
113  ),
114  'clearSessionVars' => array(
115  'type' => 'button',
116  'access' => 'admin',
117  'label' => 'LLL:EXT:setup/mod/locallang.xlf:clearSessionVars',
118  'buttonlabel' => 'LLL:EXT:setup/mod/locallang.xlf:clearSessionVarsShort',
119  'csh' => 'reset',
120  'onClick' => 'if (confirm(\'%s\')) { document.getElementById(\'clearSessionVars\').value = 1; this.form.submit(); }',
121  'onClickLabels' => array(
122  'LLL:EXT:setup/mod/locallang.xlf:clearSessionVarsQuestion'
123  )
124  ),
125  'resizeTextareas' => array(
126  'type' => 'check',
127  'label' => 'LLL:EXT:setup/mod/locallang.xlf:resizeTextareas',
128  'csh' => 'resizeTextareas'
129  ),
130  'resizeTextareas_Flexible' => array(
131  'type' => 'check',
132  'label' => 'LLL:EXT:setup/mod/locallang.xlf:resizeTextareas_Flexible',
133  'csh' => 'resizeTextareas_Flexible'
134  ),
135  'resizeTextareas_MaxHeight' => array(
136  'type' => 'text',
137  'label' => 'LLL:EXT:setup/mod/locallang.xlf:flexibleTextareas_MaxHeight',
138  'csh' => 'flexibleTextareas_MaxHeight'
139  ),
140  'debugInWindow' => array(
141  'type' => 'check',
142  'label' => 'LLL:EXT:setup/mod/locallang.xlf:debugInWindow',
143  'access' => 'admin'
144  )
145  ),
146  'showitem' => '--div--;LLL:EXT:setup/mod/locallang.xlf:personal_data,realName,email,emailMeAtLogin,password,password2,lang,
147  --div--;LLL:EXT:setup/mod/locallang.xlf:opening,startModule,thumbnailsByDefault,titleLen,
148  --div--;LLL:EXT:setup/mod/locallang.xlf:editFunctionsTab,edit_RTE,edit_docModuleUpload,showHiddenFilesAndFolders,resizeTextareas,resizeTextareas_Flexible,resizeTextareas_MaxHeight,copyLevels,recursiveDelete,resetConfiguration,clearSessionVars,
149  --div--;LLL:EXT:setup/mod/locallang.xlf:adminFunctions,simulate,debugInWindow'
150  );
151 }
const TYPO3_MODE
Definition: init.php:40
$GLOBALS['TYPO3_CONF_VARS']['SYS']['locallangXMLOverride']['EXT:context_help/locallang_csh_pages.xlf'][]
Definition: ext_tables.php:15
die
Definition: index.php:6
static addModule($main, $sub='', $position='', $path='', $moduleConfiguration=array())