TYPO3 CMS
TYPO3_6-2
Main Page
Related Pages
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
+
Files
File List
+
File Members
+
All
$
(
_
a
c
d
e
f
h
i
l
o
p
r
s
t
u
x
+
Functions
_
a
c
d
e
f
i
l
o
p
r
s
u
x
+
Variables
$
(
_
a
d
e
h
i
p
r
s
t
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
ext_localconf.php
Go to the documentation of this file.
1
<?php
2
if
(!defined(
'TYPO3_MODE'
)) {
3
die
(
'Access denied.'
);
4
}
5
6
// TYPO3 6.0 - Create page and TypoScript root template (automatically executed in 123-mode)
7
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'rootTemplate'
] =
'TYPO3\\CMS\\Install\\Updates\\RootTemplateUpdate'
;
8
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'changeCompatibilityVersion'
] =
'TYPO3\\CMS\\Install\\Updates\\CompatVersionUpdate'
;
9
// TYPO3 6.0 - Add new tables for ExtensionManager
10
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'extensionManagerTables'
] =
'TYPO3\\CMS\\Install\\Updates\\ExtensionManagerTables'
;
11
// Split backend user and backend groups file permissions to single ones.
12
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'file_permissions'
] =
'TYPO3\\CMS\\Install\\Updates\\FilePermissionUpdate'
;
13
// Version 6.0: Migrate files content elements to use File Abstraction Layer
14
// Migrations of tt_content.image DB fields and captions, alt texts, etc. into sys_file_reference records.
15
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_init'
] =
'TYPO3\\CMS\\Install\\Updates\\InitUpdateWizard'
;
16
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_images'
] =
'TYPO3\\CMS\\Install\\Updates\\TceformsUpdateWizard'
;
17
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_uploads'
] =
'TYPO3\\CMS\\Install\\Updates\\TtContentUploadsUpdateWizard'
;
18
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_splitMetaData'
] =
'TYPO3\\CMS\\Install\\Updates\\FileTableSplittingUpdate'
;
19
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_truncateProcessedFileTable'
] =
'TYPO3\\CMS\\Install\\Updates\\TruncateSysFileProcessedFileTable'
;
20
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'referenceIntegrity'
] =
'TYPO3\\CMS\\Install\\Updates\\ReferenceIntegrityUpdateWizard'
;
21
22
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_filemounts'
] =
'TYPO3\\CMS\\Install\\Updates\\FilemountUpdateWizard'
;
23
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'fal_identifierhash'
] =
'TYPO3\\CMS\\Install\\Updates\\FileIdentifierHashUpdate'
;
24
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_rtemagicimages'
] =
'TYPO3\\CMS\\Install\\Updates\\RteMagicImagesUpdateWizard'
;
25
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'sysext_file_rtefilelinks'
] =
'TYPO3\\CMS\\Install\\Updates\\RteFileLinksUpdateWizard'
;
26
// TYPO3 6.2.13
27
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'processedFilesChecksum'
] =
'TYPO3\\CMS\\Install\\Updates\\ProcessedFileChecksumUpdate'
;
28
29
// Version 4.7: Migrate the flexforms of MediaElement
30
$GLOBALS
[
'TYPO3_CONF_VARS'
][
'SC_OPTIONS'
][
'ext/install'
][
'update'
][
'mediaElementFlexform'
] =
'TYPO3\\CMS\\Install\\Updates\\MediaFlexformUpdate'
;
31
32
$signalSlotDispatcher
=
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance
(
'TYPO3\\CMS\\Extbase\\SignalSlot\\Dispatcher'
);
33
$signalSlotDispatcher
->connect(
34
'TYPO3\\CMS\\Install\\Service\\SqlExpectedSchemaService'
,
35
'tablesDefinitionIsBeingBuilt'
,
36
'TYPO3\\CMS\\Install\\Service\\CachingFrameworkDatabaseSchemaService'
,
37
'addCachingFrameworkRequiredDatabaseSchemaToTablesDefinition'
38
);
39
$signalSlotDispatcher
->connect(
40
'TYPO3\\CMS\\Install\\Service\\SqlExpectedSchemaService'
,
41
'tablesDefinitionIsBeingBuilt'
,
42
'TYPO3\\CMS\\Core\\Category\\CategoryRegistry'
,
43
'addCategoryDatabaseSchemaToTablesDefinition'
44
);
die
die
Definition:
index.php:6
TYPO3\CMS\Core\Utility\GeneralUtility\makeInstance
static makeInstance($className)
Definition:
GeneralUtility.php:4424
$signalSlotDispatcher
$signalSlotDispatcher
Definition:
ext_localconf.php:6
$GLOBALS
if(!defined('TYPO3_MODE')) $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_pre_processing'][]
Definition:
ext_localconf.php:5
typo3
sysext
install
ext_localconf.php
Generated on Wed Aug 7 2019 09:52:19 for TYPO3 CMS by
1.8.13