TYPO3 API  SVNRelease
ext_tables.php
Go to the documentation of this file.
00001 <?php
00002 if (!defined ('TYPO3_MODE'))    die ('Access denied.');
00003 
00004 if (TYPO3_MODE=='BE')   {
00005     $GLOBALS['TBE_MODULES_EXT']['xMOD_alt_clickmenu']['extendCMclasses'][]=array(
00006         'name' => 'tx_version_cm1',
00007         'path' => t3lib_extMgm::extPath($_EXTKEY).'class.tx_version_cm1.php'
00008     );
00009 
00010     if (!t3lib_extMgm::isLoaded('workspaces')) {
00011         t3lib_extMgm::addModule('web', 'txversionM1', '', t3lib_extMgm::extPath($_EXTKEY) . 'cm1/');
00012     }
00013 }
00014 
00015 
00016 
00017 
00018 /**
00019  * Table "sys_workspace":
00020  */
00021 $TCA['sys_workspace'] = array(
00022     'ctrl' => array(
00023         'label' => 'title',
00024         'tstamp' => 'tstamp',
00025         'title' => 'LLL:EXT:lang/locallang_tca.php:sys_workspace',
00026         'adminOnly' => 1,
00027         'rootLevel' => 1,
00028         'delete' => 'deleted',
00029         'iconfile' => 'sys_workspace.png',
00030         'typeicon_classes' => array(
00031             'default' => 'mimetypes-x-sys_workspace'
00032         ),
00033         'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY) . 'tca.php',
00034         'versioningWS_alwaysAllowLiveEdit' => true,
00035         'dividers2tabs' => true
00036     )
00037 );
00038 
00039 
00040 ?>