"TYPO3 4.0.1: typo3_src-4.0.1/typo3/sysext/css_styled_content/ext_localconf.php Source File", "datetime" => "Sat Dec 2 19:22:27 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>

ext_localconf.php

00001 <?php
00002 # TYPO3 CVS ID: $Id: ext_localconf.php 1661 2006-07-30 21:52:16Z mundaun $
00003 
00004 if (!defined ('TYPO3_MODE'))    die ('Access denied.');
00005 
00006 $_EXTCONF = unserialize($_EXTCONF);     // unserializing the configuration so we can use it here:
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(
00018         'title' => 'CSS Styled Content: Accessibility improvements',
00019         'version' => 3009000,
00020         'description' => '<p>The rendering of the following elements will change:
00021                                 <ul><li><b>tt_content.menu</b> (used f.e. for sitemaps): Instead of div-tags, lists are used now.</li>
00022                                 <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>
00023                                 <li><b>The p-tag</b> has been removed from all table cells.</li>
00024                                 <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. Read the <a href="http://wiki.typo3.org/index.php/TYPO3_4.0" target="_blank">4.0 release notes</a> for further information.</li></ul>',
00025         'description_acknowledge' => 'You will have to update your stylesheets to comply with these changes.'
00026 );
00027 
00028 
00029 ?>