"TYPO3 4.0.1: typo3_src-4.0.1/typo3/sysext/sys_action/ext_tables.php Source File", "datetime" => "Sat Dec 2 19:22:24 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>

ext_tables.php

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                         "sortby" => "sorting",  
00018                         'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
00019                         'title' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action',
00020                         'crdate' => 'crdate',
00021                         'cruser_id' => 'cruser_id',
00022                         'adminOnly' => 1,
00023                         'rootLevel' => -1,
00024                         'setToDefaultOnCopy' => 'assign_to_groups',
00025                         'enablecolumns' => Array (
00026                                 'disabled' => 'hidden'
00027                         ),
00028                         'type' => 'type',
00029                         'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY).'sys_action.gif',
00030                         'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY).'tca.php'
00031                 )
00032         );
00033 }
00034 
00035 t3lib_extMgm::addLLrefForTCAdescr('sys_action','EXT:sys_action/locallang_csh_sysaction.xml');
00036 
00037 ?>