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!
15 require __DIR__
. '/init.php';
17 \TYPO3\CMS\Core\Utility\GeneralUtility
::deprecationLog(
18 'The entry point to show_item was moved to an own module. Please use BackendUtility::getModuleUrl(\'show_item\') to link to show_item.php. This script will be removed in TYPO3 CMS 8.'
21 $elementInformationController = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance(
22 \TYPO3\CMS\Backend\Controller\ContentElement\ElementInformationController
::class
24 $elementInformationController->main();
25 $elementInformationController->printContent();