3 * This file is part of the TYPO3 CMS project.
5 * It is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License, either version 2
7 * of the License, or any later version.
9 * For the full copyright and license information, please read the
10 * LICENSE.txt file that was distributed with this source code.
12 * The TYPO3 project - inspiring people to share!
16 * Main form rendering script
17 * By sending certain parameters to this script you can bring up a form
18 * which allows the user to edit the content of one or more database records.
20 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
22 call_user_func(function() {
23 $classLoader = require __DIR__
. '/contrib/vendor/autoload.php';
24 (new \TYPO3\CMS\Backend\Http\
Application($classLoader))->run(function() {
25 \TYPO3\CMS\Backend\Utility\BackendUtility
::lockRecords();
27 \TYPO3\CMS\Core\Utility\GeneralUtility
::deprecationLog(
28 'The entry point to FormEngine was moved to an own module. Please use BackendUtility::getModuleUrl(\'record_edit\') to link to alt_doc.php. This script will be removed in TYPO3 CMS 8.'
31 /* @var $editDocumentController \TYPO3\CMS\Backend\Controller\EditDocumentController */
32 $editDocumentController = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance(\TYPO3\CMS\Backend\Controller\EditDocumentController
::class);
34 // Preprocessing, storing data if submitted to
35 $editDocumentController->preInit();
37 // Checks, if a save button has been clicked (or the doSave variable is sent)
38 if ($editDocumentController->doProcessData()) {
39 $formprotection = \TYPO3\CMS\Core\FormProtection\FormProtectionFactory
::get();
40 if ($formprotection->validateToken(\TYPO3\CMS\Core\Utility\GeneralUtility
::_GP('formToken'), 'editRecord')) {
41 $editDocumentController->processData();
45 $editDocumentController->init();
46 $editDocumentController->main();
47 $editDocumentController->printContent();