Documentation TYPO3 par Ameos |
00001 <?php 00002 if (!defined ('TYPO3_MODE')) die ('Access denied.'); 00003 00004 if (TYPO3_MODE=='BE') { 00005 t3lib_extMgm::insertModuleFunction( 00006 'user_task', 00007 'tx_sysaction', 00008 t3lib_extMgm::extPath($_EXTKEY).'class.tx_sysaction.php', 00009 'LLL:EXT:sys_action/locallang_tca.php:tx_sys_action' 00010 ); 00011 00012 $TCA['sys_action'] = Array ( 00013 'ctrl' => Array ( 00014 'label' => 'title', 00015 'tstamp' => 'tstamp', 00016 'default_sortby' => 'ORDER BY title', 00017 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy', 00018 'title' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action', 00019 'crdate' => 'crdate', 00020 'cruser_id' => 'cruser_id', 00021 'adminOnly' => 1, 00022 'rootLevel' => -1, 00023 'setToDefaultOnCopy' => 'assign_to_groups', 00024 'enablecolumns' => Array ( 00025 'disabled' => 'hidden' 00026 ), 00027 'type' => 'type', 00028 'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY).'sys_action.gif', 00029 'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY).'tca.php' 00030 ) 00031 ); 00032 } 00033 00034 t3lib_extMgm::addLLrefForTCAdescr('sys_action','EXT:sys_action/locallang_csh_sysaction.xml'); 00035 00036 ?>