TYPO3 API  SVNRelease
ext_tables.php
Go to the documentation of this file.
00001 <?php
00002 if (!defined ('TYPO3_MODE')) {
00003     die('Access denied.');
00004 }
00005 
00006 // Define the table for keys. Make sure that it cannot be edited or seen by
00007 // any user in any way.
00008 $TCA['tx_rsaauth_keys'] = array (
00009     'ctrl' => array (
00010         'adminOnly' => true,
00011         'hideTable' => true,
00012         'is_static' => true,
00013         'label' => 'uid',
00014         'readOnly' => true,
00015         'rootLevel' => 1,
00016         'title' => 'Oops! You should not see this!'
00017     ),
00018     'columns' => array(
00019     ),
00020     'types' => array(
00021         '0' => array(
00022             'showitem' => ''
00023         )
00024     )
00025 );
00026 
00027 ?>