00001 <?php
00002 # TYPO3 CVS ID: $Id: ext_localconf.php,v 1.2.2.2 2006/01/20 00:25:35 ingmars Exp $
00003
00004 if (!defined ('TYPO3_MODE')) die ('Access denied.');
00005
00006 $_EXTCONF = unserialize($_EXTCONF);
00007 if ($_EXTCONF['setPageTSconfig']) {
00008 t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:css_styled_content/pageTSconfig.txt">');
00009 }
00010
00011 if ($_EXTCONF['removePositionTypes']) {
00012 t3lib_extMgm::addPageTSConfig('
00013 TCEFORM.tt_content.imageorient.types.image.removeItems = 8,9,10,17,18,25,26
00014 ');
00015 }
00016
00017 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['compat_version']['tx_cssstyledcontent_accessibility'] = array('version' => 3009000, 'description' => 'The rendering of the following elements has changed:<ul><li><b>tt_content.menu</b> (used f.e. for sitemaps): Instead of div-tags, lists are used now.</li><li><b>tt_content.mailform</b>: Mailforms do not use tables anymore, instead, they use the div-tag. Besides that, mailforms are accessible now.</li><li><b>The p-tag has been removed from all table cells.</b></li><li><b>CSS based "image" and "text with image"</b><br />As the extension cron_cssstyledimgtext has been merged into the core, rendering of the content elements "image" and "text with image" has been changed to be CSS instead of table based. See the <a href="http://wiki.typo3.org/index.php/TYPO3_4.0">4.0 release notes</a> for further information.</li></ul>', 'description_acknowledge' => 'Yes, I know that I will need to update my stylesheets to comply with this change.');
00018
00019
00020 ?>