TYPO3 API  SVNRelease
tbl_tt_content.php
Go to the documentation of this file.
00001 <?php
00002 /***************************************************************
00003 *  Copyright notice
00004 *
00005 *  (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
00006 *  All rights reserved
00007 *
00008 *  This script is part of the TYPO3 project. The TYPO3 project is
00009 *  free software; you can redistribute it and/or modify
00010 *  it under the terms of the GNU General Public License as published by
00011 *  the Free Software Foundation; either version 2 of the License, or
00012 *  (at your option) any later version.
00013 *
00014 *  The GNU General Public License can be found at
00015 *  http://www.gnu.org/copyleft/gpl.html.
00016 *  A copy is found in the textfile GPL.txt and important notices to the license
00017 *  from the author is found in LICENSE.txt distributed with these scripts.
00018 *
00019 *
00020 *  This script is distributed in the hope that it will be useful,
00021 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00022 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00023 *  GNU General Public License for more details.
00024 *
00025 *  This copyright notice MUST APPEAR in all copies of the script!
00026 ***************************************************************/
00027 /**
00028  * Dynamic configuation of the tt_content table
00029  * This gets it's own file because it's so huge and central to typical TYPO3 use.
00030  *
00031  * $Id: tbl_tt_content.php 10120 2011-01-18 20:03:36Z ohader $
00032  *
00033  * @author  Kasper Skårhøj <kasperYYYY@typo3.com>
00034  */
00035 
00036 
00037 
00038 $TCA['tt_content'] = array(
00039     'ctrl' => $TCA['tt_content']['ctrl'],
00040     'interface' => array(
00041         'always_description' => 0,
00042         'showRecordFieldList' => 'CType,header,header_link,bodytext,image,imagewidth,imageorient,media,records,colPos,starttime,endtime,fe_group'
00043     ),
00044     'columns' => array(
00045         'CType' => array(
00046             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.type',
00047             'config' => array(
00048                 'type' => 'select',
00049                 'items' => array(
00050                     array(
00051                         'LLL:EXT:cms/locallang_ttc.xml:CType.div.standard',
00052                         '--div--',
00053                     ),
00054                     array(
00055                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.0',
00056                         'header',
00057                         'i/tt_content_header.gif',
00058                     ),
00059                     array(
00060                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.1',
00061                         'text',
00062                         'i/tt_content.gif',
00063                     ),
00064                     array(
00065                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.2',
00066                         'textpic',
00067                         'i/tt_content_textpic.gif',
00068                     ),
00069                     array(
00070                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.3',
00071                         'image',
00072                         'i/tt_content_image.gif',
00073                     ),
00074                     array(
00075                         'LLL:EXT:cms/locallang_ttc.xml:CType.div.lists',
00076                         '--div--',
00077                     ),
00078                     array(
00079                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.4',
00080                         'bullets',
00081                         'i/tt_content_bullets.gif',
00082                     ),
00083                     array(
00084                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.5',
00085                         'table',
00086                         'i/tt_content_table.gif',
00087                     ),
00088                     array(
00089                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.6',
00090                         'uploads',
00091                         'i/tt_content_uploads.gif',
00092                     ),
00093                     array(
00094                         'LLL:EXT:cms/locallang_ttc.xml:CType.div.forms',
00095                         '--div--',
00096                     ),
00097                     array(
00098                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.8',
00099                         'mailform',
00100                         'i/tt_content_form.gif',
00101                     ),
00102                     array(
00103                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.9',
00104                         'search',
00105                         'i/tt_content_search.gif',
00106                     ),
00107                     array(
00108                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.10',
00109                         'login',
00110                         'i/tt_content_login.gif',
00111                     ),
00112                     array(
00113                         'LLL:EXT:cms/locallang_ttc.xml:CType.div.special',
00114                         '--div--',
00115                     ),
00116                     array(
00117                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.7',
00118                         'multimedia',
00119                         'i/tt_content_mm.gif',
00120                     ),
00121                     array(
00122                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.18',
00123                         'media',
00124                         'i/tt_content_mm.gif',
00125                     ),
00126                     array(
00127                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.11',
00128                         'splash',
00129                         'i/tt_content_news.gif',
00130                     ),
00131                     array(
00132                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.12',
00133                         'menu',
00134                         'i/tt_content_menu.gif',
00135                     ),
00136                     array(
00137                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.13',
00138                         'shortcut',
00139                         'i/tt_content_shortcut.gif',
00140                     ),
00141                     array(
00142                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.14',
00143                         'list',
00144                         'i/tt_content_list.gif',
00145                     ),
00146                     array(
00147                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.15',
00148                         'script',
00149                         'i/tt_content_script.gif',
00150                     ),
00151                     array(
00152                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.16',
00153                         'div',
00154                         'i/tt_content_div.gif',
00155                     ),
00156                     array(
00157                         'LLL:EXT:cms/locallang_ttc.xml:CType.I.17',
00158                         'html',
00159                         'i/tt_content_html.gif',
00160                     ),
00161                 ),
00162                 'default' => 'text',
00163                 'authMode' => $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'],
00164                 'authMode_enforce' => 'strict',
00165                 'iconsInOptionTags' => 1,
00166                 'noIconsBelowSelect' => 1,
00167             ),
00168         ),
00169         'hidden' => array(
00170             'exclude' => 1,
00171             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.hidden',
00172             'config' => array(
00173                 'type' => 'check',
00174                 'items' => array (
00175                     '1' => array(
00176                         '0' => 'LLL:EXT:cms/locallang_ttc.xml:hidden.I.0',
00177                     ),
00178                 ),
00179             ),
00180         ),
00181         'starttime' => array(
00182             'exclude' => 1,
00183             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.starttime',
00184             'config' => array(
00185                 'type' => 'input',
00186                 'size' => '13',
00187                 'max' => '20',
00188                 'eval' => 'date',
00189                 'default' => '0',
00190             ),
00191         ),
00192         'endtime' => array(
00193             'exclude' => 1,
00194             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.endtime',
00195             'config' => array(
00196                 'type' => 'input',
00197                 'size' => '13',
00198                 'max' => '20',
00199                 'eval' => 'date',
00200                 'default' => '0',
00201                 'range' => array(
00202                     'upper' => mktime(0,0,0,12,31,2020),
00203                 ),
00204             ),
00205         ),
00206         'fe_group' => array(
00207             'exclude' => 1,
00208             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.fe_group',
00209             'config' => array(
00210                 'type' => 'select',
00211                 'size' => 5,
00212                 'maxitems' => 20,
00213                 'items' => array(
00214                     array(
00215                         'LLL:EXT:lang/locallang_general.xml:LGL.hide_at_login',
00216                         -1,
00217                     ),
00218                     array(
00219                         'LLL:EXT:lang/locallang_general.xml:LGL.any_login',
00220                         -2,
00221                     ),
00222                     array(
00223                         'LLL:EXT:lang/locallang_general.xml:LGL.usergroups',
00224                         '--div--',
00225                     ),
00226                 ),
00227                 'exclusiveKeys' => '-1,-2',
00228                 'foreign_table' => 'fe_groups',
00229                 'foreign_table_where' => 'ORDER BY fe_groups.title',
00230             ),
00231         ),
00232         'sys_language_uid' => array(
00233             'exclude' => 1,
00234             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.language',
00235             'config' => array(
00236                 'type' => 'select',
00237                 'foreign_table' => 'sys_language',
00238                 'foreign_table_where' => 'ORDER BY sys_language.title',
00239                 'items' => array(
00240                     array(
00241                         'LLL:EXT:lang/locallang_general.xml:LGL.allLanguages',
00242                         -1,
00243                     ),
00244                     array(
00245                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00246                         0,
00247                     ),
00248                 ),
00249             ),
00250         ),
00251         'l18n_parent' => array(
00252             'displayCond' => 'FIELD:sys_language_uid:>:0',
00253             'exclude' => 1,
00254             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.l18n_parent',
00255             'config' => array(
00256                 'type' => 'select',
00257                 'items' => array(
00258                     array(
00259                         '',
00260                         0,
00261                     ),
00262                 ),
00263                 'foreign_table' => 'tt_content',
00264                 'foreign_table_where' => 'AND tt_content.pid=###CURRENT_PID### AND tt_content.sys_language_uid IN (-1,0)',
00265             ),
00266         ),
00267         'layout' => array(
00268             'exclude' => 1,
00269             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.layout',
00270             'config' => array(
00271                 'type' => 'select',
00272                 'items' => array(
00273                     array(
00274                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00275                         '0',
00276                     ),
00277                     array(
00278                         'LLL:EXT:cms/locallang_ttc.xml:layout.I.1',
00279                         '1',
00280                     ),
00281                     array(
00282                         'LLL:EXT:cms/locallang_ttc.xml:layout.I.2',
00283                         '2',
00284                     ),
00285                     array(
00286                         'LLL:EXT:cms/locallang_ttc.xml:layout.I.3',
00287                         '3',
00288                     ),
00289                 ),
00290                 'default' => '0',
00291             ),
00292         ),
00293         'colPos' => array(
00294             'exclude' => 1,
00295             'label' => 'LLL:EXT:cms/locallang_ttc.xml:colPos',
00296             'config' => array(
00297                 'type' => 'select',
00298                 'itemsProcFunc' => 'EXT:cms/classes/class.tx_cms_backendlayout.php:tx_cms_BackendLayout->colPosListItemProcFunc',
00299                 'items' => array(
00300                     array(
00301                         'LLL:EXT:cms/locallang_ttc.xml:colPos.I.0',
00302                         '1',
00303                     ),
00304                     array(
00305                         'LLL:EXT:lang/locallang_general.xml:LGL.normal',
00306                         '0',
00307                     ),
00308                     array(
00309                         'LLL:EXT:cms/locallang_ttc.xml:colPos.I.2',
00310                         '2',
00311                     ),
00312                     array(
00313                         'LLL:EXT:cms/locallang_ttc.xml:colPos.I.3',
00314                         '3',
00315                     ),
00316                 ),
00317                 'default' => '0',
00318             ),
00319         ),
00320         'date' => array(
00321             'exclude' => 1,
00322             'label' => 'LLL:EXT:cms/locallang_ttc.xml:date',
00323             'config' => array(
00324                 'type' => 'input',
00325                 'size' => '13',
00326                 'max' => '20',
00327                 'eval' => 'date',
00328                 'default' => '0',
00329             ),
00330         ),
00331         'header' => array(
00332             'l10n_mode' => 'prefixLangTitle',
00333             'l10n_cat' => 'text',
00334             'label' => 'LLL:EXT:cms/locallang_ttc.xml:header',
00335             'config' => array(
00336                 'type' => 'input',
00337                 'size' => '50',
00338                 'max' => '256',
00339             ),
00340         ),
00341         'header_position' => array(
00342             'label' => 'LLL:EXT:cms/locallang_ttc.xml:header_position',
00343             'exclude' => 1,
00344             'config' => array(
00345                 'type' => 'select',
00346                 'items' => array(
00347                     array(
00348                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00349                         '',
00350                     ),
00351                     array(
00352                         'LLL:EXT:cms/locallang_ttc.xml:header_position.I.1',
00353                         'center',
00354                     ),
00355                     array(
00356                         'LLL:EXT:cms/locallang_ttc.xml:header_position.I.2',
00357                         'right',
00358                     ),
00359                     array(
00360                         'LLL:EXT:cms/locallang_ttc.xml:header_position.I.3',
00361                         'left',
00362                     ),
00363                 ),
00364                 'default' => '',
00365             ),
00366         ),
00367         'header_link' => array(
00368             'label' => 'LLL:EXT:cms/locallang_ttc.xml:header_link',
00369             'exclude' => 1,
00370             'config' => array(
00371                 'type' => 'input',
00372                 'size' => '50',
00373                 'max' => '256',
00374                 'eval' => 'trim',
00375                 'wizards' => array(
00376                     '_PADDING' => 2,
00377                     'link' => array(
00378                         'type' => 'popup',
00379                         'title' => 'LLL:EXT:cms/locallang_ttc.xml:header_link_formlabel',
00380                         'icon' => 'link_popup.gif',
00381                         'script' => 'browse_links.php?mode=wizard',
00382                         'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1',
00383                     ),
00384                 ),
00385                 'softref' => 'typolink',
00386             ),
00387         ),
00388         'header_layout' => array(
00389             'exclude' => 1,
00390             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.type',
00391             'config' => array(
00392                 'type' => 'select',
00393                 'items' => array(
00394                     array(
00395                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00396                         '0',
00397                     ),
00398                     array(
00399                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.1',
00400                         '1',
00401                     ),
00402                     array(
00403                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.2',
00404                         '2',
00405                     ),
00406                     array(
00407                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.3',
00408                         '3',
00409                     ),
00410                     array(
00411                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.4',
00412                         '4',
00413                     ),
00414                     array(
00415                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.5',
00416                         '5',
00417                     ),
00418                     array(
00419                         'LLL:EXT:cms/locallang_ttc.xml:header_layout.I.6',
00420                         '100',
00421                     ),
00422                 ),
00423                 'default' => '0',
00424             ),
00425         ),
00426         'subheader' => array(
00427             'exclude' => 1,
00428             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.subheader',
00429             'config' => array(
00430                 'type' => 'input',
00431                 'size' => '50',
00432                 'max' => '256',
00433                 'softref' => 'email[subst]',
00434             ),
00435         ),
00436         'bodytext' => array(
00437             'l10n_mode' => 'prefixLangTitle',
00438             'l10n_cat' => 'text',
00439             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.text',
00440             'config' => array(
00441                 'type' => 'text',
00442                 'cols' => '48',
00443                 'rows' => '5',
00444                 'wizards' => array(
00445                     '_PADDING' => 4,
00446                     '_VALIGN' => 'middle',
00447                     'RTE' => array(
00448                         'notNewRecords' => 1,
00449                         'RTEonly' => 1,
00450                         'type' => 'script',
00451                         'title' => 'LLL:EXT:cms/locallang_ttc.xml:bodytext.W.RTE',
00452                         'icon' => 'wizard_rte2.gif',
00453                         'script' => 'wizard_rte.php',
00454                     ),
00455                     'table' => array(
00456                         'notNewRecords' => 1,
00457                         'enableByTypeConfig' => 1,
00458                         'type' => 'script',
00459                         'title' => 'LLL:EXT:cms/locallang_ttc.xml:bodytext.W.table',
00460                         'icon' => 'wizard_table.gif',
00461                         'script' => 'wizard_table.php',
00462                         'params' => array(
00463                             'xmlOutput' => 0,
00464                         ),
00465                     ),
00466                     'forms' => array(
00467                         'notNewRecords' => 1,
00468                         'enableByTypeConfig' => 1,
00469                         'type' => 'script',
00470 #                       'hideParent' => array('rows' => 4),
00471                         'title' => 'LLL:EXT:cms/locallang_ttc.xml:bodytext.W.forms',
00472                         'icon' => 'wizard_forms.gif',
00473                         'script' => 'wizard_forms.php?special=formtype_mail',
00474                         'params' => array(
00475                             'xmlOutput' => 0,
00476                         ),
00477                     ),
00478                 ),
00479                 'softref' => 'typolink_tag,images,email[subst],url',
00480             ),
00481         ),
00482         'text_align' => array(
00483             'exclude' => 1,
00484             'label' => 'LLL:EXT:cms/locallang_ttc.xml:text_align',
00485             'config' => array(
00486                 'type' => 'select',
00487                 'items' => array(
00488                     array(
00489                         '',
00490                         '',
00491                     ),
00492                     array(
00493                         'LLL:EXT:cms/locallang_ttc.xml:text_align.I.1',
00494                         'center',
00495                     ),
00496                     array(
00497                         'LLL:EXT:cms/locallang_ttc.xml:text_align.I.2',
00498                         'right',
00499                     ),
00500                     array(
00501                         'LLL:EXT:cms/locallang_ttc.xml:text_align.I.3',
00502                         'left',
00503                     ),
00504                 ),
00505                 'default' => '',
00506             ),
00507         ),
00508         'text_face' => array(
00509             'exclude' => 1,
00510             'label' => 'LLL:EXT:cms/locallang_ttc.xml:text_face',
00511             'config' => array(
00512                 'type' => 'select',
00513                 'items' => array(
00514                     array(
00515                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00516                         '0',
00517                     ),
00518                     array(
00519                         'Times',
00520                         '1',
00521                     ),
00522                     array(
00523                         'Verdana',
00524                         '2',
00525                     ),
00526                     array(
00527                         'Arial',
00528                         '3',
00529                     ),
00530                 ),
00531                 'default' => '0',
00532             ),
00533         ),
00534         'text_size' => array(
00535             'exclude' => 1,
00536             'label' => 'LLL:EXT:cms/locallang_ttc.xml:text_size',
00537             'config' => array(
00538                 'type' => 'select',
00539                 'items' => array(
00540                     array(
00541                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00542                         '0',
00543                     ),
00544                     array(
00545                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.1',
00546                         '1',
00547                     ),
00548                     array(
00549                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.2',
00550                         '2',
00551                     ),
00552                     array(
00553                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.3',
00554                         '3',
00555                     ),
00556                     array(
00557                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.4',
00558                         '4',
00559                     ),
00560                     array(
00561                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.5',
00562                         '5',
00563                     ),
00564                     array(
00565                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.6',
00566                         '10',
00567                     ),
00568                     array(
00569                         'LLL:EXT:cms/locallang_ttc.xml:text_size.I.7',
00570                         '11',
00571                     ),
00572                 ),
00573                 'default' => '0',
00574             ),
00575         ),
00576         'text_color' => array(
00577             'exclude' => 1,
00578             'label' => 'LLL:EXT:cms/locallang_ttc.xml:text_color',
00579             'config' => array(
00580                 'type' => 'select',
00581                 'items' => array(
00582                     array(
00583                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00584                         '0',
00585                     ),
00586                     array(
00587                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.1',
00588                         '1',
00589                     ),
00590                     array(
00591                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.2',
00592                         '2',
00593                     ),
00594                     array(
00595                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.3',
00596                         '200',
00597                     ),
00598                     array(
00599                         '-----',
00600                         '--div--',
00601                     ),
00602                     array(
00603                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.5',
00604                         '240',
00605                     ),
00606                     array(
00607                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.6',
00608                         '241',
00609                     ),
00610                     array(
00611                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.7',
00612                         '242',
00613                     ),
00614                     array(
00615                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.8',
00616                         '243',
00617                     ),
00618                     array(
00619                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.9',
00620                         '244',
00621                     ),
00622                     array(
00623                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.10',
00624                         '245',
00625                     ),
00626                     array(
00627                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.11',
00628                         '246',
00629                     ),
00630                     array(
00631                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.12',
00632                         '247',
00633                     ),
00634                     array(
00635                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.13',
00636                         '248',
00637                     ),
00638                     array(
00639                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.14',
00640                         '249',
00641                     ),
00642                     array(
00643                         'LLL:EXT:cms/locallang_ttc.xml:text_color.I.15',
00644                         '250',
00645                     ),
00646                 ),
00647                 'default' => '0',
00648             ),
00649         ),
00650         'text_properties' => array(
00651             'exclude' => 1,
00652             'label' => 'LLL:EXT:cms/locallang_ttc.xml:text_properties',
00653             'config' => array(
00654                 'type' => 'check',
00655                 'items' => array(
00656                     array(
00657                         'LLL:EXT:cms/locallang_ttc.xml:text_properties.I.0',
00658                         '',
00659                     ),
00660                     array(
00661                         'LLL:EXT:cms/locallang_ttc.xml:text_properties.I.1',
00662                         '',
00663                     ),
00664                     array(
00665                         'LLL:EXT:cms/locallang_ttc.xml:text_properties.I.2',
00666                         '',
00667                     ),
00668                     array(
00669                         'LLL:EXT:cms/locallang_ttc.xml:text_properties.I.3',
00670                         '',
00671                     ),
00672                 ),
00673                 'cols' => 4,            ),
00674         ),
00675         'image' => array(
00676 #           'l10n_mode' => 'mergeIfNotBlank',
00677             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.images',
00678             'config' => array(
00679                 'type' => 'group',
00680                 'internal_type' => 'file',
00681                 'allowed' => $GLOBALS['TYPO3_CONF_VARS']['GFX']['imagefile_ext'],
00682                 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
00683                 'uploadfolder' => 'uploads/pics',
00684                 'show_thumbs' => '1',
00685                 'size' => '3',
00686                 'maxitems' => '200',
00687                 'minitems' => '0',
00688                 'autoSizeMax' => 40,
00689             ),
00690         ),
00691         'imagewidth' => array(
00692             'exclude' => 1,
00693             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imagewidth',
00694             'config' => array(
00695                 'type' => 'input',
00696                 'size' => '4',
00697                 'max' => '4',
00698                 'eval' => 'int',
00699                 'range' => array(
00700                     'upper' => '999',
00701                     'lower' => '25',
00702                 ),
00703                 'default' => 0,
00704             ),
00705         ),
00706         'imageheight' => array(
00707             'exclude' => 1,
00708             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imageheight',
00709             'config' => array(
00710                 'type' => 'input',
00711                 'size' => '4',
00712                 'max' => '4',
00713                 'eval' => 'int',
00714                 'range' => array(
00715                     'upper' => '700',
00716                     'lower' => '25',
00717                 ),
00718                 'default' => 0,
00719             ),
00720         ),
00721         'imageorient' => array(
00722             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imageorient',
00723             'config' => array(
00724                 'type' => 'select',
00725                 'items' => array(
00726                     array(
00727                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.0',
00728                         0,
00729                         'selicons/above_center.gif',
00730                     ),
00731                     array(
00732                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.1',
00733                         1,
00734                         'selicons/above_right.gif',
00735                     ),
00736                     array(
00737                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.2',
00738                         2,
00739                         'selicons/above_left.gif',
00740                     ),
00741                     array(
00742                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.3',
00743                         8,
00744                         'selicons/below_center.gif',
00745                     ),
00746                     array(
00747                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.4',
00748                         9,
00749                         'selicons/below_right.gif',
00750                     ),
00751                     array(
00752                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.5',
00753                         10,
00754                         'selicons/below_left.gif',
00755                     ),
00756                     array(
00757                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.6',
00758                         17,
00759                         'selicons/intext_right.gif',
00760                     ),
00761                     array(
00762                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.7',
00763                         18,
00764                         'selicons/intext_left.gif',
00765                     ),
00766                     array(
00767                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.8',
00768                         '--div--',
00769                     ),
00770                     array(
00771                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.9',
00772                         25,
00773                         'selicons/intext_right_nowrap.gif',
00774                     ),
00775                     array(
00776                         'LLL:EXT:cms/locallang_ttc.xml:imageorient.I.10',
00777                         26,
00778                         'selicons/intext_left_nowrap.gif',
00779                     ),
00780                 ),
00781                 'selicon_cols' => 6,
00782                 'default' => '0',
00783                 'iconsInOptionTags' => 1,
00784             ),
00785         ),
00786         'imageborder' => array(
00787             'exclude' => 1,
00788             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imageborder',
00789             'config' => array(
00790                 'type' => 'check',
00791                 'items' => array (
00792                     '1' => array(
00793                         '0' => 'LLL:EXT:lang/locallang_core.xml:labels.enabled',
00794                     ),
00795                 ),
00796             ),
00797         ),
00798         'image_noRows' => array(
00799             'exclude' => 1,
00800             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_noRows',
00801             'config' => array(
00802                 'type' => 'check',
00803                 'items' => array (
00804                     '1' => array(
00805                         '0' => 'LLL:EXT:cms/locallang_ttc.xml:image_noRows.I.0',
00806                     ),
00807                 ),
00808             ),
00809         ),
00810         'image_link' => array(
00811             'exclude' => 1,
00812             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_link',
00813             'config' => array(
00814                 'type' => 'text',
00815                 'cols' => '30',
00816                 'rows' => '3',
00817                 'wizards' => array(
00818                     '_PADDING' => 2,
00819                     'link' => array(
00820                         'type' => 'popup',
00821                         'title' => 'LLL:EXT:cms/locallang_ttc.xml:image_link_formlabel',
00822                         'icon' => 'link_popup.gif',
00823                         'script' => 'browse_links.php?mode=wizard',
00824                         'JSopenParams' => 'height=300,width=500,status=0,menubar=0,scrollbars=1',
00825                     ),
00826                 ),
00827                 'softref' => 'typolink[linkList]',
00828             ),
00829         ),
00830         'image_zoom' => array(
00831             'exclude' => 1,
00832             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_zoom',
00833             'config' => array(
00834                 'type' => 'check',
00835                 'items' => array (
00836                     '1' => array(
00837                         '0' => 'LLL:EXT:lang/locallang_core.xml:labels.enabled',
00838                     ),
00839                 ),
00840             ),
00841         ),
00842         'image_effects' => array(
00843             'exclude' => 1,
00844             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_effects',
00845             'config' => array(
00846                 'type' => 'select',
00847                 'items' => array(
00848                     array(
00849                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.0',
00850                         0,
00851                     ),
00852                     array(
00853                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.1',
00854                         1,
00855                     ),
00856                     array(
00857                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.2',
00858                         2,
00859                     ),
00860                     array(
00861                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.3',
00862                         3,
00863                     ),
00864                     array(
00865                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.4',
00866                         10,
00867                     ),
00868                     array(
00869                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.5',
00870                         11,
00871                     ),
00872                     array(
00873                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.6',
00874                         20,
00875                     ),
00876                     array(
00877                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.7',
00878                         23,
00879                     ),
00880                     array(
00881                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.8',
00882                         25,
00883                     ),
00884                     array(
00885                         'LLL:EXT:cms/locallang_ttc.xml:image_effects.I.9',
00886                         26,
00887                     ),
00888                 ),
00889             ),
00890         ),
00891         'image_frames' => array(
00892             'exclude' => 1,
00893             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_frames',
00894             'config' => array(
00895                 'type' => 'select',
00896                 'items' => array(
00897                     array(
00898                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.0',
00899                         0,
00900                     ),
00901                     array(
00902                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.1',
00903                         1,
00904                     ),
00905                     array(
00906                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.2',
00907                         2,
00908                     ),
00909                     array(
00910                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.3',
00911                         3,
00912                     ),
00913                     array(
00914                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.4',
00915                         4,
00916                     ),
00917                     array(
00918                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.5',
00919                         5,
00920                     ),
00921                     array(
00922                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.6',
00923                         6,
00924                     ),
00925                     array(
00926                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.7',
00927                         7,
00928                     ),
00929                     array(
00930                         'LLL:EXT:cms/locallang_ttc.xml:image_frames.I.8',
00931                         8,
00932                     ),
00933                 ),
00934             ),
00935         ),
00936         'image_compression' => array(
00937             'exclude' => 1,
00938             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_compression',
00939             'config' => array(
00940                 'type' => 'select',
00941                 'items' => array(
00942                     array(
00943                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
00944                         0,
00945                     ),
00946                     array(
00947                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.1',
00948                         1,
00949                     ),
00950                     array(
00951                         'GIF/256',
00952                         10,
00953                     ),
00954                     array(
00955                         'GIF/128',
00956                         11,
00957                     ),
00958                     array(
00959                         'GIF/64',
00960                         12,
00961                     ),
00962                     array(
00963                         'GIF/32',
00964                         13,
00965                     ),
00966                     array(
00967                         'GIF/16',
00968                         14,
00969                     ),
00970                     array(
00971                         'GIF/8',
00972                         15,
00973                     ),
00974                     array(
00975                         'PNG',
00976                         39,
00977                     ),
00978                     array(
00979                         'PNG/256',
00980                         30,
00981                     ),
00982                     array(
00983                         'PNG/128',
00984                         31,
00985                     ),
00986                     array(
00987                         'PNG/64',
00988                         32,
00989                     ),
00990                     array(
00991                         'PNG/32',
00992                         33,
00993                     ),
00994                     array(
00995                         'PNG/16',
00996                         34,
00997                     ),
00998                     array(
00999                         'PNG/8',
01000                         35,
01001                     ),
01002                     array(
01003                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.15',
01004                         21,
01005                     ),
01006                     array(
01007                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.16',
01008                         22,
01009                     ),
01010                     array(
01011                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.17',
01012                         24,
01013                     ),
01014                     array(
01015                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.18',
01016                         26,
01017                     ),
01018                     array(
01019                         'LLL:EXT:cms/locallang_ttc.xml:image_compression.I.19',
01020                         28,
01021                     ),
01022                 ),
01023             ),
01024         ),
01025         'imagecols' => array(
01026             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imagecols',
01027             'config' => array(
01028                 'type' => 'select',
01029                 'items' => array(
01030                     array(
01031                         '1',
01032                         1,
01033                     ),
01034                     array(
01035                         '2',
01036                         2,
01037                     ),
01038                     array(
01039                         '3',
01040                         3,
01041                     ),
01042                     array(
01043                         '4',
01044                         4,
01045                     ),
01046                     array(
01047                         '5',
01048                         5,
01049                     ),
01050                     array(
01051                         '6',
01052                         6,
01053                     ),
01054                     array(
01055                         '7',
01056                         7,
01057                     ),
01058                     array(
01059                         '8',
01060                         8,
01061                     ),
01062                 ),
01063                 'default' => 1,
01064             ),
01065         ),
01066         'imagecaption' => array(
01067             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.caption',
01068             'config' => array(
01069                 'type' => 'text',
01070                 'cols' => '30',
01071                 'rows' => '3',
01072                 'softref' => 'typolink_tag,images,email[subst],url',
01073             ),
01074         ),
01075         'imagecaption_position' => array(
01076             'exclude' => 1,
01077             'label' => 'LLL:EXT:cms/locallang_ttc.xml:imagecaption_position',
01078             'config' => array(
01079                 'type' => 'select',
01080                 'items' => array(
01081                     array(
01082                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
01083                         '',
01084                     ),
01085                     array(
01086                         'LLL:EXT:cms/locallang_ttc.xml:imagecaption_position.I.1',
01087                         'center',
01088                     ),
01089                     array(
01090                         'LLL:EXT:cms/locallang_ttc.xml:imagecaption_position.I.2',
01091                         'right',
01092                     ),
01093                     array(
01094                         'LLL:EXT:cms/locallang_ttc.xml:imagecaption_position.I.3',
01095                         'left',
01096                     ),
01097                 ),
01098                 'default' => '',
01099             ),
01100         ),
01101         'altText' => array(
01102             'exclude' => 1,
01103             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_altText',
01104             'config' => array(
01105                 'type' => 'text',
01106                 'cols' => '30',
01107                 'rows' => '3',
01108             ),
01109         ),
01110         'titleText' => array(
01111             'exclude' => 1,
01112             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_titleText',
01113             'config' => array(
01114                 'type' => 'text',
01115                 'cols' => '30',
01116                 'rows' => '3',
01117             ),
01118         ),
01119         'longdescURL' => array(
01120             'exclude' => 1,
01121             'label' => 'LLL:EXT:cms/locallang_ttc.xml:image_longdescURL',
01122             'config' => array(
01123                 'type' => 'text',
01124                 'cols' => '30',
01125                 'rows' => '3',
01126             ),
01127         ),
01128         'cols' => array(
01129             'label' => 'LLL:EXT:cms/locallang_ttc.xml:cols',
01130             'config' => array(
01131                 'type' => 'select',
01132                 'items' => array(
01133                     array(
01134                         'LLL:EXT:cms/locallang_ttc.xml:cols.I.0',
01135                         '0',
01136                     ),
01137                     array(
01138                         '1',
01139                         '1',
01140                     ),
01141                     array(
01142                         '2',
01143                         '2',
01144                     ),
01145                     array(
01146                         '3',
01147                         '3',
01148                     ),
01149                     array(
01150                         '4',
01151                         '4',
01152                     ),
01153                     array(
01154                         '5',
01155                         '5',
01156                     ),
01157                     array(
01158                         '6',
01159                         '6',
01160                     ),
01161                     array(
01162                         '7',
01163                         '7',
01164                     ),
01165                     array(
01166                         '8',
01167                         '8',
01168                     ),
01169                     array(
01170                         '9',
01171                         '9',
01172                     ),
01173                 ),
01174                 'default' => '0',
01175             ),
01176         ),
01177         'pages' => array(
01178             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.startingpoint',
01179             'config' => array(
01180                 'type' => 'group',
01181                 'internal_type' => 'db',
01182                 'allowed' => 'pages',
01183                 'size' => '3',
01184                 'maxitems' => '22',
01185                 'minitems' => '0',
01186                 'show_thumbs' => '1',
01187                 'wizards' => array(
01188                     'suggest' => array(
01189                         'type' => 'suggest',
01190                     ),
01191                 ),
01192             ),
01193         ),
01194         'recursive' => array(
01195             'exclude' => 1,
01196             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.recursive',
01197             'config' => array(
01198                 'type' => 'select',
01199                 'items' => array(
01200                     array(
01201                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.0',
01202                         '0',
01203                     ),
01204                     array(
01205                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.1',
01206                         '1',
01207                     ),
01208                     array(
01209                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.2',
01210                         '2',
01211                     ),
01212                     array(
01213                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.3',
01214                         '3',
01215                     ),
01216                     array(
01217                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.4',
01218                         '4',
01219                     ),
01220                     array(
01221                         'LLL:EXT:cms/locallang_ttc.xml:recursive.I.5',
01222                         '250',
01223                     ),
01224                 ),
01225                 'default' => '0',
01226             ),
01227         ),
01228         'menu_type' => array(
01229             'label' => 'LLL:EXT:cms/locallang_ttc.xml:menu_type',
01230             'config' => array(
01231                 'type' => 'select',
01232                 'items' => array(
01233                     array(
01234                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.0',
01235                         '0',
01236                     ),
01237                     array(
01238                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.1',
01239                         '1',
01240                     ),
01241                     array(
01242                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.2',
01243                         '4',
01244                     ),
01245                     array(
01246                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.3',
01247                         '7',
01248                     ),
01249                     array(
01250                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.4',
01251                         '2',
01252                     ),
01253                     array(
01254                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.5',
01255                         '3',
01256                     ),
01257                     array(
01258                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.6',
01259                         '5',
01260                     ),
01261                     array(
01262                         'LLL:EXT:cms/locallang_ttc.xml:menu_type.I.7',
01263                         '6',
01264                     ),
01265                 ),
01266                 'default' => '0',
01267             ),
01268         ),
01269         'list_type' => array(
01270             'label' => 'LLL:EXT:cms/locallang_ttc.xml:list_type',
01271             'config' => array(
01272                 'type' => 'select',
01273                 'items' => array(
01274                     array(
01275                         '',
01276                         '',
01277                         '',
01278                     ),
01279                 ),
01280                 'default' => '',
01281                 'authMode' => $GLOBALS['TYPO3_CONF_VARS']['BE']['explicitADmode'],
01282                 'iconsInOptionTags' => 1,
01283                 'noIconsBelowSelect' => 1,
01284             ),
01285         ),
01286         'select_key' => array(
01287             'exclude' => 1,
01288             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.code',
01289             'config' => array(
01290                 'type' => 'input',
01291                 'size' => '50',
01292                 'max' => '80',
01293                 'eval' => 'trim',
01294             ),
01295         ),
01296         'table_bgColor' => array(
01297             'exclude' => 1,
01298             'label' => 'LLL:EXT:cms/locallang_ttc.xml:table_bgColor',
01299             'config' => array(
01300                 'type' => 'select',
01301                 'items' => array(
01302                     array(
01303                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
01304                         '0',
01305                     ),
01306                     array(
01307                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.1',
01308                         '1',
01309                     ),
01310                     array(
01311                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.2',
01312                         '2',
01313                     ),
01314                     array(
01315                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.3',
01316                         '200',
01317                     ),
01318                     array(
01319                         '-----',
01320                         '--div--',
01321                     ),
01322                     array(
01323                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.5',
01324                         '240',
01325                     ),
01326                     array(
01327                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.6',
01328                         '241',
01329                     ),
01330                     array(
01331                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.7',
01332                         '242',
01333                     ),
01334                     array(
01335                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.8',
01336                         '243',
01337                     ),
01338                     array(
01339                         'LLL:EXT:cms/locallang_ttc.xml:table_bgColor.I.9',
01340                         '244',
01341                     ),
01342                 ),
01343                 'default' => '0',
01344             ),
01345         ),
01346         'table_border' => array(
01347             'exclude' => 1,
01348             'label' => 'LLL:EXT:cms/locallang_ttc.xml:table_border',
01349             'config' => array(
01350                 'type' => 'input',
01351                 'size' => '3',
01352                 'max' => '3',
01353                 'eval' => 'int',
01354                 'range' => array(
01355                     'upper' => '20',
01356                     'lower' => '0',
01357                 ),
01358                 'default' => 0,
01359             ),
01360         ),
01361         'table_cellspacing' => array(
01362             'exclude' => 1,
01363             'label' => 'LLL:EXT:cms/locallang_ttc.xml:table_cellspacing',
01364             'config' => array(
01365                 'type' => 'input',
01366                 'size' => '3',
01367                 'max' => '3',
01368                 'eval' => 'int',
01369                 'range' => array(
01370                     'upper' => '200',
01371                     'lower' => '0',
01372                 ),
01373                 'default' => 0,
01374             ),
01375         ),
01376         'table_cellpadding' => array(
01377             'exclude' => 1,
01378             'label' => 'LLL:EXT:cms/locallang_ttc.xml:table_cellpadding',
01379             'config' => array(
01380                 'type' => 'input',
01381                 'size' => '3',
01382                 'max' => '3',
01383                 'eval' => 'int',
01384                 'range' => array(
01385                     'upper' => '200',
01386                     'lower' => '0',
01387                 ),
01388                 'default' => 0,
01389             ),
01390         ),
01391         'media' => array(
01392             'label' => 'LLL:EXT:cms/locallang_ttc.xml:media',
01393             'config' => array(
01394                 'type' => 'group',
01395                 'internal_type' => 'file',
01396                 'allowed' => '',    // Must be empty for disallowed to work.
01397                 'disallowed' => PHP_EXTENSIONS_DEFAULT,
01398                 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
01399                 'uploadfolder' => 'uploads/media',
01400                 'show_thumbs' => '1',
01401                 'size' => '3',
01402                 'maxitems' => '10',
01403                 'minitems' => '0',
01404             ),
01405         ),
01406         'multimedia' => array(
01407             'label' => 'LLL:EXT:cms/locallang_ttc.xml:multimedia',
01408             'config' => array(
01409                 'type' => 'group',
01410                 'internal_type' => 'file',
01411                 'allowed' => 'txt,html,htm,class,swf,swa,dcr,wav,avi,au,mov,asf,mpg,wmv,mp3,mp4,m4v',
01412                 'max_size' => $GLOBALS['TYPO3_CONF_VARS']['BE']['maxFileSize'],
01413                 'uploadfolder' => 'uploads/media',
01414                 'size' => '2',
01415                 'maxitems' => '1',
01416                 'minitems' => '0',
01417             ),
01418         ),
01419         'filelink_size' => array(
01420             'label' => 'LLL:EXT:cms/locallang_ttc.xml:filelink_size',
01421             'config' => array(
01422                 'type' => 'check',
01423                 'items' => array (
01424                     '1' => array(
01425                         '0' => 'LLL:EXT:lang/locallang_core.xml:labels.enabled',
01426                     ),
01427                 ),
01428             ),
01429         ),
01430         'records' => array(
01431             'label' => 'LLL:EXT:cms/locallang_ttc.xml:records',
01432             'config' => array(
01433                 'type' => 'group',
01434                 'internal_type' => 'db',
01435                 'allowed' => 'tt_content',
01436                 'size' => '5',
01437                 'maxitems' => '200',
01438                 'minitems' => '0',
01439                 'show_thumbs' => '1',
01440                 'wizards' => array(
01441                     'suggest' => array(
01442                         'type' => 'suggest',
01443                     ),
01444                 ),
01445             ),
01446         ),
01447         'spaceBefore' => array(
01448             'exclude' => 1,
01449             'label' => 'LLL:EXT:cms/locallang_ttc.xml:spaceBefore',
01450             'config' => array(
01451                 'type' => 'input',
01452                 'size' => '5',
01453                 'max' => '5',
01454                 'eval' => 'int',
01455                 'range' => array(
01456                     'lower' => '0',
01457                 ),
01458                 'default' => 0,
01459             ),
01460         ),
01461         'spaceAfter' => array(
01462             'exclude' => 1,
01463             'label' => 'LLL:EXT:cms/locallang_ttc.xml:spaceAfter',
01464             'config' => array(
01465                 'type' => 'input',
01466                 'size' => '5',
01467                 'max' => '5',
01468                 'eval' => 'int',
01469                 'range' => array(
01470                     'lower' => '0',
01471                 ),
01472                 'default' => 0,
01473             ),
01474         ),
01475         'section_frame' => array(
01476             'exclude' => 1,
01477             'label' => 'LLL:EXT:cms/locallang_ttc.xml:section_frame',
01478             'config' => array(
01479                 'type' => 'select',
01480                 'items' => array(
01481                     array(
01482                         '',
01483                         '0',
01484                     ),
01485                     array(
01486                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.1',
01487                         '1',
01488                     ),
01489                     array(
01490                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.2',
01491                         '5',
01492                     ),
01493                     array(
01494                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.3',
01495                         '6',
01496                     ),
01497                     array(
01498                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.4',
01499                         '10',
01500                     ),
01501                     array(
01502                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.5',
01503                         '11',
01504                     ),
01505                     array(
01506                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.6',
01507                         '12',
01508                     ),
01509                     array(
01510                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.7',
01511                         '20',
01512                     ),
01513                     array(
01514                         'LLL:EXT:cms/locallang_ttc.xml:section_frame.I.8',
01515                         '21',
01516                     ),
01517                 ),
01518                 'default' => '0',
01519             ),
01520         ),
01521         'splash_layout' => array(
01522             'exclude' => 1,
01523             'label' => 'LLL:EXT:cms/locallang_ttc.xml:splash_layout',
01524             'config' => array(
01525                 'type' => 'select',
01526                 'items' => array(
01527                     array(
01528                         'LLL:EXT:lang/locallang_general.xml:LGL.default_value',
01529                         '0',
01530                     ),
01531                     array(
01532                         'LLL:EXT:cms/locallang_ttc.xml:splash_layout.I.1',
01533                         '1',
01534                     ),
01535                     array(
01536                         'LLL:EXT:cms/locallang_ttc.xml:splash_layout.I.2',
01537                         '2',
01538                     ),
01539                     array(
01540                         'LLL:EXT:cms/locallang_ttc.xml:splash_layout.I.3',
01541                         '3',
01542                     ),
01543                     array(
01544                         'LLL:EXT:cms/locallang_ttc.xml:splash_layout.I.4',
01545                         '--div--',
01546                     ),
01547                     array(
01548                         'LLL:EXT:cms/locallang_ttc.xml:splash_layout.I.5',
01549                         '20',
01550                     ),
01551                 ),
01552                 'default' => '0',
01553             ),
01554         ),
01555         'sectionIndex' => array(
01556             'exclude' => 1,
01557             'label' => 'LLL:EXT:cms/locallang_ttc.xml:sectionIndex',
01558             'config' => array(
01559                 'type' => 'check',
01560                 'default' => 1,
01561                 'items' => array (
01562                     '1' => array(
01563                         '0' => 'LLL:EXT:lang/locallang_core.xml:labels.enabled',
01564                     ),
01565                 ),
01566             ),
01567         ),
01568         'linkToTop' => array(
01569             'exclude' => 1,
01570             'label' => 'LLL:EXT:cms/locallang_ttc.xml:linkToTop',
01571             'config' => array(
01572                 'type' => 'check',
01573                 'items' => array(
01574                     '1' => array(
01575                         '0' => 'LLL:EXT:lang/locallang_core.xml:labels.enabled',
01576                     ),
01577                 ),
01578         ),
01579         ),
01580         'rte_enabled' => array(
01581             'exclude' => 1,
01582             'label' => 'LLL:EXT:cms/locallang_ttc.xml:rte_enabled',
01583             'config' => array(
01584                 'type' => 'check',
01585                 'showIfRTE' => 1,
01586                 'items' => array(
01587                     '1' => array(
01588                         '0' => 'LLL:EXT:cms/locallang_ttc.xml:rte_enabled.I.0',
01589                     ),
01590                 ),
01591             ),
01592         ),
01593         'pi_flexform' => array(
01594             'l10n_display' => 'hideDiff',
01595             'label' => 'LLL:EXT:cms/locallang_ttc.xml:pi_flexform',
01596             'config' => array(
01597                 'type' => 'flex',
01598                 'ds_pointerField' => 'list_type,CType',
01599                 'ds' => array(
01600                     'default' => '
01601                         <T3DataStructure>
01602                           <ROOT>
01603                             <type>array</type>
01604                             <el>
01605                                 <!-- Repeat an element like "xmlTitle" beneath for as many elements you like. Remember to name them uniquely  -->
01606                               <xmlTitle>
01607                                 <TCEforms>
01608                                     <label>The Title:</label>
01609                                     <config>
01610                                         <type>input</type>
01611                                         <size>48</size>
01612                                     </config>
01613                                 </TCEforms>
01614                               </xmlTitle>
01615                             </el>
01616                           </ROOT>
01617                         </T3DataStructure>
01618                     ',
01619                     ',media' => file_get_contents(t3lib_extMgm::extPath('cms') . 'flexform_media.xml'),
01620                 ),
01621             ),
01622         ),
01623         'tx_impexp_origuid' => array(
01624             'config'=>array(
01625                 'type'=>'passthrough',
01626             ),
01627         ),
01628         'l18n_diffsource' => array(
01629             'config'=>array(
01630                 'type'=>'passthrough',
01631             ),
01632         ),
01633         't3ver_label' => array(
01634             'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.versionLabel',
01635             'config' => array(
01636                 'type' => 'input',
01637                 'size' => '30',
01638                 'max' => '255',
01639             ),
01640         ),
01641     ),
01642     'types' => array(
01643         '1' =>  array(
01644             'showitem' => 'CType',
01645         ),
01646         'header' =>     array(
01647             'showitem' =>
01648                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01649                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.headers;headers,
01650                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01651                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01652                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01653                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01654                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01655                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01656         ),
01657         'text' =>       array(
01658             'showitem' =>
01659                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01660                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01661                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext_formlabel;;richtext:rte_transform[flag=rte_enabled|mode=ts_css],
01662                     rte_enabled;LLL:EXT:cms/locallang_ttc.xml:rte_enabled_formlabel,
01663                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01664                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01665                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01666                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01667                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01668                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.textlayout;textlayout,
01669                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01670         ),
01671         'textpic' =>    array(
01672             'showitem' =>
01673                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01674                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01675                     bodytext;Text;;richtext:rte_transform[flag=rte_enabled|mode=ts_css],
01676                     rte_enabled;LLL:EXT:cms/locallang_ttc.xml:rte_enabled_formlabel,
01677                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.images,
01678                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imagefiles;imagefiles,
01679                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imagelinks;imagelinks,
01680                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.image_accessibility;image_accessibility,
01681                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01682                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01683                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01684                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01685                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01686                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.image_settings;image_settings,
01687                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imageblock;imageblock,
01688                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.textlayout;textlayout,
01689                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01690         ),
01691         'image' =>      array(
01692             'showitem' => '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01693                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01694                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.images,
01695                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imagefiles;imagefiles,
01696                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imagelinks;imagelinks,
01697                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.image_accessibility;image_accessibility,
01698                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01699                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01700                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01701                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01702                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01703                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.image_settings;image_settings,
01704                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.imageblock;imageblock,
01705                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01706         ),
01707         'bullets' =>    array(
01708             'showitem' =>
01709                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01710                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01711                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.bulletlist_formlabel;;nowrap,
01712                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01713                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01714                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01715                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01716                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01717                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.textlayout;textlayout,
01718                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01719         ),
01720         'table' => array(
01721             'showitem' =>
01722                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01723                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01724                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.table_formlabel;;nowrap:wizards[table],
01725                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01726                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01727                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01728                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01729                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01730                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.table_layout;tablelayout,
01731                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.textlayout;textlayout,
01732                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01733         ),
01734         'splash' =>     array(
01735             'showitem' =>
01736                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01737                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01738                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.textbox;textbox,
01739                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01740                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01741                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01742                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01743                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01744                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01745         ),
01746         'uploads' =>    array(
01747             'showitem' =>
01748                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01749                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01750                     --palette--;LLL:EXT:cms/locallang_ttc.xml:media;uploads,
01751                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01752                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01753                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01754                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01755                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01756                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.uploads_layout;uploadslayout,
01757                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01758         ),
01759         'multimedia' => array(
01760             'showitem' => '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01761                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01762                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.media,
01763                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.multimediafiles;multimediafiles,
01764                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01765                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01766                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01767                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01768                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01769                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01770         ),
01771         'media' =>  array(
01772             'showitem' => '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01773                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01774                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.media,
01775                     pi_flexform; ;,
01776                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01777                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01778                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01779                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01780                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01781                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.behaviour,
01782                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.media_formlabel;;richtext:rte_transform[flag=rte_enabled|mode=ts_css],
01783                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01784         ),
01785         'script' =>     array(
01786             'showitem' =>
01787                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01788                     header;LLL:EXT:cms/locallang_ttc.xml:header.ALT.script_formlabel,
01789                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.script,
01790                     select_key;LLL:EXT:cms/locallang_ttc.xml:select_key.ALT.script_formlabel,
01791                     pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.script_formlabel,
01792                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.script_formlabel;;nowrap,
01793                     imagecaption;LLL:EXT:cms/locallang_ttc.xml:imagecaption.ALT.script_formlabel,
01794                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01795                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01796                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01797                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01798                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01799                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01800         ),
01801         'menu' =>       array(
01802             'showitem' =>
01803                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01804                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01805                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.menu;menu,
01806                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01807                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01808                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01809                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01810                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01811                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01812         ),
01813         'mailform' =>   array(
01814             'showitem' =>
01815                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01816                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01817                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.mailform_formlabel;;nowrap:wizards[forms],
01818                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01819                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01820                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01821                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01822                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01823                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.behaviour,
01824                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.mailform;mailform,
01825                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01826         ),
01827         'search' =>     array(
01828             'showitem' =>
01829                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01830                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01831                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01832                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01833                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01834                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01835                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01836                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.behaviour,
01837                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.searchform;searchform,
01838                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01839         ),
01840         'login' =>      array(
01841             'showitem' =>
01842                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01843                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01844                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01845                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01846                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01847                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01848                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01849                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.behaviour,
01850                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.loginform;loginform,
01851                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01852         ),
01853         'shortcut' =>   array(
01854             'showitem' =>
01855                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01856                     header;LLL:EXT:cms/locallang_ttc.xml:header.ALT.shortcut_formlabel,
01857                     records;LLL:EXT:cms/locallang_ttc.xml:records_formlabel,
01858                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01859                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01860                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01861                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01862                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01863                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01864         ),
01865         'list' =>       array(
01866             'showitem' =>
01867                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01868                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.header;header,
01869                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.plugin,
01870                     list_type;LLL:EXT:cms/locallang_ttc.xml:list_type_formlabel,
01871                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01872                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01873                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01874                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01875                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01876                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.behaviour,
01877                     select_key;LLL:EXT:cms/locallang_ttc.xml:select_key_formlabel,
01878                     pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.list_formlabel,
01879                     recursive,
01880                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01881             'subtype_value_field' => 'list_type',
01882             'subtypes_excludelist' => array(
01883 //              '' => 'layout,select_key,pages',    // When no plugin is selected.
01884                 '3' => 'layout',
01885 //              '4' => 'layout',    // List type forum
01886                 '2' => 'layout',
01887                 '5' => 'layout',
01888                 '9' => 'layout',
01889                 '0' => 'layout',
01890                 '6' => 'layout',
01891                 '7' => 'layout',
01892                 '1' => 'layout',
01893                 '8' => 'layout',
01894                 '11' => 'layout',
01895                 '20' => 'layout',
01896                 '21' => 'layout'
01897             ),
01898         ),
01899         'div' =>        array(
01900             'showitem' =>
01901                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01902                     header;LLL:EXT:cms/locallang_ttc.xml:header.ALT.div_formlabel,
01903                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01904                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01905                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01906                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01907                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01908                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01909         ),
01910         'html' =>       array(
01911             'showitem' =>
01912                     '--palette--;LLL:EXT:cms/locallang_ttc.xml:palette.general;general,
01913                     header;LLL:EXT:cms/locallang_ttc.xml:header.ALT.html_formlabel,
01914                     bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.html_formlabel;;nowrap,
01915                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.access,
01916                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.visibility;visibility,
01917                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.access;access,
01918                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.appearance,
01919                     --palette--;LLL:EXT:cms/locallang_ttc.xml:palette.frames;frames,
01920                 --div--;LLL:EXT:cms/locallang_ttc.xml:tabs.extended',
01921         ),
01922     ),
01923 
01924     'palettes' => array(
01925         '1' => array(
01926             'showitem' => 'starttime, endtime',
01927         ),
01928         '2' => array(
01929             'showitem' => 'imagecols, image_noRows, imageborder',
01930         ),
01931         '3' => array(
01932             'showitem' => 'header_position, header_layout, header_link, date',
01933         ),
01934         '4' => array(
01935             'showitem' => 'sys_language_uid, l18n_parent, colPos, spaceBefore, spaceAfter, section_frame, sectionIndex',
01936         ),
01937         '5' => array(
01938             'showitem' => 'imagecaption_position',
01939         ),
01940         '6' => array(
01941             'showitem' => 'imagewidth,image_link',
01942         ),
01943         '7' => array(
01944             'showitem' => 'image_link, image_zoom','canNotCollapse' => 1,
01945         ),
01946         '8' => array(
01947             'showitem' => 'layout',
01948         ),
01949         '9' => array(
01950             'showitem' => 'text_align,text_face,text_size,text_color',
01951         ),
01952         '10' => array(
01953             'showitem' => 'table_bgColor, table_border, table_cellspacing, table_cellpadding',
01954         ),
01955         '11' => array(
01956             'showitem' => 'image_compression, image_effects, image_frames','canNotCollapse' => 1,
01957         ),
01958         '12' => array(
01959             'showitem' => 'recursive',
01960         ),
01961         '13' => array(
01962             'showitem' => 'imagewidth, imageheight','canNotCollapse' => 1,
01963         ),
01964         '14' => array(
01965             'showitem' => 'sys_language_uid, l18n_parent, colPos',
01966         ),
01967         'general' => array(
01968             'showitem' => 'CType;LLL:EXT:cms/locallang_ttc.xml:CType_formlabel, colPos;LLL:EXT:cms/locallang_ttc.xml:colPos_formlabel, sys_language_uid;LLL:EXT:cms/locallang_ttc.xml:sys_language_uid_formlabel',
01969             'canNotCollapse' => 1,
01970         ),
01971         'header' => array(
01972             'showitem' => 'header;LLL:EXT:cms/locallang_ttc.xml:header_formlabel, --linebreak--, header_layout;LLL:EXT:cms/locallang_ttc.xml:header_layout_formlabel, header_position;LLL:EXT:cms/locallang_ttc.xml:header_position_formlabel, date;LLL:EXT:cms/locallang_ttc.xml:date_formlabel, --linebreak--, header_link;LLL:EXT:cms/locallang_ttc.xml:header_link_formlabel',
01973             'canNotCollapse' => 1,
01974         ),
01975         'headers' => array(
01976             'showitem' => 'header;LLL:EXT:cms/locallang_ttc.xml:header_formlabel, --linebreak--, header_layout;LLL:EXT:cms/locallang_ttc.xml:header_layout_formlabel, header_position;LLL:EXT:cms/locallang_ttc.xml:header_position_formlabel, date;LLL:EXT:cms/locallang_ttc.xml:date_formlabel, --linebreak--, header_link;LLL:EXT:cms/locallang_ttc.xml:header_link_formlabel, --linebreak--, subheader;LLL:EXT:cms/locallang_ttc.xml:subheader_formlabel',
01977             'canNotCollapse' => 1,
01978         ),
01979         'imagefiles' => array(
01980             'showitem' => 'image;LLL:EXT:cms/locallang_ttc.xml:image_formlabel, imagecaption;LLL:EXT:cms/locallang_ttc.xml:imagecaption_formlabel',
01981             'canNotCollapse' => 1,
01982         ),
01983         'multimediafiles' => array(
01984             'showitem' => 'multimedia;LLL:EXT:cms/locallang_ttc.xml:multimedia_formlabel, bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.multimedia_formlabel;;nowrap',
01985             'canNotCollapse' => 1,
01986         ),
01987         'textbox' => array(
01988             'showitem' => 'splash_layout;LLL:EXT:cms/locallang_ttc.xml:splash_layout_formlabel, image;LLL:EXT:cms/locallang_ttc.xml:image.ALT.textbox_formlabel, --linebreak--, bodytext;LLL:EXT:cms/locallang_ttc.xml:bodytext.ALT.textbox_formlabel',
01989             'canNotCollapse' => 1,
01990         ),
01991         'imagelinks' => array(
01992             'showitem' => 'image_zoom;LLL:EXT:cms/locallang_ttc.xml:image_zoom_formlabel, image_link;LLL:EXT:cms/locallang_ttc.xml:image_link_formlabel',
01993             'canNotCollapse' => 1,
01994         ),
01995         'image_accessibility' => array(
01996             'showitem' => 'altText;LLL:EXT:cms/locallang_ttc.xml:altText_formlabel, titleText;LLL:EXT:cms/locallang_ttc.xml:titleText_formlabel, --linebreak--, longdescURL;LLL:EXT:cms/locallang_ttc.xml:longdescURL_formlabel',
01997             'canNotCollapse' => 1,
01998         ),
01999         'image_settings' => array(
02000             'showitem' => 'imagewidth;LLL:EXT:cms/locallang_ttc.xml:imagewidth_formlabel, imageheight;LLL:EXT:cms/locallang_ttc.xml:imageheight_formlabel, imageborder;LLL:EXT:cms/locallang_ttc.xml:imageborder_formlabel, --linebreak--, image_compression;LLL:EXT:cms/locallang_ttc.xml:image_compression_formlabel, image_effects;LLL:EXT:cms/locallang_ttc.xml:image_effects_formlabel, image_frames;LLL:EXT:cms/locallang_ttc.xml:image_frames_formlabel',
02001             'canNotCollapse' => 1,
02002         ),
02003         'imageblock' => array(
02004             'showitem' => 'imageorient;LLL:EXT:cms/locallang_ttc.xml:imageorient_formlabel, imagecols;LLL:EXT:cms/locallang_ttc.xml:imagecols_formlabel, --linebreak--, image_noRows;LLL:EXT:cms/locallang_ttc.xml:image_noRows_formlabel, imagecaption_position;LLL:EXT:cms/locallang_ttc.xml:imagecaption_position_formlabel',
02005             'canNotCollapse' => 1,
02006         ),
02007         'uploads' => array(
02008             'showitem' => 'select_key;LLL:EXT:cms/locallang_ttc.xml:select_key.ALT.uploads_formlabel, --linebreak--, media;LLL:EXT:cms/locallang_ttc.xml:media.ALT.uploads_formlabel, imagecaption;LLL:EXT:cms/locallang_ttc.xml:imagecaption.ALT.uploads_formlabel;;nowrap',
02009             'canNotCollapse' => 1,
02010         ),
02011         'mailform' => array(
02012             'showitem' => 'pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.mailform, --linebreak--, subheader;LLL:EXT:cms/locallang_ttc.xml:subheader.ALT.mailform_formlabel',
02013             'canNotCollapse' => 1,
02014         ),
02015         'searchform' => array(
02016             'showitem' => 'pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.searchform',
02017             'canNotCollapse' => 1,
02018         ),
02019         'loginform' => array(
02020             'showitem' => 'pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.loginform',
02021             'canNotCollapse' => 1,
02022         ),
02023         'menu' => array(
02024             'showitem' => 'menu_type;LLL:EXT:cms/locallang_ttc.xml:menu_type_formlabel, --linebreak--, pages;LLL:EXT:cms/locallang_ttc.xml:pages.ALT.menu_formlabel',
02025             'canNotCollapse' => 1,
02026         ),
02027         'visibility' => array(
02028             'showitem' => 'hidden;LLL:EXT:cms/locallang_ttc.xml:hidden_formlabel, sectionIndex;LLL:EXT:cms/locallang_ttc.xml:sectionIndex_formlabel, linkToTop;LLL:EXT:cms/locallang_ttc.xml:linkToTop_formlabel',
02029             'canNotCollapse' => 1,
02030         ),
02031         'access' => array(
02032             'showitem' => 'starttime;LLL:EXT:cms/locallang_ttc.xml:starttime_formlabel, endtime;LLL:EXT:cms/locallang_ttc.xml:endtime_formlabel, --linebreak--, fe_group;LLL:EXT:cms/locallang_ttc.xml:fe_group_formlabel',
02033             'canNotCollapse' => 1,
02034         ),
02035         'frames' => array (
02036             'showitem' => 'layout;LLL:EXT:cms/locallang_ttc.xml:layout_formlabel, spaceBefore;LLL:EXT:cms/locallang_ttc.xml:spaceBefore_formlabel, spaceAfter;LLL:EXT:cms/locallang_ttc.xml:spaceAfter_formlabel, section_frame;LLL:EXT:cms/locallang_ttc.xml:section_frame_formlabel',
02037             'canNotCollapse' => 1,
02038         ),
02039         'textlayout' => array (
02040             'showitem' => 'text_align;LLL:EXT:cms/locallang_ttc.xml:text_align_formlabel, text_face;LLL:EXT:cms/locallang_ttc.xml:text_face_formlabel, text_size;LLL:EXT:cms/locallang_ttc.xml:text_size_formlabel, text_color;LLL:EXT:cms/locallang_ttc.xml:text_color_formlabel, --linebreak--, text_properties;LLL:EXT:cms/locallang_ttc.xml:text_properties_formlabel',
02041             'canNotCollapse' => 1,
02042         ),
02043         'tablelayout' => array (
02044             'showitem' => 'table_bgColor;LLL:EXT:cms/locallang_ttc.xml:table_bgColor_formlabel, table_border;LLL:EXT:cms/locallang_ttc.xml:table_border_formlabel, table_cellspacing;LLL:EXT:cms/locallang_ttc.xml:table_cellspacing_formlabel, table_cellpadding;LLL:EXT:cms/locallang_ttc.xml:table_cellpadding_formlabel',
02045             'canNotCollapse' => 1,
02046         ),
02047         'uploadslayout' => array (
02048             'showitem' => 'filelink_size;LLL:EXT:cms/locallang_ttc.xml:filelink_size_formlabel',
02049             'canNotCollapse' => 1,
02050         ),
02051     ),
02052 );
02053 
02054 
02055 ?>