feedit/ext_emconf.php
Christian Kuhn ff8f9195c7 [!!!][TASK] Do not handle 'uploadsfolder' in ext_emconf anymore
With TCA type=group with internal_type=file and
file_reference being dropped, the uploads/ folder
is unused and obsolete.
The patch drops further related code in this area,
especially the ext_emconf.php property uploadsfolder
is obsolete. It is dropped from all ext_emconf.php
files together with its handling in extensionmanager.

Change-Id: I93abc7d614b17adf4d0f2f896e346d3147c49472
Resolves: #87445
Releases: master
Reviewed-on: https://review.typo3.org/59443
Tested-by: TYPO3com <noreply@typo3.com>
Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: Benni Mack <benni@typo3.org>
Tested-by: Benni Mack <benni@typo3.org>
2019-01-15 16:31:50 +01:00

20 lines
478 B
PHP

<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Frontend Editing',
'description' => '',
'category' => 'fe',
'author' => 'TYPO3 Core Team',
'author_email' => 'typo3cms@typo3.org',
'author_company' => '',
'state' => 'stable',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '10.0.0',
'constraints' => [
'depends' => [
'typo3' => '10.0.0',
],
'conflicts' => [],
'suggests' => [],
],
];