Documentation TYPO3 par Ameos |
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com) 00006 * (c) 2005-2006 Karsten Dambekalns <karsten@typo3.org> 00007 * All rights reserved 00008 * 00009 * This script is part of the TYPO3 project. The TYPO3 project is 00010 * free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version. 00014 * 00015 * The GNU General Public License can be found at 00016 * http://www.gnu.org/copyleft/gpl.html. 00017 * A copy is found in the textfile GPL.txt and important notices to the license 00018 * from the author is found in LICENSE.txt distributed with these scripts. 00019 * 00020 * 00021 * This script is distributed in the hope that it will be useful, 00022 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00023 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00024 * GNU General Public License for more details. 00025 * 00026 * This copyright notice MUST APPEAR in all copies of the script! 00027 ***************************************************************/ 00038 unset($MCONF); 00039 require('conf.php'); 00040 require($BACK_PATH.'init.php'); 00041 require($BACK_PATH.'template.php'); 00042 $BE_USER->modAccess($MCONF,1); 00043 00044 require_once('class.em_index.php'); 00045 00046 // Make instance: 00047 $SOBE = t3lib_div::makeInstance('SC_mod_tools_em_index'); 00048 $SOBE->init(); 00049 foreach($SOBE->include_once as $INC_FILE) { 00050 include_once($INC_FILE); 00051 } 00052 $SOBE->checkExtObj(); 00053 00054 $SOBE->main(); 00055 $SOBE->printContent(); 00056 ?>