projects
/
Packages
/
TYPO3.CMS.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[BUGFIX] Paste button missing in empty folders
[Packages/TYPO3.CMS.git]
/
typo3
/
sysext
/
filelist
/
ext_tables.php
1
<
?php
2
if
(!
defined
(
'TYPO3_MODE'
)) {
3
die
(
'Access denied.'
);
4
}
5
if
(
TYPO3_MODE
===
'BE'
) {
6
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
addModule
(
'file'
,
'list'
,
''
,
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::
extPath
(
$_EXTKEY
) .
'mod1/'
);
7
}
8
?
>