TYPO3 API  SVNRelease
ext_localconf.php
Go to the documentation of this file.
00001 <?php
00002 if (!defined ('TYPO3_MODE'))    die ('Access denied.');
00003 
00004     // TYPO3 4.5 - Check the database to be utf-8 compliant
00005 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['charsetDefaults'] = 'tx_coreupdates_charsetdefaults';
00006 
00007 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['changeCompatibilityVersion'] = 'tx_coreupdates_compatversion';
00008 
00009     // manage split includes of css_styled_contents since TYPO3 4.3
00010 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['splitCscToMultipleTemplates'] = 'tx_coreupdates_cscsplit';
00011 
00012     // remove pagetype "not in menu" since TYPO3 4.2
00013     // as there is an option in every pagetype
00014 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['removeNotInMenuDoktypeConversion'] = 'tx_coreupdates_notinmenu';
00015 
00016     // remove pagetype "advanced" since TYPO3 4.2
00017     // this is merged with doctype "standard" with tab view to edit
00018 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['mergeAdvancedDoktypeConversion'] = 'tx_coreupdates_mergeadvanced';
00019 
00020     // add outsourced system extensions since TYPO3 4.3
00021 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['installSystemExtensions'] = 'tx_coreupdates_installsysexts';
00022 
00023     // new system extensions since TYPO3 4.3
00024 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['installNewSystemExtensions'] = 'tx_coreupdates_installnewsysexts';
00025 
00026     // change tt_content.imagecols=0 to 1 for proper display in TCEforms since TYPO3 4.3
00027 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['changeImagecolsValue'] = 'tx_coreupdates_imagecols';
00028 
00029     // register eID script for install tool AJAX calls
00030 $TYPO3_CONF_VARS['FE']['eID_include']['tx_install_ajax'] = 'EXT:install/mod/class.tx_install_ajax.php';
00031 
00032     // add static_template if needed (since TYPO3 4.4 this table is not standard)
00033     // if needed, sysext statictables is loaded, which gives back functionality
00034 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['checkForStaticTypoScriptTemplates'] = 'tx_coreupdates_statictemplates';
00035 
00036     // warn for t3skin installed in Version 4.4
00037 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['checkForT3SkinInstalled'] = 'tx_coreupdates_t3skin';
00038 
00039     // Version 4.4: warn for set CompressionLevel and warn user to update his .htaccess
00040 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['checkForCompressionLevel'] = 'tx_coreupdates_compressionlevel';
00041 
00042     // Version 4.5: migrate workspaces to use custom stages and install the required extensions
00043 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['migrateWorkspaces'] = 'tx_coreupdates_migrateworkspaces';
00044 
00045     // Version 4.5: Removes the ".gif" suffix from entries in sys_language
00046 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['flagsFromSprites'] = 'tx_coreupdates_flagsfromsprite';
00047 
00048     // Version 4.5: Adds excludeable FlexForm fields to Backend group access lists (ACL)
00049 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['addFlexformsToAcl'] = 'tx_coreupdates_addflexformstoacl';
00050 
00051     // Version 4.5: Split tt_content image_link to newline by comma
00052 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['update']['imagelink'] = 'tx_coreupdates_imagelink';
00053 ?>