-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtca.php
45 lines (42 loc) · 1.26 KB
/
tca.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
if (!defined ("TYPO3_MODE")) die ("Access denied.");
$TCA["static_bic_de"] = Array (
"ctrl" => $TCA["static_bic_de"]["ctrl"],
"interface" => Array (
"showRecordFieldList" => "bank_ic, bank_name"
),
"feInterface" => $TCA["static_bic_de"]["feInterface"],
"columns" => Array (
"bank_ic" => Array (
"exclude" => 0,
"label" => "LLL:EXT:static_info_tables_bic_de/locallang_db.php:tx_staticinfotablesbicde.bank_ic",
"config" => Array (
"type" => "input",
"size" => "8",
"max" => "8",
"eval" => "double",
"default" => 0
)
),
"bank_name" => Array (
"exclude" => 0,
"label" => "LLL:EXT:static_info_tables_bic_de/locallang_db.php:tx_staticinfotablesbicde.bank_name",
"config" => Array (
"type" => "input",
"size" => "60",
"max" => "127"
)
)
),
"types" => Array (
"0" => Array(
"showitem" => "bank_ic;;;;1-1-1, bank_name"
)
),
"palettes" => Array (
"1" => Array(
"showitem" => "bank_ic,bank_name", "canNotCollapse" => "1"
)
)
);
?>