TYPO3 API  SVNRelease
ext_localconf.php
Go to the documentation of this file.
00001 <?php
00002 # TYPO3 CVS ID: $Id: ext_localconf.php 9279 2010-11-04 20:03:01Z psychomieze $
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'] || !$_EXTCONF) {
00008     t3lib_extMgm::addPageTSConfig('<INCLUDE_TYPOSCRIPT: source="FILE:EXT:css_styled_content/pageTSconfig.txt">');
00009 }
00010 
00011 if ($_EXTCONF['removePositionTypes'] || !$_EXTCONF) {
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><strong>tt_content.menu</strong> (used f.e. for sitemaps): Instead of div-tags, lists are used now.</li>
00022                 <li><strong>tt_content.mailform</strong>: Mailforms do not use tables anymore, instead, they use the div-tag. Besides that, mailforms are accessible now.</li>
00023                 <li><strong>The p-tag</strong> has been removed from all table cells.</li>
00024                 <li><strong>CSS based "image" and "text with image"</strong><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 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['compat_version']['tx_cssstyledcontent_pagetargets'] = array(
00028     'title' => 'CSS Styled Content: Default targets for non-frame pages',
00029     'version' => 4002000,
00030     'description' => '<p>The default page target is empty (so no target is generated). If you use frames, you have to set target to "page" in Constants.</p>'
00031 );
00032 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['compat_version']['tx_cssstyledcontent_menuhtmlspecialchars'] = array(
00033     'title' => 'CSS Styled Content: htmlspecialchars in menu content elements',
00034     'version' => 4003000,
00035     'description' => '<p>Page titles will get htmlspecialchar\'ed when rendered in "Sitemap/menu" content elements, to avoid generating invalid XHTML.</p>',
00036 );
00037 $TYPO3_CONF_VARS['SC_OPTIONS']['ext/install']['compat_version']['tx_cssstyledcontent_clearerdivsafterintexttextpicelements'] = array(
00038     'title' => 'CSS Styled Content: clear divs, changed row space, corrected margins',
00039     'version' => 4004000,
00040     'description' => '<ul><li>Clear divs will be generated by default for in-text right or left positioned textpic elements.</li><li>The default row space changes to 10px, to be in line with col space and text margin.</li><li>Rendering bugs with wrong margins were fixed (Default CSS changed).</li></ul>',
00041 );
00042 
00043     // Register ourselves as "content rendering template" (providing the hooks of "static template 43" = content (default) )
00044 $TYPO3_CONF_VARS['FE']['contentRenderingTemplates'] = array(
00045     'cssstyledcontent/static/',
00046     'cssstyledcontent/static/v4.4/',
00047     'cssstyledcontent/static/v4.3/',
00048     'cssstyledcontent/static/v4.2/',
00049     'cssstyledcontent/static/v3.9/',
00050     'cssstyledcontent/static/v3.8/',
00051 );
00052 
00053 ?>