TYPO3  7.6
Variables
core/ext_tables.php File Reference

Go to the source code of this file.

Variables

 $GLOBALS ['PAGES_TYPES']
 
 $registry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Resource\Driver\DriverRegistry::class)
 
 $GLOBALS ['TBE_MODULES']
 
 $GLOBALS ['TBE_STYLES']
 
 $GLOBALS ['TBE_STYLES']['spriteIconApi']['coreSpriteImageNames']
 
 $GLOBALS ['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities']
 
 $GLOBALS ['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames']
 

Variable Documentation

$GLOBALS['PAGES_TYPES']
Initial value:
= array(
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_LINK => array(),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SHORTCUT => array(),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_BE_USER_SECTION => array(
'type' => 'web',
'allowedTables' => '*'
),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_MOUNTPOINT => array(),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SPACER => array(
'type' => 'sys'
),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_SYSFOLDER => array(
'type' => 'sys',
'allowedTables' => '*'
),
(string)\TYPO3\CMS\Frontend\Page\PageRepository::DOKTYPE_RECYCLER => array(
'type' => 'sys',
'allowedTables' => '*'
),
'default' => array(
'type' => 'web',
'allowedTables' => 'pages',
'onlyAllowedTables' => '0'
),
)

$GLOBALS['PAGES_TYPES'] defines the various types of pages (field: doktype) the system can handle and what restrictions may apply to them. Here you can set the icon and especially you can define which tables are allowed on a certain pagetype (doktype) NOTE: The 'default' entry in the $GLOBALS['PAGES_TYPES'] array is the 'base' for all types, and for every type the entries simply overrides the entries in the 'default' type!

Definition at line 12 of file core/ext_tables.php.

$GLOBALS['TBE_MODULES']

$TBE_MODULES contains the structure of the backend modules as they are arranged in main- and sub-modules. 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 For information about adding modules to TYPO3 you should consult the documentation found in "Inside TYPO3"

Definition at line 55 of file core/ext_tables.php.

$GLOBALS['TBE_STYLES']
Initial value:
= array(
'skinImg' => array()
)

$TBE_STYLES configures backend styles and colors; Basically this contains all the values that can be used to create new skins for TYPO3. For information about making skins to TYPO3 you should consult the documentation found in "Inside TYPO3"

Definition at line 121 of file core/ext_tables.php.

$GLOBALS['TBE_STYLES']['spriteIconApi']['coreSpriteImageNames']

Backend sprite icon-names

Definition at line 147 of file core/ext_tables.php.

$GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities']
Initial value:
= array(
'deleted',
'hidden',
'starttime',
'endtime',
'futureendtime',
'fe_group',
'protectedSection'
)

Definition at line 428 of file core/ext_tables.php.

$GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames']
Initial value:
= array(
'hidden' => 'status-overlay-hidden',
'fe_group' => 'status-overlay-access-restricted',
'starttime' => 'status-overlay-scheduled',
'endtime' => 'status-overlay-scheduled',
'futureendtime' => 'status-overlay-scheduled-future-end',
'readonly' => 'status-overlay-locked',
'deleted' => 'status-overlay-deleted',
'missing' => 'status-overlay-missing',
'translated' => 'status-overlay-translated',
'protectedSection' => 'status-overlay-includes-subpages'
)

Definition at line 439 of file core/ext_tables.php.

$registry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Resource\Driver\DriverRegistry::class)