cb2fd147c0e8e47c9f16e9d6439ee078761226a8
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-domain',
159 '4' => 'apps-pagetree-page-shortcut',
160 '4-hideinmenu' => 'apps-pagetree-page-shortcut-hideinmenu',
161 '4-root' => 'apps-pagetree-page-domain',
162 '6' => 'apps-pagetree-page-backend-user',
163 '6-hideinmenu' => 'apps-pagetree-page-backend-user-hideinmenu',
164 '6-root' => 'apps-pagetree-page-domain',
165 '7' => 'apps-pagetree-page-mountpoint',
166 '7-hideinmenu' => 'apps-pagetree-page-mountpoint-hideinmenu',
167 '7-root' => 'apps-pagetree-page-domain',
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-dust-bin',
173 '255-hideinmenu' => 'apps-pagetree-dust-bin-hideinmenu',
174 'default' => 'apps-pagetree-page-default',
177 'typeicons' => array(
180 '255' => 'recycler.gif',
183 'interface' => array(
184 'showRecordFieldList' => 'doktype,title',
185 'maxDBListItems' => 30,
186 'maxSingleDBListItems' => 50
191 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.type',
195 array('LLL:EXT:lang/locallang_tca.php:doktype.I.0', '1', 'i/pages.gif'),
196 array('LLL:EXT:lang/locallang_tca.php:doktype.I.1', '254', 'i/sysf.gif'),
197 array('LLL:EXT:lang/locallang_tca.php:doktype.I.2', '255', 'i/recycler.gif')
200 'iconsInOptionTags' => 1,
201 'noIconsBelowSelect' => 1,
205 'label' => 'LLL:EXT:lang/locallang_tca.php:title',
215 'label' => 'TSconfig:',
223 'type' => t3lib_extMgm
::isLoaded('tsconfig_help')?
'popup':'',
224 'title' => 'TSconfig QuickReference',
225 'script' => 'wizard_tsconfig.php?mode=page',
226 'icon' => 'wizard_tsconfig.gif',
227 'JSopenParams' => 'height=500,width=780,status=0,menubar=0,scrollbars=1',
230 'softref' => 'TSconfig'
232 'defaultExtras' => 'fixed-font : enable-tab',
234 'php_tree_stop' => array(
236 'label' => 'LLL:EXT:lang/locallang_tca.php:php_tree_stop',
241 'is_siteroot' => array(
243 'label' => 'LLL:EXT:lang/locallang_tca.php:is_siteroot',
248 'storage_pid' => array(
250 'label' => 'LLL:EXT:lang/locallang_tca.php:storage_pid',
253 'internal_type' => 'db',
254 'allowed' => 'pages',
258 'show_thumbs' => '1',
266 'tx_impexp_origuid' => array('config'=>array('type'=>'passthrough')),
267 't3ver_label' => array(
268 'label' => 'LLL:EXT:lang/locallang_general.php:LGL.versionLabel',
277 'label' => 'LLL:EXT:lang/locallang_tca.php:editlock',
284 '1' => array('showitem' => 'doktype, title, TSconfig;;6;nowrap, storage_pid;;7'),
285 '254' => array('showitem' => 'doktype, title;LLL:EXT:lang/locallang_general.php:LGL.title, TSconfig;;6;nowrap, storage_pid;;7'),
286 '255' => array('showitem' => 'doktype, title, TSconfig;;6;nowrap, storage_pid;;7')
289 '6' => array('showitem' => 'php_tree_stop, editlock'),
290 '7' => array('showitem' => 'is_siteroot')
296 * Backend Users for TYPO3.
297 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
299 $TCA['be_users'] = array(
301 'label' => 'username',
302 'tstamp' => 'tstamp',
303 'title' => 'LLL:EXT:lang/locallang_tca.php:be_users',
304 'crdate' => 'crdate',
305 'cruser_id' => 'cruser_id',
306 'delete' => 'deleted',
307 'adminOnly' => 1, // Only admin users can edit
309 'default_sortby' => 'ORDER BY admin, username',
310 'enablecolumns' => array(
311 'disabled' => 'disable',
312 'starttime' => 'starttime',
313 'endtime' => 'endtime'
316 'typeicon_column' => 'admin',
317 'typeicons' => array(
318 '0' => 'be_users.gif',
319 '1' => 'be_users_admin.gif'
321 'typeicon_classes' => array(
322 '0' => 'status-user-backend',
323 '1' => 'status-user-admin',
324 'default' => 'status-user-backend',
326 'mainpalette' => '1',
327 'useColumnsForDefaultValues' => 'usergroup,lockToDomain,options,db_mountpoints,file_mountpoints,fileoper_perms,userMods',
328 'dividers2tabs' => true,
329 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
330 'versioningWS_alwaysAllowLiveEdit' => TRUE
336 * Backend Usergroups for TYPO3.
337 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
339 $TCA['be_groups'] = array(
342 'tstamp' => 'tstamp',
343 'crdate' => 'crdate',
344 'cruser_id' => 'cruser_id',
345 'delete' => 'deleted',
346 'default_sortby' => 'ORDER BY title',
347 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
350 'type' => 'inc_access_lists',
351 'typeicon_column' => 'inc_access_lists',
352 'typeicons' => array(
353 '1' => 'be_groups_lists.gif'
355 'typeicon_classes' => array(
356 'default' => 'status-user-group-backend',
358 'enablecolumns' => array(
359 'disabled' => 'hidden'
361 'title' => 'LLL:EXT:lang/locallang_tca.php:be_groups',
362 'useColumnsForDefaultValues' => 'lockToDomain, fileoper_perms',
363 'dividers2tabs' => true,
364 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
365 'versioningWS_alwaysAllowLiveEdit' => TRUE
370 * Table "sys_filemounts":
371 * Defines filepaths on the server which can be mounted for users so they can upload and manage files online by eg. the Filelist module
372 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
374 $TCA['sys_filemounts'] = array(
377 'tstamp' => 'tstamp',
378 'sortby' => 'sorting',
379 'prependAtCopy' => 'LLL:EXT:lang/locallang_general.php:LGL.prependAtCopy',
380 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_filemounts',
383 'delete' => 'deleted',
384 'enablecolumns' => array(
385 'disabled' => 'hidden'
387 'iconfile' => '_icon_ftp.gif',
388 'useColumnsForDefaultValues' => 'path,base',
389 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
390 'versioningWS_alwaysAllowLiveEdit' => TRUE
396 * Table "sys_languages":
397 * Defines possible languages used for translation of records in the system
398 * This is only the 'header' part (ctrl). The full configuration is found in t3lib/stddb/tbl_be.php
400 $TCA['sys_language'] = array(
403 'tstamp' => 'tstamp',
404 'default_sortby' => 'ORDER BY title',
405 'title' => 'LLL:EXT:lang/locallang_tca.php:sys_language',
408 'enablecolumns' => array(
409 'disabled' => 'hidden'
411 'typeicon_classes' => array(
412 'default' => 'mimetypes-x-content-language',
414 'dynamicConfigFile' => 'T3LIB:tbl_be.php',
415 'versioningWS_alwaysAllowLiveEdit' => TRUE
431 * $TBE_MODULES contains the structure of the backend modules as they are arranged in main- and sub-modules.
432 * 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
433 * For information about adding modules to TYPO3 you should consult the documentation found in "Inside TYPO3"
435 $TBE_MODULES = array(
436 'web' => 'list,info,perm,func',
440 'help' => 'about,cshmanual'
445 * $TBE_STYLES configures backend styles and colors; Basically this contains all the values that can be used to create new skins for TYPO3.
446 * For information about making skins to TYPO3 you should consult the documentation found in "Inside TYPO3"
449 'colorschemes' => array(
450 '0' => '#E4E0DB,#CBC7C3,#EDE9E5',
452 'borderschemes' => array(
453 '0' => array('border:solid 1px black;',5)
459 * Setting up $TCA_DESCR - Context Sensitive Help (CSH)
460 * For information about using the CSH API in TYPO3 you should consult the documentation found in "Inside TYPO3"
462 t3lib_extMgm
::addLLrefForTCAdescr('pages','EXT:lang/locallang_csh_pages.xml');
463 t3lib_extMgm
::addLLrefForTCAdescr('be_users','EXT:lang/locallang_csh_be_users.xml');
464 t3lib_extMgm
::addLLrefForTCAdescr('be_groups','EXT:lang/locallang_csh_be_groups.xml');
465 t3lib_extMgm
::addLLrefForTCAdescr('sys_filemounts','EXT:lang/locallang_csh_sysfilem.xml');
466 t3lib_extMgm
::addLLrefForTCAdescr('sys_language','EXT:lang/locallang_csh_syslang.xml');
467 t3lib_extMgm
::addLLrefForTCAdescr('sys_workspace','EXT:lang/locallang_csh_sysws.xml');
468 t3lib_extMgm
::addLLrefForTCAdescr('xMOD_csh_corebe','EXT:lang/locallang_csh_corebe.xml'); // General Core
469 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_tools_em','EXT:lang/locallang_csh_em.xml'); // Extension manager
470 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_info','EXT:lang/locallang_csh_web_info.xml'); // Web > Info
471 t3lib_extMgm
::addLLrefForTCAdescr('_MOD_web_func','EXT:lang/locallang_csh_web_func.xml'); // Web > Func
475 * $FILEICONS defines icons for the various file-formats
485 'html' => 'html.gif',
491 'mpeg' => 'mpeg.gif',
497 'php3' => 'php3.gif',
498 'php4' => 'php3.gif',
499 'php5' => 'php3.gif',
500 'php6' => 'php3.gif',
507 'class' => 'java.gif',
512 'swa' => 'flash.gif',
513 'dcr' => 'flash.gif',
524 'tmpl' => 'tmpl.gif',
536 'sgml' => 'sgml.gif',
542 'default' => 'default.gif'
546 * backend sprite icon-names
548 $GLOBALS['TBE_STYLES']['spriteIconApi']['coreSpriteImageName'] = array(
551 'actions-move-to-bottom',
552 'actions-document-move',
553 'actions-system-list-open',
554 'actions-document-export-t3d',
555 'actions-version-swap-workspace',
557 'actions-view-go-forward',
558 'actions-view-paging-next',
559 'actions-system-cache-clear-impact-low',
560 'actions-document-close',
561 'actions-system-shortcut-new',
562 'actions-version-page-open',
564 'actions-insert-record',
565 'actions-selection-delete',
566 'actions-system-extension-uninstall',
568 'actions-view-go-back',
569 'actions-system-tree-search-open',
570 'actions-document-save-view',
571 'actions-system-extension-update',
572 'actions-system-backend-user-emulate',
573 'actions-system-cache-clear-impact-high',
574 'actions-view-paging-first-disabled',
575 'actions-document-save-new',
576 'actions-edit-unhide',
577 'actions-document-new',
579 'actions-document-save-close',
580 'actions-document-import-t3d',
581 'actions-edit-localize-status-high',
583 'actions-edit-upload',
584 'actions-document-info',
585 'actions-system-cache-clear',
586 'actions-edit-rename',
588 'actions-view-paging-previous',
589 'actions-version-document-remove',
590 'actions-system-help-open',
591 'actions-view-paging-last-disabled',
593 'actions-insert-reference',
594 'actions-edit-undelete-edit',
595 'actions-document-duplicates-select',
596 'actions-system-extension-install',
597 'actions-document-save',
598 'actions-edit-restore',
599 'actions-system-backend-user-switch',
600 'actions-document-paste-after',
601 'actions-system-typoscript-documentation',
602 'actions-document-open-read-only',
603 'actions-system-typoscript-documentation-open',
604 'actions-edit-pick-date',
605 'actions-view-paging-previous-disabled',
606 'actions-edit-cut-release',
607 'actions-system-extension-import',
608 'actions-view-go-down',
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-filetree-folder-temp',
644 'apps-pagetree-page-advanced-hideinmenu',
645 'apps-pagetree-page-shortcut-hideinmenu',
646 'apps-pagetree-backend-user',
647 'apps-pagetree-page-frontend-user-hideinmenu',
648 'apps-pagetree-page-default',
649 'apps-pagetree-drag-place-denied',
650 'apps-filetree-folder-user',
651 'apps-pagetree-drag-new-inside',
652 'apps-pagetree-drag-move-into',
653 'apps-filetree-folder-add',
654 'apps-pagetree-page-domain',
655 'apps-toolbar-menu-workspace',
656 'apps-pagetree-drag-new-between',
657 'apps-pagetree-page-shortcut-external',
658 'apps-pagetree-drag-move-between',
659 'apps-pagetree-page-backend-users',
660 'apps-filetree-folder-locked',
661 'apps-pagetree-backend-user-hideinmenu',
662 'apps-pagetree-page-mountpoint',
663 'apps-pagetree-root',
664 'apps-pagetree-page-frontend-user',
665 'apps-pagetree-page-advanced',
666 'apps-pagetree-page-frontend-users-hideinmenu',
667 'apps-filetree-mount',
668 'apps-toolbar-menu-shortcut',
669 'apps-pagetree-page-no-icon-found-hideinmenu',
670 'apps-filetree-folder-default',
671 'apps-pagetree-page-shortcut',
672 'apps-clipboard-images',
673 'apps-pagetree-page-no-icon-found',
674 'apps-filetree-folder-media',
675 'apps-pagetree-spacer',
676 'apps-pagetree-page-mountpoint-hideinmenu',
677 'apps-pagetree-page-backend-users-hideinmenu',
678 'apps-pagetree-folder-default',
679 'apps-pagetree-page-not-in-menu',
680 'apps-clipboard-list',
681 'apps-filetree-folder-news',
682 'apps-filetree-folder-list',
683 'mimetypes-x-content-link',
684 'mimetypes-text-css',
685 'mimetypes-media-video',
686 'mimetypes-x-content-script',
687 'mimetypes-x-content-plugin',
688 'mimetypes-media-audio',
689 'mimetypes-other-other',
691 'mimetypes-x-content-divider',
692 'mimetypes-powerpoint',
693 'mimetypes-x-content-table',
694 'mimetypes-x-content-text-picture',
695 'mimetypes-x-content-login',
696 'mimetypes-x-content-header',
697 'mimetypes-x-content-form-search',
699 'mimetypes-x-content-template',
700 'mimetypes-x-content-multimedia',
701 'mimetypes-text-csv',
702 'mimetypes-x-content-list-files',
703 'mimetypes-x-content-text',
704 'mimetypes-text-text',
705 'mimetypes-text-php',
706 'mimetypes-x-content-list-bullets',
707 'mimetypes-media-image',
708 'mimetypes-x-content-form',
709 'mimetypes-x-content-image',
710 'mimetypes-x-content-menu',
711 'mimetypes-compressed',
712 'mimetypes-x-content-html',
713 'mimetypes-text-html',
714 'mimetypes-media-flash',
715 'mimetypes-x-content-template-static',
717 'places-folder-closed',
718 'places-folder-opened',
724 'status-overlay-deleted',
726 'status-overlay-includes-subpages',
732 'status-status-checked',
734 'status-dialog-error',
737 'status-version-no-version',
738 'status-user-group-backend',
739 'status-status-edit-read-only',
741 'status-user-group-frontend',
742 'status-status-permission-granted',
743 'status-warning-lock',
745 'status-overlay-hidden',
750 'status-overlay-icon-missing',
752 'status-dialog-information',
754 'status-user-frontend',
757 'status-status-icon-missing',
761 'status-user-backend',
765 'status-system-extension-required',
766 'status-overlay-scheduled',
768 'status-status-reference-soft',
769 'status-status-reference-hard',
775 'status-overlay-locked',
781 'status-status-locked',
782 'status-warning-in-use',
783 'status-status-workspace-draft',
790 'status-dialog-notification',
792 'status-status-current',
794 'status-overlay-translated',
797 'status-dialog-warning',
798 'status-status-permission-denied',
799 'status-overlay-access-restricted',
803 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities'] = array('hidden', 'starttime', 'endtime', 'futureendtime', 'fe_group', 'protectedSection');
804 $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames'] = array(
805 'hidden' => 'status-overlay-hidden',
806 'fe_group' => 'status-overlay-access-restricted',
807 'starttime' => 'status-overlay-scheduled-start',
808 'endtime' => 'status-overlay-scheduled-end',
809 'futureendtime' => 'status-overlay-scheduled-future-end',
810 'readonly' => 'status-overlay-locked',
811 'deleted' => 'status-overlay-deleted',
812 'missing' => 'status-overlay-missing',
813 'translated' => 'status-overlay-translated',
814 'protectedSection' => 'status-overlay-includes-subpages',