2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (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, $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 Skårhøj
47 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
48 * @see tslib_fe::includeTCA(), typo3/init.php, t3lib/stddb/load_ext_tables.php
53 * $PAGES_TYPES defines the various types of pages (field: doktype) the system can handle and what restrictions may apply to them.
54 * Here you can set the icon and especially you can define which tables are allowed on a certain pagetype (doktype)
55 * 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!
57 * NOTE: usage of 'icon' is deprecated since TYPO3 4.4, use t3lib_SpriteManager::addTcaTypeIcon() instead
60 (string) t3lib_pageSelect
::DOKTYPE_LINK
=> array(
62 (string) t3lib_pageSelect
::DOKTYPE_SHORTCUT
=> array(
64 (string) t3lib_pageSelect
::DOKTYPE_HIDE_IN_MENU
=> array(
66 (string) t3lib_pageSelect
::DOKTYPE_BE_USER_SECTION
=> array(
68 'allowedTables' => '*'
70 (string) t3lib_pageSelect
::DOKTYPE_MOUNTPOINT
=> array(
72 (string) t3lib_pageSelect
::DOKTYPE_SPACER
=> array( // TypoScript: Limit is 200. When the doktype is 200 or above, the page WILL NOT be regarded as a 'page' by TypoScript. Rather is it a system-type page
75 (string) t3lib_pageSelect
::DOKTYPE_SYSFOLDER
=> array( // Doktype 254 is a 'Folder' - a general purpose storage folder for whatever you like. In CMS context it's NOT a viewable page. Can contain any element.
77 'allowedTables' => '*'
79 (string) t3lib_pageSelect
::DOKTYPE_RECYCLER
=> array( // Doktype 255 is a recycle-bin.
81 'allowedTables' => '*'
85 'allowedTables' => 'pages',
86 'onlyAllowedTables' => '0'
92 * With $ICON_TYPES you can assign alternative icons to pages records based on another field than 'doktype'
93 * 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"
95 * @see t3lib_iconWorks::getIcon(), typo3/sysext/cms/ext_tables.php
96 * @deprecated since TYPO3 4.4, use t3lib_SpriteManager::addTcaTypeIcon instead
98 $ICON_TYPES = array();
103 * This array configures TYPO3 to work with the tables from the database by assigning meta information about data types, relations etc.
104 * The global variable $TCA will contain the information needed to recognize and render each table in the backend
105 * See documentation 'Inside TYPO3' for the syntax and list of required tables/fields!
107 * 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.
108 * The SQL definitions of these tables (and some more which are not defined in $TCA) is found in the file "tables.sql"
109 * 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"
111 * 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]
112 * 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
118 * The mandatory pages table. The backbone of the TYPO3 page tree structure.
119 * All other records configured in $TCA must have a field, "pid", which relates the record to a page record's "uid" field.
120 * Must be COMPLETELY configured in tables.php
122 $TCA['pages'] = array(
125 'tstamp' => 'tstamp',
126 'sortby' => 'sorting',
127 'title' => 'LLL:EXT:lang/locallang_tca.php:pages',
130 'origUid' => 't3_origuid',
131 'delete' => 'deleted',
132 'crdate' => 'crdate',
134 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
135 'cruser_id' => 'cruser_id',
136 'editlock' => 'editlock',
137 'useColumnsForDefaultValues' => 'doktype,fe_group,hidden',
138 'dividers2tabs' => 1,
139 'enablecolumns' => array(
140 'disabled' => 'hidden',
141 'starttime' => 'starttime',
142 'endtime' => 'endtime',
143 'fe_group' => 'fe_group',
145 'transForeignTable' => 'pages_language_overlay',
146 'typeicon_column' => 'doktype',
147 'typeicon_classes' => array(
148 '1' => 'apps-pagetree-page-default',
149 '1-hideinmenu' => 'apps-pagetree-page-not-in-menu',
150 '1-root' => 'apps-pagetree-page-domain',
151 '3' => 'apps-pagetree-page-shortcut-external',
152 '3-hideinmenu' => 'apps-pagetree-page-shortcut-external-hideinmenu',
153 '3-root' => 'apps-pagetree-page-shortcut-external-root',
154 '4' => 'apps-pagetree-page-shortcut',
155 '4-hideinmenu' => 'apps-pagetree-page-shortcut-hideinmenu',
156 '4-root' => 'apps-pagetree-page-shortcut-root',
157 '6' => 'apps-pagetree-page-backend-users',
158 '6-hideinmenu' => 'apps-pagetree-page-backend-users-hideinmenu',
159 '6-root' => 'apps-pagetree-page-backend-users-root',
160 '7' => 'apps-pagetree-page-mountpoint',
161 '7-hideinmenu' => 'apps-pagetree-page-mountpoint-hideinmenu',
162 '7-root' => 'apps-pagetree-page-mountpoint-root',
163 '199' => 'apps-pagetree-spacer',
164 '199-hideinmenu' => 'apps-pagetree-spacer',
165 '199-root' => 'apps-pagetree-page-domain',
166 '254' => 'apps-pagetree-folder-default',
167 '254-hideinmenu' => 'apps-pagetree-folder-default',
168 '254-root' => 'apps-pagetree-page-domain',
169 '255' => 'apps-pagetree-page-recycler',
170 '255-hideinmenu' => 'apps-pagetree-page-recycler',
171 'contains-shop' => 'apps-pagetree-folder-contains-shop',
172 'contains-approve' => 'apps-pagetree-folder-contains-approve',
173 'contains-fe_users' => 'apps-pagetree-folder-contains-fe_users',
174 'contains-board' => 'apps-pagetree-folder-contains-board',
175 'contains-news' => 'apps-pagetree-folder-contains-news',
176 'default' => 'apps-pagetree-page-default',
178 'typeicons' => array(
181 '255' => 'recycler.gif',
183 'dynamicConfigFile' => 'T3LIB:tbl_pages.php',
187 // Initialize the additional configuration of the table 'pages':
188 t3lib_div
::loadTCA('pages');
192 * Backend Users for TYPO3.
193 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
195 $TCA['be_users'] = array(
197 'label' => 'username',
198 'tstamp' => 'tstamp',
199 'title' => 'LLL:EXT:lang/locallang_tca.php:be_users',
200 'crdate' => 'crdate',
201 'cruser_id' => 'cruser_id',
202 'delete' => 'deleted',
203 'adminOnly' => 1, // Only admin users can edit
205 'default_sortby' => 'ORDER BY admin, username',
206 'enablecolumns' => array(
207 'disabled' => 'disable',
208 'starttime' => 'starttime',
209 'endtime' => 'endtime'
212 'typeicon_column' => 'admin',
213 'typeicons' => array(
214 '0' => 'be_users.gif',
215 '1' => 'be_users_admin.gif'
217 'typeicon_classes' => array(
218 '0' => 'status-user-backend',
219 '1' => 'status-user-admin',
220 'default' => 'status-user-backend',
222 'mainpalette' => '1',
223 'useColumnsForDefaultValues' => 'usergroup,lockToDomain,options,db_mountpoints,file_mountpoints,fileoper_perms,userMods',
224 'dividers2tabs' => true
,
225 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
226 'versioningWS_alwaysAllowLiveEdit' => TRUE
232 * Backend Usergroups for TYPO3.
233 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
235 $TCA['be_groups'] = array(
238 'tstamp' => 'tstamp',
239 'crdate' => 'crdate',
240 'cruser_id' => 'cruser_id',
241 'delete' => 'deleted',
242 'default_sortby' => 'ORDER BY title',
243 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
246 'type' => 'inc_access_lists',
247 'typeicon_column' => 'inc_access_lists',
248 'typeicons' => array(
249 '1' => 'be_groups_lists.gif'
251 'typeicon_classes' => array(
252 'default' => 'status-user-group-backend',
254 'enablecolumns' => array(
255 'disabled' => 'hidden'
257 'title' => 'LLL:EXT:lang/locallang_tca.php:be_groups',
258 'useColumnsForDefaultValues' => 'lockToDomain, fileoper_perms',
259 'dividers2tabs' => true
,
260 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
261 'versioningWS_alwaysAllowLiveEdit' => TRUE
266 * Table "sys_filemounts":
267 * Defines filepaths on the server which can be mounted for users so they can upload and manage files online by eg. the Filelist module
268 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
270 $TCA['sys_filemounts'] = array(
273 'tstamp' => 'tstamp',
274 'sortby' => 'sorting',
275 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
276 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_filemounts',
279 'delete' => 'deleted',
280 'enablecolumns' => array(
281 'disabled' => 'hidden'
283 'iconfile' => '_icon_ftp.gif',
284 'useColumnsForDefaultValues' => 'path,base',
285 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
286 'versioningWS_alwaysAllowLiveEdit' => TRUE
292 * Table "sys_languages":
293 * Defines possible languages used for translation of records in the system
294 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
296 $TCA['sys_language'] = array(
299 'tstamp' => 'tstamp',
300 'default_sortby' => 'ORDER BY title',
301 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_language',
304 'enablecolumns' => array(
305 'disabled' => 'hidden'
307 'typeicon_classes' => array(
308 'default' => 'mimetypes-x-sys_language',
310 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
311 'versioningWS_alwaysAllowLiveEdit' => TRUE
318 * Holds news records to be displayed in the login screen
319 * This is only the 'header' part (ctrl). The full configuration is found
320 * in t3lib/stddb/tbl_be.php
322 $TCA['sys_news'] = array(
324 'title' => 'LLL:EXT:lang/locallang_tca.xml:sys_news',
326 'tstamp' => 'tstamp',
327 'crdate' => 'crdate',
328 'cruser_id' => 'cruser_id',
331 'delete' => 'deleted',
332 'enablecolumns' => array(
333 'disabled' => 'hidden',
334 'starttime' => 'starttime',
335 'endtime' => 'endtime'
337 'default_sortby' => 'crdate DESC',
338 'typeicon_classes' => array(
339 'default' => 'mimetypes-x-sys_news',
341 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
342 'dividers2tabs' => TRUE
348 * $TBE_MODULES contains the structure of the backend modules as they are arranged in main- and sub-modules.
349 * 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
350 * For information about adding modules to TYPO3 you should consult the documentation found in "Inside TYPO3"
352 $TBE_MODULES = array(
360 // register the pagetree core navigation component
361 t3lib_extMgm
::addCoreNavigationComponent('web', 'typo3-pagetree', array(
362 'TYPO3.Components.PageTree'
366 * $TBE_STYLES configures backend styles and colors; Basically this contains all the values that can be used to create new skins for TYPO3.
367 * For information about making skins to TYPO3 you should consult the documentation found in "Inside TYPO3"
370 'colorschemes' => array(
371 '0' => '#E4E0DB,#CBC7C3,#EDE9E5',
373 'borderschemes' => array(
374 '0' => array('border:solid 1px black;', 5)
380 * Setting up $TCA_DESCR - Context Sensitive Help (CSH)
381 * For information about using the CSH API in TYPO3 you should consult the documentation found in "Inside TYPO3"
383 t3lib_extMgm
::addLLrefForTCAdescr('pages', 'EXT:lang/locallang_csh_pages.xml');
384 t3lib_extMgm
::addLLrefForTCAdescr('be_users', 'EXT:lang/locallang_csh_be_users.xml');
385 t3lib_extMgm
::addLLrefForTCAdescr('be_groups', 'EXT:lang/locallang_csh_be_groups.xml');
386 t3lib_extMgm
::addLLrefForTCAdescr('sys_filemounts', 'EXT:lang/locallang_csh_sysfilem.xml');
387 t3lib_extMgm
::addLLrefForTCAdescr('sys_language', 'EXT:lang/locallang_csh_syslang.xml');
388 t3lib_extMgm
::addLLrefForTCAdescr('sys_news', 'EXT:lang/locallang_csh_sysnews.xml');
389 t3lib_extMgm
::addLLrefForTCAdescr('xMOD_csh_corebe', 'EXT:lang/locallang_csh_corebe.xml'); // General Core
390 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_tools_em', 'EXT:lang/locallang_csh_em.xml'); // Extension manager
391 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_info', 'EXT:lang/locallang_csh_web_info.xml'); // Web > Info
392 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_func', 'EXT:lang/locallang_csh_web_func.xml'); // Web > Func
394 // Labels for TYPO3 4.5 and greater. These labels override the ones set above, while still falling back to the original labels if no translation is available.
395 $GLOBALS['TYPO3_CONF_VARS']['SYS']['locallangXMLOverride']['EXT:lang/locallang_csh_pages.xml'][] = 'EXT:lang/4.5/locallang_csh_pages.xml';
396 $GLOBALS['TYPO3_CONF_VARS']['SYS']['locallangXMLOverride']['EXT:lang/locallang_csh_corebe.xml'][] = 'EXT:lang/4.5/locallang_csh_corebe.xml';
399 * $FILEICONS defines icons for the various file-formats
409 'html' => 'html.gif',
415 'mpeg' => 'mpeg.gif',
421 'php3' => 'php3.gif',
422 'php4' => 'php3.gif',
423 'php5' => 'php3.gif',
424 'php6' => 'php3.gif',
431 'class' => 'java.gif',
436 'swa' => 'flash.gif',
437 'dcr' => 'flash.gif',
448 'tmpl' => 'tmpl.gif',
460 'sgml' => 'sgml.gif',
466 'default' => 'default.gif'
470 * backend sprite icon-names
472 $GLOBALS['TBE_STYLES']['spriteIconApi']['coreSpriteImageNames'] = array(
473 'actions-document-close',
474 'actions-document-duplicates-select',
475 'actions-document-edit-access',
476 'actions-document-export-csv',
477 'actions-document-export-t3d',
478 'actions-document-history-open',
479 'actions-document-import-t3d',
480 'actions-document-info',
481 'actions-document-localize',
482 'actions-document-move',
483 'actions-document-new',
484 'actions-document-open',
485 'actions-document-open-read-only',
486 'actions-document-paste-after',
487 'actions-document-paste-into',
488 'actions-document-save',
489 'actions-document-save-close',
490 'actions-document-save-new',
491 'actions-document-save-view',
492 'actions-document-select',
493 'actions-document-synchronize',
494 'actions-document-view',
497 'actions-edit-copy-release',
499 'actions-edit-cut-release',
500 'actions-edit-delete',
502 'actions-edit-insert-default',
503 'actions-edit-localize-status-high',
504 'actions-edit-localize-status-low',
505 'actions-edit-pick-date',
506 'actions-edit-rename',
507 'actions-edit-restore',
508 'actions-edit-undelete-edit',
510 'actions-edit-unhide',
511 'actions-edit-upload',
512 'actions-input-clear',
513 'actions-insert-record',
514 'actions-insert-reference',
518 'actions-move-right',
519 'actions-move-to-bottom',
520 'actions-move-to-top',
525 'actions-selection-delete',
526 'actions-system-backend-user-emulate',
527 'actions-system-backend-user-switch',
528 'actions-system-cache-clear',
529 'actions-system-cache-clear-impact-high',
530 'actions-system-cache-clear-impact-low',
531 'actions-system-cache-clear-impact-medium',
532 'actions-system-cache-clear-rte',
533 'actions-system-extension-documentation',
534 'actions-system-extension-download',
535 'actions-system-extension-import',
536 'actions-system-extension-install',
537 'actions-system-extension-uninstall',
538 'actions-system-extension-update',
539 'actions-system-help-open',
540 'actions-system-list-open',
541 'actions-system-options-view',
542 'actions-system-pagemodule-open',
543 'actions-system-refresh',
544 'actions-system-shortcut-new',
545 'actions-system-tree-search-open',
546 'actions-system-typoscript-documentation',
547 'actions-system-typoscript-documentation-open',
548 'actions-template-new',
549 'actions-version-document-remove',
550 'actions-version-page-open',
551 'actions-version-swap-version',
552 'actions-version-swap-workspace',
553 'actions-version-workspace-preview',
554 'actions-version-workspace-sendtostage',
555 'actions-view-go-back',
556 'actions-view-go-down',
557 'actions-view-go-forward',
558 'actions-view-go-up',
559 'actions-view-list-collapse',
560 'actions-view-list-expand',
561 'actions-view-paging-first',
562 'actions-view-paging-first-disabled',
563 'actions-view-paging-last',
564 'actions-view-paging-last-disabled',
565 'actions-view-paging-next',
566 'actions-view-paging-next-disabled',
567 'actions-view-paging-previous',
568 'actions-view-paging-previous-disabled',
569 'actions-view-table-collapse',
570 'actions-view-table-expand',
571 'actions-window-open',
572 'apps-clipboard-images',
573 'apps-clipboard-list',
574 'apps-filetree-folder-add',
575 'apps-filetree-folder-default',
576 'apps-filetree-folder-list',
577 'apps-filetree-folder-locked',
578 'apps-filetree-folder-media',
579 'apps-filetree-folder-news',
580 'apps-filetree-folder-opened',
581 'apps-filetree-folder-recycler',
582 'apps-filetree-folder-temp',
583 'apps-filetree-folder-user',
584 'apps-filetree-mount',
585 'apps-filetree-root',
586 'apps-pagetree-backend-user',
587 'apps-pagetree-backend-user-hideinmenu',
588 'apps-pagetree-drag-copy-above',
589 'apps-pagetree-drag-copy-below',
590 'apps-pagetree-drag-move-above',
591 'apps-pagetree-drag-move-below',
592 'apps-pagetree-drag-move-between',
593 'apps-pagetree-drag-move-into',
594 'apps-pagetree-drag-new-between',
595 'apps-pagetree-drag-new-inside',
596 'apps-pagetree-drag-place-denied',
597 'apps-pagetree-folder-contains-approve',
598 'apps-pagetree-folder-contains-board',
599 'apps-pagetree-folder-contains-fe_users',
600 'apps-pagetree-folder-contains-news',
601 'apps-pagetree-folder-contains-shop',
602 'apps-pagetree-folder-default',
603 'apps-pagetree-page-advanced',
604 'apps-pagetree-page-advanced-hideinmenu',
605 'apps-pagetree-page-advanced-root',
606 'apps-pagetree-page-backend-users',
607 'apps-pagetree-page-backend-users-hideinmenu',
608 'apps-pagetree-page-backend-users-root',
609 'apps-pagetree-page-default',
610 'apps-pagetree-page-domain',
611 'apps-pagetree-page-frontend-user',
612 'apps-pagetree-page-frontend-user-hideinmenu',
613 'apps-pagetree-page-frontend-user-root',
614 'apps-pagetree-page-frontend-users',
615 'apps-pagetree-page-frontend-users-hideinmenu',
616 'apps-pagetree-page-frontend-users-root',
617 'apps-pagetree-page-mountpoint',
618 'apps-pagetree-page-mountpoint-hideinmenu',
619 'apps-pagetree-page-mountpoint-root',
620 'apps-pagetree-page-no-icon-found',
621 'apps-pagetree-page-no-icon-found-hideinmenu',
622 'apps-pagetree-page-no-icon-found-root',
623 'apps-pagetree-page-not-in-menu',
624 'apps-pagetree-page-recycler',
625 'apps-pagetree-page-shortcut',
626 'apps-pagetree-page-shortcut-external',
627 'apps-pagetree-page-shortcut-external-hideinmenu',
628 'apps-pagetree-page-shortcut-external-root',
629 'apps-pagetree-page-shortcut-hideinmenu',
630 'apps-pagetree-page-shortcut-root',
631 'apps-pagetree-root',
632 'apps-pagetree-spacer',
633 'apps-toolbar-menu-actions',
634 'apps-toolbar-menu-cache',
635 'apps-toolbar-menu-opendocs',
636 'apps-toolbar-menu-search',
637 'apps-toolbar-menu-shortcut',
638 'apps-toolbar-menu-workspace',
639 'mimetypes-compressed',
641 'mimetypes-media-audio',
642 'mimetypes-media-flash',
643 'mimetypes-media-image',
644 'mimetypes-media-video',
645 'mimetypes-other-other',
647 'mimetypes-powerpoint',
648 'mimetypes-text-css',
649 'mimetypes-text-csv',
650 'mimetypes-text-html',
652 'mimetypes-text-php',
653 'mimetypes-text-text',
654 'mimetypes-x-content-divider',
655 'mimetypes-x-content-domain',
656 'mimetypes-x-content-form',
657 'mimetypes-x-content-form-search',
658 'mimetypes-x-content-header',
659 'mimetypes-x-content-html',
660 'mimetypes-x-content-image',
661 'mimetypes-x-content-link',
662 'mimetypes-x-content-list-bullets',
663 'mimetypes-x-content-list-files',
664 'mimetypes-x-content-login',
665 'mimetypes-x-content-menu',
666 'mimetypes-x-content-multimedia',
667 'mimetypes-x-content-page-language-overlay',
668 'mimetypes-x-content-plugin',
669 'mimetypes-x-content-script',
670 'mimetypes-x-content-table',
671 'mimetypes-x-content-template',
672 'mimetypes-x-content-template-extension',
673 'mimetypes-x-content-template-static',
674 'mimetypes-x-content-text',
675 'mimetypes-x-content-text-picture',
676 'mimetypes-x-sys_action',
677 'mimetypes-x-sys_language',
678 'mimetypes-x-sys_news',
679 'mimetypes-x-sys_workspace',
680 'mimetypes-x_belayout',
681 'status-dialog-error',
682 'status-dialog-information',
683 'status-dialog-notification',
685 'status-dialog-warning',
686 'status-overlay-access-restricted',
687 'status-overlay-deleted',
688 'status-overlay-hidden',
689 'status-overlay-icon-missing',
690 'status-overlay-includes-subpages',
691 'status-overlay-locked',
692 'status-overlay-scheduled',
693 'status-overlay-scheduled-future-end',
694 'status-overlay-translated',
695 'status-status-checked',
696 'status-status-current',
697 'status-status-edit-read-only',
698 'status-status-icon-missing',
699 'status-status-locked',
700 'status-status-permission-denied',
701 'status-status-permission-granted',
702 'status-status-reference-hard',
703 'status-status-reference-soft',
704 'status-status-workspace-draft',
705 'status-system-extension-required',
707 'status-user-backend',
708 'status-user-frontend',
709 'status-user-group-backend',
710 'status-user-group-frontend',
761 'status-version-no-version',
762 'status-warning-in-use',
763 'status-warning-lock'
769 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities'] = array(
778 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames'] = array(
779 'hidden' => 'status-overlay-hidden',
780 'fe_group' => 'status-overlay-access-restricted',
781 'starttime' => 'status-overlay-scheduled',
782 'endtime' => 'status-overlay-scheduled',
783 'futureendtime' => 'status-overlay-scheduled-future-end',
784 'readonly' => 'status-overlay-locked',
785 'deleted' => 'status-overlay-deleted',
786 'missing' => 'status-overlay-missing',
787 'translated' => 'status-overlay-translated',
788 'protectedSection' => 'status-overlay-includes-subpages',