forked from punktDe/pt_extbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.php
executable file
·30 lines (23 loc) · 1 KB
/
ext_tables.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
t3lib_extMgm::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'Tools for Extbase development');
t3lib_extMgm::allowTableOnStandardPages('tx_ptextbase_tree_node');
$TCA['tx_ptextbase_tree_node'] = array (
'ctrl' => array (
'title' => 'TreeNode',
'label' => 'label',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
'origUid' => 't3_origuid',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l18n_parent',
'transOrigDiffSourceField' => 'l18n_diffsource',
'delete' => 'deleted',
'enablecolumns' => array(
'disabled' => 'hidden'
),
'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY) . 'Configuration/TCA/Node.php',
'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY) . 'Resources/Public/Icons/icon_tx_ptextbase_tree_node.png'
)
);
?>