2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Import / Export module
30 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
35 * Incoming array has syntax:
36 * GETvar 'id' = import page id (must be readable)
38 * file = (pointing to filename relative to PATH_site)
42 * [all relation fields are clear, but not files]
43 * - page-tree is written first
44 * - then remaining pages (to the root of import)
45 * - then all other records are written either to related included pages or if not found to import-root (should be a sysFolder in most cases)
46 * - then all internal relations are set and non-existing relations removed, relations to static tables preserved.
50 * Incoming array has syntax:
55 * record[] = table:uid
57 * pagetree[id] = (single id)
58 * pagetree[levels]=1,2,3, -1 = currently unpacked tree, -2 = only tables on page
59 * pagetree[tables][]=table/_ALL
61 * external_ref[tables][]=table/_ALL
65 require_once $BACK_PATH . 'init.php';
66 $LANG->includeLLFile('EXT:impexp/app/locallang.php');
67 \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::isLoaded('impexp', 1);
69 * @deprecated since 6.0, the classname SC_mod_tools_log_index and this file is obsolete
70 * and will be removed with 6.2. The class was renamed and is now located at:
71 * typo3/sysext/impexp/Classes/Controller/ImportExportController.php
73 require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility
::extPath('impexp') . 'Classes/Controller/ImportExportController.php';
75 $SOBE = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance('TYPO3\\CMS\\Impexp\\Controller\\ImportExportController');
78 $SOBE->printContent();