2 /***************************************************************
5 * (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Dynamic configuation of the tt_content table
29 * This gets it's own file because it's so huge and central to typical TYPO3 use.
33 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
38 $TCA['tt_content'] = Array (
39 'ctrl' => $TCA['tt_content']['ctrl'],
40 'interface' => Array (
41 'always_description' => 0,
42 'showRecordFieldList' => 'CType,header,header_link,bodytext,image,imagewidth,imageorient,media,records,colPos,starttime,endtime,fe_group'
46 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.type',
50 array('LLL:EXT:cms/locallang_ttc.xml:CType.div.standard', '--div--'),
51 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.0', 'header', 'i/tt_content_header.gif'),
52 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.1', 'text', 'i/tt_content.gif'),
53 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.2', 'textpic', 'i/tt_content_textpic.gif'),
54 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.3', 'image', 'i/tt_content_image.gif'),
55 array('LLL:EXT:cms/locallang_ttc.xml:CType.div.lists', '--div--'),
56 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.4', 'bullets', 'i/tt_content_bullets.gif'),
57 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.5', 'table', 'i/tt_content_table.gif'),
58 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.6', 'uploads', 'i/tt_content_uploads.gif'),
59 array('LLL:EXT:cms/locallang_ttc.xml:CType.div.forms', '--div--'),
60 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.8', 'mailform', 'i/tt_content_form.gif'),
61 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.9', 'search', 'i/tt_content_search.gif'),
62 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.10', 'login', 'i/tt_content_login.gif'),
63 array('LLL:EXT:cms/locallang_ttc.xml:CType.div.special', '--div--'),
64 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.7', 'multimedia', 'i/tt_content_mm.gif'),
65 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.11', 'splash', 'i/tt_content_news.gif'),
66 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.12', 'menu', 'i/tt_content_menu.gif'),
67 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.13', 'shortcut', 'i/tt_content_shortcut.gif'),
68 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.14', 'list', 'i/tt_content_list.gif'),
69 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.15', 'script', 'i/tt_content_script.gif'),
70 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.16', 'div', 'i/tt_content_div.gif'),
71 array('LLL:EXT:cms/locallang_ttc.xml:CType.I.17', 'html', 'i/tt_content_html.gif')
74 'authMode' => $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'],
75 'authMode_enforce' => 'strict',
76 'iconsInOptionTags' => 1,
77 'noIconsBelowSelect' => 1,
82 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.hidden',
87 'starttime' => Array (
89 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.starttime',
101 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.endtime',
110 'upper' => mktime(0,0,0,12,31,2020),
114 'fe_group' => Array (
116 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.fe_group',
122 Array('LLL:EXT:lang/locallang_general.php:LGL.hide_at_login', -1),
123 Array('LLL:EXT:lang/locallang_general.php:LGL.any_login', -2),
124 Array('LLL:EXT:lang/locallang_general.php:LGL.usergroups', '--div--')
126 'exclusiveKeys' => '-1,-2',
127 'foreign_table' => 'fe_groups'
130 'sys_language_uid' => Array (
132 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.language',
135 'foreign_table' => 'sys_language',
136 'foreign_table_where' => 'ORDER BY sys_language.title',
138 Array('LLL:EXT:lang/locallang_general.php:LGL.allLanguages',-1),
139 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value',0)
143 'l18n_parent' => Array (
144 'displayCond' => 'FIELD:sys_language_uid:>:0',
146 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.l18n_parent',
152 'foreign_table' => 'tt_content',
153 'foreign_table_where' => 'AND tt_content.pid=###CURRENT_PID### AND tt_content.sys_language_uid IN (-1,0)',
158 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.layout',
162 Array('LLL:EXT:lang/locallang_general.php:LGL.normal', '0'),
163 Array('LLL:EXT:cms/locallang_ttc.php:layout.I.1', '1'),
164 Array('LLL:EXT:cms/locallang_ttc.php:layout.I.2', '2'),
165 Array('LLL:EXT:cms/locallang_ttc.php:layout.I.3', '3')
172 'label' => 'LLL:EXT:cms/locallang_ttc.php:colPos',
176 Array('LLL:EXT:cms/locallang_ttc.php:colPos.I.0', '1'),
177 Array('LLL:EXT:lang/locallang_general.php:LGL.normal', '0'),
178 Array('LLL:EXT:cms/locallang_ttc.php:colPos.I.2', '2'),
179 Array('LLL:EXT:cms/locallang_ttc.php:colPos.I.3', '3')
186 'label' => 'LLL:EXT:cms/locallang_ttc.php:date',
197 'l10n_mode' => 'prefixLangTitle',
198 'l10n_cat' => 'text',
199 'label' => 'LLL:EXT:cms/locallang_ttc.php:header',
205 'header_position' => Array (
206 'label' => 'LLL:EXT:cms/locallang_ttc.php:header_position',
211 Array('LLL:EXT:cms/locallang_ttc.php:header_position.I.1', 'center'),
212 Array('LLL:EXT:cms/locallang_ttc.php:header_position.I.2', 'right'),
213 Array('LLL:EXT:cms/locallang_ttc.php:header_position.I.3', 'left')
218 'header_link' => Array (
219 'label' => 'LLL:EXT:cms/locallang_ttc.php:header_link',
231 'icon' => 'link_popup.gif',
232 'script' => 'browse_links.php?mode=wizard',
233 'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1'
236 'softref' => 'typolink'
239 'header_layout' => Array (
241 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.type',
245 Array('LLL:EXT:lang/locallang_general.php:LGL.normal', '0'),
246 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.1', '1'),
247 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.2', '2'),
248 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.3', '3'),
249 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.4', '4'),
250 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.5', '5'),
251 Array('LLL:EXT:cms/locallang_ttc.php:header_layout.I.6', '100')
256 'subheader' => Array (
258 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.subheader',
263 'softref' => 'email[subst]'
266 'bodytext' => Array (
267 'l10n_mode' => 'prefixLangTitle',
268 'l10n_cat' => 'text',
269 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.text',
277 'notNewRecords' => 1,
280 'title' => 'LLL:EXT:cms/locallang_ttc.php:bodytext.W.RTE',
281 'icon' => 'wizard_rte2.gif',
282 'script' => 'wizard_rte.php',
285 'notNewRecords' => 1,
286 'enableByTypeConfig' => 1,
288 'title' => 'Table wizard',
289 'icon' => 'wizard_table.gif',
290 'script' => 'wizard_table.php',
291 'params' => array('xmlOutput' => 0)
294 'notNewRecords' => 1,
295 'enableByTypeConfig' => 1,
297 # 'hideParent' => array('rows' => 4),
298 'title' => 'Forms wizard',
299 'icon' => 'wizard_forms.gif',
300 'script' => 'wizard_forms.php?special=formtype_mail',
301 'params' => array('xmlOutput' => 0)
304 'softref' => 'typolink_tag,images,email[subst],url'
307 'text_align' => Array (
309 'label' => 'LLL:EXT:cms/locallang_ttc.php:text_align',
314 Array('LLL:EXT:cms/locallang_ttc.php:text_align.I.1', 'center'),
315 Array('LLL:EXT:cms/locallang_ttc.php:text_align.I.2', 'right'),
316 Array('LLL:EXT:cms/locallang_ttc.php:text_align.I.3', 'left')
321 'text_face' => Array (
323 'label' => 'LLL:EXT:cms/locallang_ttc.php:text_face',
327 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', '0'),
329 Array('Verdana', '2'),
335 'text_size' => Array (
337 'label' => 'LLL:EXT:cms/locallang_ttc.php:text_size',
341 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', '0'),
342 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.1', '1'),
343 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.2', '2'),
344 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.3', '3'),
345 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.4', '4'),
346 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.5', '5'),
347 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.6', '10'),
348 Array('LLL:EXT:cms/locallang_ttc.php:text_size.I.7', '11')
353 'text_color' => Array (
355 'label' => 'LLL:EXT:cms/locallang_ttc.php:text_color',
359 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', '0'),
360 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.1', '1'),
361 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.2', '2'),
362 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.3', '200'),
363 Array('-----','--div--'),
364 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.5', '240'),
365 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.6', '241'),
366 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.7', '242'),
367 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.8', '243'),
368 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.9', '244'),
369 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.10', '245'),
370 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.11', '246'),
371 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.12', '247'),
372 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.13', '248'),
373 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.14', '249'),
374 Array('LLL:EXT:cms/locallang_ttc.php:text_color.I.15', '250')
379 'text_properties' => Array (
381 'label' => 'LLL:EXT:cms/locallang_ttc.php:text_properties',
385 Array('LLL:EXT:cms/locallang_ttc.php:text_properties.I.0', ''),
386 Array('LLL:EXT:cms/locallang_ttc.php:text_properties.I.1', ''),
387 Array('LLL:EXT:cms/locallang_ttc.php:text_properties.I.2', ''),
388 Array('LLL:EXT:cms/locallang_ttc.php:text_properties.I.3', '')
394 # 'l10n_mode' => 'mergeIfNotBlank',
395 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.images',
398 'internal_type' => 'file',
399 'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
400 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
401 'uploadfolder' => 'uploads/pics',
402 'show_thumbs' => '1',
409 'imagewidth' => Array (
411 'label' => 'LLL:EXT:cms/locallang_ttc.php:imagewidth',
425 'imageheight' => Array (
427 'label' => 'LLL:EXT:cms/locallang_ttc.php:imageheight',
441 'imageorient' => Array (
442 'label' => 'LLL:EXT:cms/locallang_ttc.php:imageorient',
446 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.0', 0, 'selicons/above_center.gif'),
447 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.1', 1, 'selicons/above_right.gif'),
448 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.2', 2, 'selicons/above_left.gif'),
449 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.3', 8, 'selicons/below_center.gif'),
450 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.4', 9, 'selicons/below_right.gif'),
451 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.5', 10, 'selicons/below_left.gif'),
452 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.6', 17, 'selicons/intext_right.gif'),
453 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.7', 18, 'selicons/intext_left.gif'),
454 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.8', '--div--'),
455 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.9', 25, 'selicons/intext_right_nowrap.gif'),
456 Array('LLL:EXT:cms/locallang_ttc.php:imageorient.I.10', 26, 'selicons/intext_left_nowrap.gif')
460 'iconsInOptionTags' => 1,
463 'imageborder' => Array (
465 'label' => 'LLL:EXT:cms/locallang_ttc.php:imageborder',
470 'image_noRows' => Array (
472 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_noRows',
477 'image_link' => Array (
479 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_link',
491 'icon' => 'link_popup.gif',
492 'script' => 'browse_links.php?mode=wizard',
493 'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1'
496 'softref' => 'typolink[linkList]'
499 'image_zoom' => Array (
501 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_zoom',
506 'image_effects' => Array (
508 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_effects',
512 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.0', 0),
513 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.1', 1),
514 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.2', 2),
515 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.3', 3),
516 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.4', 10),
517 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.5', 11),
518 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.6', 20),
519 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.7', 23),
520 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.8', 25),
521 Array('LLL:EXT:cms/locallang_ttc.php:image_effects.I.9', 26)
525 'image_frames' => Array (
527 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_frames',
531 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.0', 0),
532 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.1', 1),
533 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.2', 2),
534 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.3', 3),
535 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.4', 4),
536 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.5', 5),
537 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.6', 6),
538 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.7', 7),
539 Array('LLL:EXT:cms/locallang_ttc.php:image_frames.I.8', 8)
543 'image_compression' => Array (
545 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_compression',
549 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', 0),
550 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.1', 1),
551 Array('GIF/256', 10),
552 Array('GIF/128', 11),
558 Array('PNG/256', 30),
559 Array('PNG/128', 31),
564 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.15', 21),
565 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.16', 22),
566 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.17', 24),
567 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.18', 26),
568 Array('LLL:EXT:cms/locallang_ttc.php:image_compression.I.19', 28)
572 'imagecols' => Array (
573 'label' => 'LLL:EXT:cms/locallang_ttc.php:imagecols',
589 'imagecaption' => Array (
590 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.caption',
595 'softref' => 'typolink_tag,images,email[subst],url'
598 'imagecaption_position' => Array (
600 'label' => 'LLL:EXT:cms/locallang_ttc.php:imagecaption_position',
605 Array('LLL:EXT:cms/locallang_ttc.php:imagecaption_position.I.1', 'center'),
606 Array('LLL:EXT:cms/locallang_ttc.php:imagecaption_position.I.2', 'right'),
607 Array('LLL:EXT:cms/locallang_ttc.php:imagecaption_position.I.3', 'left')
614 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_altText',
621 'titleText' => Array (
623 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_titleText',
630 'longdescURL' => Array (
632 'label' => 'LLL:EXT:cms/locallang_ttc.php:image_longdescURL',
640 'label' => 'LLL:EXT:cms/locallang_ttc.php:cols',
644 Array('LLL:EXT:cms/locallang_ttc.php:cols.I.0', '0'),
659 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.startingpoint',
662 'internal_type' => 'db',
663 'allowed' => 'pages',
670 'recursive' => Array (
672 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.recursive',
677 Array('LLL:EXT:cms/locallang_ttc.php:recursive.I.1', '1'),
678 Array('LLL:EXT:cms/locallang_ttc.php:recursive.I.2', '2'),
679 Array('LLL:EXT:cms/locallang_ttc.php:recursive.I.3', '3'),
680 Array('LLL:EXT:cms/locallang_ttc.php:recursive.I.4', '4'),
681 Array('LLL:EXT:cms/locallang_ttc.php:recursive.I.5', '250')
686 'menu_type' => Array (
687 'label' => 'LLL:EXT:cms/locallang_ttc.php:menu_type',
691 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.0', '0'),
692 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.1', '1'),
693 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.2', '4'),
694 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.3', '7'),
695 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.4', '2'),
696 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.5', '3'),
697 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.6', '5'),
698 Array('LLL:EXT:cms/locallang_ttc.php:menu_type.I.7', '6')
703 'list_type' => Array (
704 'label' => 'LLL:EXT:cms/locallang_ttc.php:list_type',
711 'authMode' => $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'],
714 'select_key' => Array (
716 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.code',
724 'table_bgColor' => Array (
726 'label' => 'LLL:EXT:cms/locallang_ttc.php:table_bgColor',
730 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', '0'),
731 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.1', '1'),
732 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.2', '2'),
733 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.3', '200'),
734 Array('-----','--div--'),
735 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.5', '240'),
736 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.6', '241'),
737 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.7', '242'),
738 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.8', '243'),
739 Array('LLL:EXT:cms/locallang_ttc.php:table_bgColor.I.9', '244')
744 'table_border' => Array (
746 'label' => 'LLL:EXT:cms/locallang_ttc.php:table_border',
760 'table_cellspacing' => Array (
762 'label' => 'LLL:EXT:cms/locallang_ttc.php:table_cellspacing',
776 'table_cellpadding' => Array (
778 'label' => 'LLL:EXT:cms/locallang_ttc.php:table_cellpadding',
793 'label' => 'LLL:EXT:cms/locallang_ttc.php:media',
796 'internal_type' => 'file',
797 'allowed' => '', // Must be empty for disallowed to work.
798 'disallowed' => 'php,php3',
799 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
800 'uploadfolder' => 'uploads/media',
801 'show_thumbs' => '1',
807 'multimedia' => Array (
808 'label' => 'LLL:EXT:cms/locallang_ttc.php:multimedia',
811 'internal_type' => 'file',
812 'allowed' => 'txt,html,htm,class,swf,swa,dcr,wav,avi,au,mov,asf,mpg,wmv,mp3',
813 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
814 'uploadfolder' => 'uploads/media',
820 'filelink_size' => Array (
821 'label' => 'LLL:EXT:cms/locallang_ttc.php:filelink_size',
827 'label' => 'LLL:EXT:cms/locallang_ttc.php:records',
830 'internal_type' => 'db',
831 'allowed' => 'tt_content',
838 'spaceBefore' => Array (
840 'label' => 'LLL:EXT:cms/locallang_ttc.php:spaceBefore',
854 'spaceAfter' => Array (
856 'label' => 'LLL:EXT:cms/locallang_ttc.php:spaceAfter',
870 'section_frame' => Array (
872 'label' => 'LLL:EXT:cms/locallang_ttc.php:section_frame',
877 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.1', '1'),
878 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.2', '5'),
879 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.3', '6'),
880 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.4', '10'),
881 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.5', '11'),
882 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.6', '12'),
883 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.7', '20'),
884 Array('LLL:EXT:cms/locallang_ttc.php:section_frame.I.8', '21')
889 'splash_layout' => Array (
891 'label' => 'LLL:EXT:cms/locallang_ttc.php:splash_layout',
895 Array('LLL:EXT:lang/locallang_general.php:LGL.default_value', '0'),
896 Array('LLL:EXT:cms/locallang_ttc.php:splash_layout.I.1', '1'),
897 Array('LLL:EXT:cms/locallang_ttc.php:splash_layout.I.2', '2'),
898 Array('LLL:EXT:cms/locallang_ttc.php:splash_layout.I.3', '3'),
899 Array('LLL:EXT:cms/locallang_ttc.php:splash_layout.I.4', '--div--'),
900 Array('LLL:EXT:cms/locallang_ttc.php:splash_layout.I.5', '20'),
905 'sectionIndex' => Array (
907 'label' => 'LLL:EXT:cms/locallang_ttc.php:sectionIndex',
913 'linkToTop' => Array (
915 'label' => 'LLL:EXT:cms/locallang_ttc.php:linkToTop',
920 'rte_enabled' => Array (
922 'label' => 'LLL:EXT:cms/locallang_ttc.php:rte_enabled',
928 'pi_flexform' => array(
929 'l10n_display' => 'hideDiff',
930 'label' => 'LLL:EXT:cms/locallang_ttc.php:pi_flexform',
933 'ds_pointerField' => 'list_type,CType',
940 <!-- Repeat an element like "xmlTitle" beneath for as many elements you like. Remember to name them uniquely -->
943 <label>The Title:</label>
957 'tx_impexp_origuid' => Array('config'=>array('type'=>'passthrough')),
958 'l18n_diffsource' => Array('config'=>array('type'=>'passthrough')),
959 't3ver_label' => Array (
960 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.versionLabel',
969 '1' => Array('showitem' => 'CType'),
970 'header' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, subheader;;8'),
971 'text' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, bodytext;;9;richtext:rte_transform[flag=rte_enabled|mode=ts_css];3-3-3, rte_enabled, text_properties'),
972 'textpic' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, bodytext;;9;richtext:rte_transform[flag=rte_enabled|mode=ts_css];3-3-3, rte_enabled, text_properties, --div--, image;;;;4-4-4, imageorient;;2, imagewidth;;13,
973 --palette--;LLL:EXT:cms/locallang_ttc.php:ALT.imgLinks;7,
974 --palette--;LLL:EXT:cms/locallang_ttc.php:ALT.imgOptions;11,
976 altText;;;;1-1-1,titleText,longdescURL'),
977 'rte' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, bodytext;;;nowrap:richtext[*]:rte_transform[mode=ts_images-ts_reglinks];3-3-3'),
978 'image' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, image;;;;4-4-4, imageorient;;2, imagewidth;;13,
979 --palette--;LLL:EXT:cms/locallang_ttc.php:ALT.imgLinks;7,
980 --palette--;LLL:EXT:cms/locallang_ttc.php:ALT.imgOptions;11,
982 altText;;;;1-1-1,titleText,longdescURL'),
983 'bullets' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, layout;;;;3-3-3, bodytext;;9;nowrap, text_properties'),
984 'table' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, layout;;10;button;3-3-3, cols, bodytext;;9;nowrap:wizards[table], text_properties'),
985 'splash' => Array('showitem' => 'CType;;4;button;1-1-1, header;LLL:EXT:lang/locallang_general.php:LGL.name;;;2-2-2, splash_layout, bodytext;;;;3-3-3, image;;6'),
986 'uploads' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, media;;;;5-5-5,
987 select_key;LLL:EXT:cms/locallang_ttc.php:select_key.ALT.uploads,
988 layout;;10;button, filelink_size,
989 imagecaption;LLL:EXT:cms/locallang_ttc.php:imagecaption.ALT.uploads;;nowrap'),
990 'multimedia' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, multimedia;;;;5-5-5, bodytext;LLL:EXT:lang/locallang_general.php:LGL.parameters;;nowrap'),
991 'script' => Array('showitem' => 'CType;;4;button;1-1-1, header;LLL:EXT:lang/locallang_general.php:LGL.name;;;2-2-2, select_key;;;;5-5-5, pages;;12, bodytext;LLL:EXT:lang/locallang_general.php:LGL.parameters;;nowrap,
992 imagecaption;LLL:EXT:cms/locallang_ttc.php:imagecaption.ALT.script'),
993 'menu' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, menu_type;;;;5-5-5, pages'),
994 'mailform' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2,
995 bodytext;LLL:EXT:cms/locallang_ttc.php:bodytext.ALT.mailform;;nowrap:wizards[forms];5-5-5,
996 pages;LLL:EXT:cms/locallang_ttc.php:pages.ALT.mailform,
997 subheader;LLL:EXT:cms/locallang_ttc.php:subheader.ALT.mailform'),
998 'search' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2,
999 pages;LLL:EXT:cms/locallang_ttc.php:pages.ALT.search;;;5-5-5'),
1000 'login' => Array('showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2,
1001 pages;LLL:EXT:cms/locallang_ttc.php:pages.ALT.login;;;5-5-5'),
1002 'shortcut' => Array('showitem' => 'CType;;4;button;1-1-1, header;LLL:EXT:lang/locallang_general.php:LGL.name;;;2-2-2, records;;;;5-5-5, layout'),
1004 'showitem' => 'CType;;4;button;1-1-1, header;;3;;2-2-2, --div--, list_type;;;;5-5-5, layout, select_key, pages;;12',
1005 'subtype_value_field' => 'list_type',
1006 'subtypes_excludelist' => Array(
1007 '' => 'layout,select_key,pages', // When no plugin is selected.
1009 // '4' => 'layout', // List type forum
1023 'div' => Array('showitem' => 'CType;;14;button;1-1-1, header;LLL:EXT:lang/locallang_general.php:LGL.name;;;2-2-2'),
1024 'html' => Array('showitem' => 'CType;;4;button;1-1-1, header;LLL:EXT:lang/locallang_general.php:LGL.name;;;2-2-2,
1025 bodytext;LLL:EXT:cms/locallang_ttc.php:bodytext.ALT.html;;nowrap;3-3-3')
1027 'palettes' => Array (
1028 '1' => Array('showitem' => 'hidden, starttime, endtime'),
1029 '15' => Array('showitem' => 'fe_group'),
1030 '2' => Array('showitem' => 'imagecols, image_noRows, imageborder'),
1031 '3' => Array('showitem' => 'header_position, header_layout, header_link, date'),
1032 '4' => Array('showitem' => 'sys_language_uid, l18n_parent, colPos, spaceBefore, spaceAfter, section_frame, sectionIndex, linkToTop'),
1033 '5' => Array('showitem' => 'imagecaption_position'),
1034 '6' => Array('showitem' => 'imagewidth,image_link'),
1035 '7' => Array('showitem' => 'image_link, image_zoom'),
1036 '8' => Array('showitem' => 'layout'),
1037 '9' => Array('showitem' => 'text_align,text_face,text_size,text_color'),
1038 '10' => Array('showitem' => 'table_bgColor, table_border, table_cellspacing, table_cellpadding'),
1039 '11' => Array('showitem' => 'image_compression, image_effects, image_frames'),
1040 '12' => Array('showitem' => 'recursive'),
1041 '13' => Array('showitem' => 'imageheight'),
1042 '14' => Array('showitem' => 'sys_language_uid, l18n_parent, colPos')