0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
typo3
/
sysext
/
sys_action
/
[
Home
]
File: tca.php
<?php // ****************************************************************** // sys_action // ****************************************************************** $TCA['sys_action'] = array( 'ctrl' => $TCA['sys_action']['ctrl'], 'interface' => array( 'showRecordFieldList' => 'hidden,title,type,description,assign_to_groups' ), 'columns' => array( 'title' => array( 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.title', 'config' => array( 'type' => 'input', 'size' => '25', 'max' => '256', 'eval' => 'trim,required' ) ), 'description' => array( 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.description', 'config' => array( 'type' => 'text', 'rows' => 10, 'cols' => 48 ) ), 'hidden' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.hidden', 'config' => array( 'type' => 'check' ) ), 'type' => array( 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.type', 'config' => array( 'type' => 'select', 'items' => array( array('', '0'), array('LLL:EXT:sys_action/locallang_tca.php:sys_action.type.1', '1'), array('LLL:EXT:sys_action/locallang_tca.php:sys_action.type.2', '2'), array('LLL:EXT:sys_action/locallang_tca.php:sys_action.type.3', '3'), array('LLL:EXT:sys_action/locallang_tca.php:sys_action.type.4', '4'), array('LLL:EXT:sys_action/locallang_tca.php:sys_action.type.5', '5') ) ) ), 'assign_to_groups' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.assign_to_groups', 'config' => array( 'type' => 'select', 'foreign_table' => 'be_groups', 'foreign_table_where' => 'ORDER BY be_groups.title', 'MM' => 'sys_action_asgr_mm', 'size' => '10', 'minitems' => '0', 'maxitems' => '200', 'autoSizeMax' => '10' ) ), 't1_userprefix' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t1_userprefix', 'config' => array( 'type' => 'input', 'size' => '25', 'max' => '10', 'eval' => 'trim' ) ), 't1_allowed_groups' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t1_allowed_groups', 'config' => array( 'type' => 'select', 'foreign_table' => 'be_groups', 'foreign_table_where' => 'ORDER BY be_groups.title', 'size' => '10', 'maxitems' => '20', 'autoSizeMax' => '10' ) ), 't1_create_user_dir' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t1_create_user_dir', 'config' => array( 'type' => 'check' ) ), 't1_copy_of_user' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t1_copy_of_user', 'config' => array( 'type' => 'group', 'internal_type' => 'db', 'allowed' => 'be_users', 'size' => '1', 'maxitems' => '1', 'minitems' => '1', 'show_thumbs' => '1', 'wizards' => array( 'suggest' => array( 'type' => 'suggest', ) ) ) ), 't3_listPid' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t3_listPid', 'config' => array( 'type' => 'group', 'internal_type' => 'db', 'allowed' => 'pages', 'size' => '1', 'maxitems' => '1', 'minitems' => '1', 'show_thumbs' => '1', 'wizards' => array( 'suggest' => array( 'type' => 'suggest', ) ) ) ), 't3_tables' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t3_tables', 'config' => array( 'type' => 'select', 'special' => 'tables', 'items' => array( array('','') ) ) ), 't4_recordsToEdit' => array( 'label' => 'LLL:EXT:sys_action/locallang_tca.php:sys_action.t4_recordsToEdit', 'config' => array( 'type' => 'group', 'internal_type' => 'db', 'allowed' => '*', 'prepend_tname' => 1, 'size' => '5', 'maxitems' => '50', 'minitems' => '1', 'show_thumbs' => '1', 'wizards' => array( 'suggest' => array( 'type' => 'suggest', ) ) ) ), ), 'types' => array( '0' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,'), '1' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,--div--,t1_userprefix;;;;5-5-5,t1_copy_of_user,t1_allowed_groups,t1_create_user_dir'), '2' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,--div--,'), '3' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,--div--,t3_listPid;;;;5-5-5,t3_tables;'), '4' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,--div--,t4_recordsToEdit;;;;5-5-5'), '5' => array('showitem' => 'hidden;;;;1-1-1,type,title;;;;2-2-2,description;;;;3-3-3,assign_to_groups,--div--,t3_listPid;Where to create records:;;;5-5-5,t3_tables;Create records in table:'), ) ); ?>