Documentation TYPO3 par Ameos |
00001 <?php 00002 if (!defined ('TYPO3_MODE')) die ('Access denied.'); 00003 00004 // Add static template for enabling the Click-enlarge feature 00005 if ($TYPO3_CONF_VARS['EXTCONF'][$_EXTKEY]['enableClickEnlarge']) { 00006 t3lib_extMgm::addStaticFile($_EXTKEY,'static/clickenlarge/','Clickenlarge Rendering'); 00007 } 00008 00009 $TCA['tx_rtehtmlarea_acronym'] = Array ( 00010 'ctrl' => Array ( 00011 'title' => 'LLL:EXT:rtehtmlarea/locallang_db.xml:tx_rtehtmlarea_acronym', 00012 'label' => 'term', 00013 'default_sortby' => 'ORDER BY term', 00014 'sortby' => 'sorting', 00015 'rootLevel' => 1, 00016 'delete' => 'deleted', 00017 'enablecolumns' => Array ( 00018 'disabled' => 'hidden', 00019 'starttime' => 'starttime', 00020 'endtime' => 'endtime', 00021 ), 00022 'dynamicConfigFile' => t3lib_extMgm::extPath($_EXTKEY).'tca.php', 00023 'iconfile' => t3lib_extMgm::extRelPath($_EXTKEY).'htmlarea/skins/default/images/Acronym/ed_acronym.gif', 00024 ) 00025 ); 00026 00027 t3lib_extMgm::allowTableOnStandardPages('tx_rtehtmlarea_acronym'); 00028 t3lib_extMgm::addToInsertRecords('tx_rtehtmlarea_acronym'); 00029 ?>