0byt3m1n1
Path:
/
data
/
applications
/
aps
/
typo3
/
4.5.5-0
/
standard
/
htdocs
/
t3lib
/
stddb
/
[
Home
]
File: load_ext_tables.php
<?php if (!defined('TYPO3_MODE')) { die ('Access denied.'); } /** * Loading the ext_tables.php files of the installed extensions when caching to "temp_CACHED_" files is NOT enabled. * * $Id$ * Revised for TYPO3 3.6 July/2003 by Kasper Skårhøj * * @author Kasper Skårhøj <kasperYYYY@typo3.com> * @see tslib_fe::includeTCA(), typo3/init.php */ $temp_TYPO3_LOADED_EXT = $GLOBALS['TYPO3_LOADED_EXT']; foreach ($temp_TYPO3_LOADED_EXT as $_EXTKEY => $temp_lEDat) { if (is_array($temp_lEDat) && $temp_lEDat['ext_tables.php']) { $_EXTCONF = $TYPO3_CONF_VARS['EXT']['extConf'][$_EXTKEY]; require($temp_lEDat['ext_tables.php']); } } ?>