|
TYPO3 API
SVNRelease
|
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com) 00006 * All rights reserved 00007 * 00008 * This script is part of the TYPO3 project. The TYPO3 project is 00009 * free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * The GNU General Public License can be found at 00015 * http://www.gnu.org/copyleft/gpl.html. 00016 * A copy is found in the textfile GPL.txt and important notices to the license 00017 * from the author is found in LICENSE.txt distributed with these scripts. 00018 * 00019 * 00020 * This script is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * This copyright notice MUST APPEAR in all copies of the script! 00026 ***************************************************************/ 00027 /** 00028 * Gateway for TCE (TYPO3 Core Engine) file-handling through POST forms. 00029 * This script serves as the fileadministration part of the TYPO3 Core Engine. 00030 * Basically it includes two libraries which are used to manipulate files on the server. 00031 * 00032 * For syntax and API information, see the document 'TYPO3 Core APIs' 00033 * 00034 * $Id: tce_file.php 10121 2011-01-18 20:15:30Z ohader $ 00035 * Revised for TYPO3 3.6 July/2003 by Kasper Skårhøj 00036 * 00037 * @author Kasper Skårhøj <kasperYYYY@typo3.com> 00038 */ 00039 /** 00040 * [CLASS/FUNCTION INDEX of SCRIPT] 00041 * 00042 * 00043 * 00044 * 77: class SC_tce_file 00045 * 97: function init() 00046 * 117: function initClipboard() 00047 * 138: function main() 00048 * 164: function finish() 00049 * 00050 * TOTAL FUNCTIONS: 4 00051 * (This index is automatically created/updated by the extension "extdeveval") 00052 * 00053 */ 00054 00055 require_once('init.php'); 00056 require_once('classes/class.typo3_tcefile.php'); 00057 00058 // Make instance: 00059 $SOBE = t3lib_div::makeInstance('TYPO3_tcefile'); 00060 $SOBE->init(); 00061 $SOBE->main(); 00062 $SOBE->finish(); 00063 00064 ?>
1.8.0