<?php
/***************************************************************
-* Copyright notice
-*
-* (c) 1999-2010 Kasper Skaarhoj (kasperYYYY@typo3.com)
-* All rights reserved
-*
-* This script is part of the TYPO3 project. The TYPO3 project is
-* free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
-*
-* The GNU General Public License can be found at
-* http://www.gnu.org/copyleft/gpl.html.
-* A copy is found in the textfile GPL.txt and important notices to the license
-* from the author is found in LICENSE.txt distributed with these scripts.
-*
-*
-* This script is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* This copyright notice MUST APPEAR in all copies of the script!
-***************************************************************/
-/**
- * Dummy document - displays nothing but background color.
- *
- * $Id$
- * Revised for TYPO3 3.6 2/2003 by Kasper Skaarhoj
- * XHTML compliant content
+ * Copyright notice
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
- */
-/**
- * [CLASS/FUNCTION INDEX of SCRIPT]
+ * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
+ * All rights reserved
*
+ * This script is part of the TYPO3 project. The TYPO3 project is
+ * free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
*
+ * The GNU General Public License can be found at
+ * http://www.gnu.org/copyleft/gpl.html.
+ * A copy is found in the textfile GPL.txt and important notices to the license
+ * from the author is found in LICENSE.txt distributed with these scripts.
*
- * 68: class SC_dummy
- * 76: function main()
- * 92: function printContent()
*
- * TOTAL FUNCTIONS: 2
- * (This index is automatically created/updated by the extension "extdeveval")
+ * This script is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
*
- */
-
-require ('init.php');
-require ('template.php');
-
-
-
-
-
-
-
-
-
+ * This copyright notice MUST APPEAR in all copies of the script!
+ ***************************************************************/
/**
- * Script Class, creating the content for the dummy script - which is just blank output.
+ * Dummy document - displays nothing but background color.
*
- * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
- * @package TYPO3
- * @subpackage core
+ * Revised for TYPO3 3.6 2/2003 by Kasper Skårhøj
+ * XHTML compliant content
+ *
+ * @author Kasper Skårhøj <kasperYYYY@typo3.com>
+ */
+require 'init.php';
+/*
+ * @deprecated since 6.0, the classname SC_dummy and this file is obsolete
+ * and will be removed with 6.2. The class was renamed and is now located at:
+ * typo3/sysext/backend/Classes/Controller/DummyController.php
*/
-class SC_dummy {
- var $content;
-
- /**
- * Create content for the dummy script - outputting a blank page.
- *
- * @return void
- */
- function main() {
- global $TBE_TEMPLATE;
-
- // Start page
- $this->content.=$TBE_TEMPLATE->startPage('Dummy document');
-
- // End page:
- $this->content.=$TBE_TEMPLATE->endPage();
- }
-
- /**
- * Outputting the accumulated content to screen
- *
- * @return void
- */
- function printContent() {
- echo $this->content;
- }
-}
-
-
-if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/dummy.php']) {
- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/dummy.php']);
-}
-
-
-
+require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('backend') . 'Classes/Controller/DummyController.php';
// Make instance:
-$SOBE = t3lib_div::makeInstance('SC_dummy');
+$SOBE = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Backend\\Controller\\DummyController');
$SOBE->main();
$SOBE->printContent();
-
?>
\ No newline at end of file