2 /***************************************************************
5 * (c) 1999-2009 Kasper Skaarhoj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Contains the initialization of global TYPO3 variables among which $TCA is the most significant.
30 * The list in order of apperance is: $PAGES_TYPES, $ICON_TYPES, $LANG_GENERAL_LABELS, $TCA, $TBE_MODULES, $TBE_STYLES, $FILEICONS
31 * These variables are first of all used in the backend but to some degree in the frontend as well. (See references)
32 * See the document "Inside TYPO3" for a description of each variable in addition to the comment associated with each.
34 * This file is included from "typo3/init.php" (backend) and "index_ts.php" (frontend) as the first file of a three-fold inclusion session (see references):
35 * 1) First this script is included (unless the constant "TYPO3_tables_script" instructs another filename to substitute it, see t3lib/config_default.php); This should initialize the variables shown above.
36 * 2) Then either the "typo3conf/temp_CACHED_??????_ext_tables.php" cache file OR "stddb/load_ext_tables.php" is included in order to let extensions add/modify these variables as they desire.
37 * 3) Finally if the constant "TYPO3_extTableDef_script" defines a file name from typo3conf/ it is included, also for overriding values (the old-school way before extensions came in). See config_default.php
39 * Configuration in this file should NOT be edited directly. If you would like to alter
40 * or extend this information, please make an extension which does so.
41 * Thus you preserve backwards compatibility.
45 * Revised for TYPO3 3.6 July/2003 by Kasper Skaarhoj
47 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
48 * @see tslib_fe::includeTCA(), typo3/init.php, t3lib/stddb/load_ext_tables.php
49 * @link http://typo3.org/doc.0.html?&tx_extrepmgm_pi1[extUid]=262&cHash=4f12caa011
54 * $PAGES_TYPES defines the various types of pages (field: doktype) the system can handle and what restrictions may apply to them.
55 * Here you can set the icon and especially you can define which tables are allowed on a certain pagetype (doktype)
56 * NOTE: The 'default' entry in the $PAGES_TYPES-array is the 'base' for all types, and for every type the entries simply overrides the entries in the 'default' type!
59 '254' => array( // Doktype 254 is a 'sysFolder' - a general purpose storage folder for whatever you like. In CMS context it's NOT a viewable page. Can contain any element.
62 'allowedTables' => '*'
64 '255' => array( // Doktype 255 is a recycle-bin.
66 'icon' => 'recycler.gif',
67 'allowedTables' => '*'
71 'icon' => 'pages.gif',
72 'allowedTables' => 'pages',
73 'onlyAllowedTables' => '0'
79 * With $ICON_TYPES you can assign alternative icons to pages records based on another field than 'doktype'
80 * Each key is a value from the "module" field of page records and the value is an array with a key/value pair, eg. "icon" => "modules_shop.gif"
82 * @see t3lib_iconWorks::getIcon(), typo3/sysext/cms/ext_tables.php
84 $ICON_TYPES = array();
88 * Commonly used language labels which can be used in the $TCA array and elsewhere.
89 * Obsolete - just use the values of each entry directly.
90 * @todo turn into an object with magic getters and setter so we can make use of the deprecation logging
91 * @deprecated since TYPO3 3.6
93 $LANG_GENERAL_LABELS = array(
94 'endtime' => 'LLL:EXT:lang/locallang_general.php:LGL.endtime',
95 'hidden' => 'LLL:EXT:lang/locallang_general.php:LGL.hidden',
96 'starttime' => 'LLL:EXT:lang/locallang_general.php:LGL.starttime',
97 'fe_group' => 'LLL:EXT:lang/locallang_general.php:LGL.fe_group',
98 'hide_at_login' => 'LLL:EXT:lang/locallang_general.php:LGL.hide_at_login',
99 'any_login' => 'LLL:EXT:lang/locallang_general.php:LGL.any_login',
100 'usergroups' => 'LLL:EXT:lang/locallang_general.php:LGL.usergroups',
116 * This array configures TYPO3 to work with the tables from the database by assigning meta information about data types, relations etc.
117 * The global variable $TCA will contain the information needed to recognize and render each table in the backend
118 * See documentation 'Inside TYPO3' for the syntax and list of required tables/fields!
120 * The tables configured in this document (and backed up by "tbl_be.php") is the required minimum set of tables/field that any TYPO3 system MUST have. These tables are therefore a part of the TYPO3 core.
121 * The SQL definitions of these tables (and some more which are not defined in $TCA) is found in the file "tables.sql"
122 * Only the "pages" table is defined fully in this file - the others are only defined for the "ctrl" part and the columns are defined in detail in the associated file, "tbl_be.php"
124 * NOTE: The (default) icon for a table is defined 1) as a giffile named 'gfx/i/[tablename].gif' or 2) as the value of [table][ctrl][iconfile]
125 * NOTE: [table][ctrl][rootLevel] goes NOT for pages. Apart from that if rootLevel is true, records can ONLY be created on rootLevel. If it's false records can ONLY be created OUTSIDE rootLevel
131 * The mandatory pages table. The backbone of the TYPO3 page tree structure.
132 * All other records configured in $TCA must have a field, "pid", which relates the record to a page record's "uid" field.
133 * Must be COMPLETELY configured in tables.php
135 $TCA['pages'] = array(
138 'tstamp' => 'tstamp',
139 'sortby' => 'sorting',
140 'title' => 'LLL:EXT:lang/locallang_tca.php:pages',
143 'origUid' => 't3_origuid',
144 'delete' => 'deleted',
145 'crdate' => 'crdate',
147 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
148 'cruser_id' => 'cruser_id',
149 'editlock' => 'editlock',
150 'useColumnsForDefaultValues' => 'doktype',
151 'typeicon_column' => 'doktype',
152 'typeicon_classes' => array(
153 '1' => 'apps-pagetree-page-default',
154 '1-hideinmenu' => 'apps-pagetree-page-not-in-menu',
155 '1-root' => 'apps-pagetree-page-domain',
156 '3' => 'apps-pagetree-page-shortcut-external',
157 '3-hideinmenu' => 'apps-pagetree-page-shortcut-external-hideinmenu',
158 '3-root' => 'apps-pagetree-page-shortcut-external-root',
159 '4' => 'apps-pagetree-page-shortcut',
160 '4-hideinmenu' => 'apps-pagetree-page-shortcut-hideinmenu',
161 '4-root' => 'apps-pagetree-page-shortcut-root',
162 '6' => 'apps-pagetree-page-backend-users',
163 '6-hideinmenu' => 'apps-pagetree-page-backend-users-hideinmenu',
164 '6-root' => 'apps-pagetree-page-backend-users-root',
165 '7' => 'apps-pagetree-page-mountpoint',
166 '7-hideinmenu' => 'apps-pagetree-page-mountpoint-hideinmenu',
167 '7-root' => 'apps-pagetree-page-mountpoint-root',
168 '199' => 'apps-pagetree-spacer',
169 '199-hideinmenu' => 'apps-pagetree-spacer-hideinmenu',
170 '254' => 'apps-pagetree-folder-default',
171 '254-hideinmenu' => 'apps-pagetree-folder-default-hideinmenu',
172 '255' => 'apps-pagetree-page-recycler',
173 'default' => 'apps-pagetree-page-default',
176 'typeicons' => array(
179 '255' => 'recycler.gif',
182 'interface' => array(
183 'showRecordFieldList' => 'doktype,title',
184 'maxDBListItems' => 30,
185 'maxSingleDBListItems' => 50
190 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.type',
194 array('LLL:EXT:lang/locallang_tca.php:doktype.I.0', '1', 'i/pages.gif'),
195 array('LLL:EXT:lang/locallang_tca.php:doktype.I.1', '254', 'i/sysf.gif'),
196 array('LLL:EXT:lang/locallang_tca.php:doktype.I.2', '255', 'i/recycler.gif')
199 'iconsInOptionTags' => 1,
200 'noIconsBelowSelect' => 1,
204 'label' => 'LLL:EXT:lang/locallang_tca.php:title',
214 'label' => 'TSconfig:',
222 'type' => t3lib_extMgm
::isLoaded('tsconfig_help')?
'popup':'',
223 'title' => 'TSconfig QuickReference',
224 'script' => 'wizard_tsconfig.php?mode=page',
225 'icon' => 'wizard_tsconfig.gif',
226 'JSopenParams' => 'height=500,width=780,status=0,menubar=0,scrollbars=1',
229 'softref' => 'TSconfig'
231 'defaultExtras' => 'fixed-font : enable-tab',
233 'php_tree_stop' => array(
235 'label' => 'LLL:EXT:lang/locallang_tca.php:php_tree_stop',
240 'is_siteroot' => array(
242 'label' => 'LLL:EXT:lang/locallang_tca.php:is_siteroot',
247 'storage_pid' => array(
249 'label' => 'LLL:EXT:lang/locallang_tca.php:storage_pid',
252 'internal_type' => 'db',
253 'allowed' => 'pages',
257 'show_thumbs' => '1',
265 'tx_impexp_origuid' => array('config'=>array('type'=>'passthrough')),
266 't3ver_label' => array(
267 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.versionLabel',
276 'label' => 'LLL:EXT:lang/locallang_tca.php:editlock',
283 '1' => array('showitem' => 'doktype, title, TSconfig;;6;nowrap, storage_pid;;7'),
284 '254' => array('showitem' => 'doktype, title;LLL:EXT:lang/locallang_general.php:LGL.title, TSconfig;;6;nowrap, storage_pid;;7'),
285 '255' => array('showitem' => 'doktype, title, TSconfig;;6;nowrap, storage_pid;;7')
288 '6' => array('showitem' => 'php_tree_stop, editlock'),
289 '7' => array('showitem' => 'is_siteroot')
295 * Backend Users for TYPO3.
296 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
298 $TCA['be_users'] = array(
300 'label' => 'username',
301 'tstamp' => 'tstamp',
302 'title' => 'LLL:EXT:lang/locallang_tca.php:be_users',
303 'crdate' => 'crdate',
304 'cruser_id' => 'cruser_id',
305 'delete' => 'deleted',
306 'adminOnly' => 1, // Only admin users can edit
308 'default_sortby' => 'ORDER BY admin, username',
309 'enablecolumns' => array(
310 'disabled' => 'disable',
311 'starttime' => 'starttime',
312 'endtime' => 'endtime'
315 'typeicon_column' => 'admin',
316 'typeicons' => array(
317 '0' => 'be_users.gif',
318 '1' => 'be_users_admin.gif'
320 'typeicon_classes' => array(
321 '0' => 'status-user-backend',
322 '1' => 'status-user-admin',
323 'default' => 'status-user-backend',
325 'mainpalette' => '1',
326 'useColumnsForDefaultValues' => 'usergroup,lockToDomain,options,db_mountpoints,file_mountpoints,fileoper_perms,userMods',
327 'dividers2tabs' => true,
328 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
329 'versioningWS_alwaysAllowLiveEdit' => TRUE
335 * Backend Usergroups for TYPO3.
336 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
338 $TCA['be_groups'] = array(
341 'tstamp' => 'tstamp',
342 'crdate' => 'crdate',
343 'cruser_id' => 'cruser_id',
344 'delete' => 'deleted',
345 'default_sortby' => 'ORDER BY title',
346 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
349 'type' => 'inc_access_lists',
350 'typeicon_column' => 'inc_access_lists',
351 'typeicons' => array(
352 '1' => 'be_groups_lists.gif'
354 'typeicon_classes' => array(
355 'default' => 'status-user-group-backend',
357 'enablecolumns' => array(
358 'disabled' => 'hidden'
360 'title' => 'LLL:EXT:lang/locallang_tca.php:be_groups',
361 'useColumnsForDefaultValues' => 'lockToDomain, fileoper_perms',
362 'dividers2tabs' => true,
363 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
364 'versioningWS_alwaysAllowLiveEdit' => TRUE
369 * Table "sys_filemounts":
370 * Defines filepaths on the server which can be mounted for users so they can upload and manage files online by eg. the Filelist module
371 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
373 $TCA['sys_filemounts'] = array(
376 'tstamp' => 'tstamp',
377 'sortby' => 'sorting',
378 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
379 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_filemounts',
382 'delete' => 'deleted',
383 'enablecolumns' => array(
384 'disabled' => 'hidden'
386 'iconfile' => '_icon_ftp.gif',
387 'useColumnsForDefaultValues' => 'path,base',
388 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
389 'versioningWS_alwaysAllowLiveEdit' => TRUE
395 * Table "sys_languages":
396 * Defines possible languages used for translation of records in the system
397 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
399 $TCA['sys_language'] = array(
402 'tstamp' => 'tstamp',
403 'default_sortby' => 'ORDER BY title',
404 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_language',
407 'enablecolumns' => array(
408 'disabled' => 'hidden'
410 'typeicon_classes' => array(
411 'default' => 'mimetypes-x-content-language',
413 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
414 'versioningWS_alwaysAllowLiveEdit' => TRUE
430 * $TBE_MODULES contains the structure of the backend modules as they are arranged in main- and sub-modules.
431 * Every entry in this array represents a menu item on either first (key) or second level (value from list) in the left menu in the TYPO3 backend
432 * For information about adding modules to TYPO3 you should consult the documentation found in "Inside TYPO3"
434 $TBE_MODULES = array(
435 'web' => 'list,info,perm,func',
439 'help' => 'about,cshmanual'
444 * $TBE_STYLES configures backend styles and colors; Basically this contains all the values that can be used to create new skins for TYPO3.
445 * For information about making skins to TYPO3 you should consult the documentation found in "Inside TYPO3"
448 'colorschemes' => array(
449 '0' => '#E4E0DB,#CBC7C3,#EDE9E5',
451 'borderschemes' => array(
452 '0' => array('border:solid 1px black;',5)
458 * Setting up $TCA_DESCR - Context Sensitive Help (CSH)
459 * For information about using the CSH API in TYPO3 you should consult the documentation found in "Inside TYPO3"
461 t3lib_extMgm
::addLLrefForTCAdescr('pages','EXT:lang/locallang_csh_pages.xml');
462 t3lib_extMgm
::addLLrefForTCAdescr('be_users','EXT:lang/locallang_csh_be_users.xml');
463 t3lib_extMgm
::addLLrefForTCAdescr('be_groups','EXT:lang/locallang_csh_be_groups.xml');
464 t3lib_extMgm
::addLLrefForTCAdescr('sys_filemounts','EXT:lang/locallang_csh_sysfilem.xml');
465 t3lib_extMgm
::addLLrefForTCAdescr('sys_language','EXT:lang/locallang_csh_syslang.xml');
466 t3lib_extMgm
::addLLrefForTCAdescr('sys_workspace','EXT:lang/locallang_csh_sysws.xml');
467 t3lib_extMgm
::addLLrefForTCAdescr('xMOD_csh_corebe','EXT:lang/locallang_csh_corebe.xml'); // General Core
468 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_tools_em','EXT:lang/locallang_csh_em.xml'); // Extension manager
469 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_info','EXT:lang/locallang_csh_web_info.xml'); // Web > Info
470 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_func','EXT:lang/locallang_csh_web_func.xml'); // Web > Func
474 * $FILEICONS defines icons for the various file-formats
484 'html' => 'html.gif',
490 'mpeg' => 'mpeg.gif',
496 'php3' => 'php3.gif',
497 'php4' => 'php3.gif',
498 'php5' => 'php3.gif',
499 'php6' => 'php3.gif',
506 'class' => 'java.gif',
511 'swa' => 'flash.gif',
512 'dcr' => 'flash.gif',
523 'tmpl' => 'tmpl.gif',
535 'sgml' => 'sgml.gif',
541 'default' => 'default.gif'
545 * backend sprite icon-names
547 $GLOBALS['TBE_STYLES']['spriteIconApi']['coreSpriteImageName'] = array(
550 'actions-move-to-bottom',
551 'actions-document-move',
552 'actions-system-list-open',
553 'actions-document-export-t3d',
554 'actions-version-swap-workspace',
556 'actions-view-go-forward',
557 'actions-view-paging-next',
558 'actions-system-cache-clear-impact-low',
559 'actions-document-close',
560 'actions-system-shortcut-new',
561 'actions-version-page-open',
563 'actions-insert-record',
564 'actions-selection-delete',
565 'actions-system-extension-uninstall',
567 'actions-view-go-back',
568 'actions-system-tree-search-open',
569 'actions-document-save-view',
570 'actions-system-extension-update',
571 'actions-system-backend-user-emulate',
572 'actions-system-cache-clear-impact-high',
573 'actions-view-paging-first-disabled',
574 'actions-document-save-new',
575 'actions-edit-unhide',
576 'actions-document-new',
578 'actions-document-save-close',
579 'actions-document-import-t3d',
580 'actions-edit-localize-status-high',
582 'actions-edit-upload',
583 'actions-document-info',
584 'actions-system-cache-clear',
585 'actions-edit-rename',
587 'actions-view-paging-previous',
588 'actions-version-document-remove',
589 'actions-system-help-open',
590 'actions-view-paging-last-disabled',
592 'actions-insert-reference',
593 'actions-edit-undelete-edit',
594 'actions-document-duplicates-select',
595 'actions-system-extension-install',
596 'actions-document-save',
597 'actions-edit-restore',
598 'actions-system-backend-user-switch',
599 'actions-document-paste-after',
600 'actions-system-typoscript-documentation',
601 'actions-document-open-read-only',
602 'actions-system-typoscript-documentation-open',
603 'actions-edit-pick-date',
604 'actions-view-paging-previous-disabled',
605 'actions-edit-cut-release',
606 'actions-system-extension-import',
607 'actions-view-go-down',
608 'actions-document-edit-access',
610 'actions-document-open',
611 'actions-view-list-expand',
612 'actions-view-paging-first',
613 'actions-document-localize',
614 'actions-view-table-expand',
615 'actions-system-refresh',
616 'actions-system-extension-documentation',
617 'actions-system-cache-clear-rte',
619 'actions-view-paging-next-disabled',
620 'actions-view-paging-last',
621 'actions-document-paste-into',
622 'actions-document-history-open',
623 'actions-view-table-collapse',
624 'actions-document-export-csv',
625 'actions-document-select',
626 'actions-version-swap-version',
627 'actions-move-to-top',
628 'actions-view-list-collapse',
629 'actions-edit-copy-release',
630 'actions-template-new',
631 'actions-system-extension-download',
632 'actions-system-cache-clear-impact-medium',
633 'actions-view-go-up',
635 'actions-document-view',
636 'actions-edit-localize-status-low',
637 'actions-system-options-view',
638 'actions-edit-delete',
639 'actions-move-right',
640 'actions-window-open',
641 'apps-filetree-root',
642 'apps-pagetree-page-frontend-users',
643 'apps-toolbar-menu-opendocs',
644 'apps-pagetree-page-recycler',
645 'apps-filetree-folder-temp',
646 'apps-pagetree-page-advanced-hideinmenu',
647 'apps-pagetree-page-shortcut-hideinmenu',
648 'apps-pagetree-backend-user',
649 'apps-pagetree-page-frontend-user-hideinmenu',
650 'apps-pagetree-page-default',
651 'apps-pagetree-drag-place-denied',
652 'apps-filetree-folder-user',
653 'apps-pagetree-page-shortcut-external-hideinmenu',
654 'apps-pagetree-page-shortcut-root',
655 'apps-pagetree-drag-new-inside',
656 'apps-pagetree-drag-move-into',
657 'apps-pagetree-page-backend-users-root',
658 'apps-filetree-folder-add',
659 'apps-pagetree-page-domain',
660 'apps-toolbar-menu-workspace',
661 'apps-pagetree-drag-new-between',
662 'apps-pagetree-page-shortcut-external',
663 'apps-pagetree-drag-move-between',
664 'apps-pagetree-page-backend-users',
665 'apps-filetree-folder-locked',
666 'apps-pagetree-backend-user-hideinmenu',
667 'apps-pagetree-page-mountpoint',
668 'apps-pagetree-root',
669 'apps-pagetree-page-frontend-user',
670 'apps-pagetree-page-shortcut-external-root',
671 'apps-pagetree-page-advanced',
672 'apps-toolbar-menu-cache',
673 'apps-pagetree-page-frontend-users-hideinmenu',
674 'apps-pagetree-page-frontend-users-root',
675 'apps-pagetree-page-frontend-user-root',
676 'apps-filetree-mount',
677 'apps-toolbar-menu-shortcut',
678 'apps-pagetree-page-no-icon-found-hideinmenu',
679 'apps-filetree-folder-default',
680 'apps-pagetree-page-shortcut',
681 'apps-clipboard-images',
682 'apps-pagetree-page-no-icon-found',
683 'apps-filetree-folder-media',
684 'apps-pagetree-spacer',
685 'apps-pagetree-page-mountpoint-root',
686 'apps-pagetree-page-advanced-root',
687 'apps-pagetree-page-mountpoint-hideinmenu',
688 'apps-pagetree-page-backend-users-hideinmenu',
689 'apps-pagetree-folder-default',
690 'apps-pagetree-page-not-in-menu',
691 'apps-toolbar-menu-search',
692 'apps-clipboard-list',
693 'apps-filetree-folder-news',
694 'apps-pagetree-page-no-icon-found-root',
695 'apps-filetree-folder-list',
696 'mimetypes-x-content-link',
697 'mimetypes-text-css',
698 'mimetypes-media-video',
699 'mimetypes-x-content-script',
700 'mimetypes-x-content-plugin',
701 'mimetypes-x-content-template-extension',
702 'mimetypes-x-content-page-language-overlay',
703 'mimetypes-media-audio',
704 'mimetypes-other-other',
706 'mimetypes-x-content-divider',
707 'mimetypes-powerpoint',
708 'mimetypes-x-content-table',
709 'mimetypes-x-content-text-picture',
710 'mimetypes-x-sys_workspace',
711 'mimetypes-x-content-login',
712 'mimetypes-x-content-header',
713 'mimetypes-x-content-form-search',
715 'mimetypes-x-content-template',
716 'mimetypes-x-content-multimedia',
717 'mimetypes-text-csv',
718 'mimetypes-x-content-list-files',
719 'mimetypes-x-content-text',
720 'mimetypes-text-text',
721 'mimetypes-text-php',
722 'mimetypes-x-content-list-bullets',
723 'mimetypes-media-image',
724 'mimetypes-x-content-form',
725 'mimetypes-x-content-image',
726 'mimetypes-x-content-menu',
727 'mimetypes-compressed',
728 'mimetypes-x-content-domain',
729 'mimetypes-x-content-html',
730 'mimetypes-text-html',
731 'mimetypes-media-flash',
732 'mimetypes-x-content-template-static',
734 'places-folder-closed',
735 'places-folder-opened',
741 'status-overlay-deleted',
743 'status-overlay-includes-subpages',
749 'status-status-checked',
751 'status-dialog-error',
754 'status-version-no-version',
755 'status-user-group-backend',
756 'status-status-edit-read-only',
758 'status-user-group-frontend',
759 'status-status-permission-granted',
760 'status-warning-lock',
762 'status-overlay-hidden',
767 'status-overlay-icon-missing',
769 'status-dialog-information',
771 'status-user-frontend',
774 'status-status-icon-missing',
778 'status-user-backend',
782 'status-system-extension-required',
783 'status-overlay-scheduled',
785 'status-status-reference-soft',
786 'status-status-reference-hard',
792 'status-overlay-locked',
798 'status-status-locked',
799 'status-warning-in-use',
800 'status-status-workspace-draft',
802 'status-overlay-scheduled-future-end',
808 'status-dialog-notification',
810 'status-status-current',
812 'status-overlay-translated',
815 'status-dialog-warning',
816 'status-status-permission-denied',
817 'status-overlay-access-restricted',
822 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities'] = array('hidden', 'starttime', 'endtime', 'futureendtime', 'fe_group', 'protectedSection');
823 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames'] = array(
824 'hidden' => 'status-overlay-hidden',
825 'fe_group' => 'status-overlay-access-restricted',
826 'starttime' => 'status-overlay-scheduled',
827 'endtime' => 'status-overlay-scheduled',
828 'futureendtime' => 'status-overlay-scheduled-future-end',
829 'readonly' => 'status-overlay-locked',
830 'deleted' => 'status-overlay-deleted',
831 'missing' => 'status-overlay-missing',
832 'translated' => 'status-overlay-translated',
833 'protectedSection' => 'status-overlay-includes-subpages',