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 
6 if (TYPO3_MODE === 'BE') {
7  // Register record history module
9  'record_history',
10  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/RecordHistory/'
11  );
12 
13  // Register edit wizard
15  'wizard_edit',
16  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/EditWizard/'
17  );
18 
19  // Register add wizard
21  'wizard_add',
22  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/AddWizard/'
23  );
24 
25  // Register list wizard
27  'wizard_list',
28  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/ListWizard/'
29  );
30 
31  // Register table wizard
33  'wizard_table',
34  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/TableWizard/'
35  );
36 
37  // Register forms wizard
39  'wizard_forms',
40  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/FormsWizard/'
41  );
42 
43  // Register rte wizard
45  'wizard_rte',
46  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/RteWizard/'
47  );
48 
49  // Register colorpicker wizard
51  'wizard_colorpicker',
52  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/ColorpickerWizard/'
53  );
54 
55  // Register backend_layout wizard
57  'wizard_backend_layout',
58  \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'Modules/Wizards/BackendLayoutWizard/'
59  );
60 }
const TYPO3_MODE
Definition: init.php:40
die
Definition: index.php:6