TYPO3 API  SVNRelease
load_ext_tables.php
Go to the documentation of this file.
00001 <?php
00002 if (!defined('TYPO3_MODE')) {
00003     die ('Access denied.');
00004 }
00005 
00006 /**
00007  * Loading the ext_tables.php files of the installed extensions when caching to "temp_CACHED_" files is NOT enabled.
00008  *
00009  * $Id: load_ext_tables.php 9611 2010-11-24 23:33:55Z steffenk $
00010  * Revised for TYPO3 3.6 July/2003 by Kasper Skårhøj
00011  *
00012  * @author  Kasper Skårhøj <kasperYYYY@typo3.com>
00013  * @see tslib_fe::includeTCA(), typo3/init.php
00014  */
00015 $temp_TYPO3_LOADED_EXT = $GLOBALS['TYPO3_LOADED_EXT'];
00016 foreach ($temp_TYPO3_LOADED_EXT as $_EXTKEY => $temp_lEDat) {
00017     if (is_array($temp_lEDat) && $temp_lEDat['ext_tables.php']) {
00018         $_EXTCONF = $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY];
00019         require($temp_lEDat['ext_tables.php']);
00020     }
00021 }
00022 ?>