[TYPO3-dev] TR : eid extension listing

Éric Thibault Eric.Thibault at dc.ulaval.ca
Sun Feb 12 16:44:37 CET 2012


Hello to all!

Is there a way to list all extensions with eid configuration setup? I've done eid setup before with no problems but I have an old extension that I want to "eid enable" but with no success...!? If I could list all eid extensions I would know if I've done it write on not. 

1. I've changed the ext_localconf.php:

// eID
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include'][my_ext'] = 'EXT:my_ext/pi1/class.tx_my_ext_eid.php';

2. And in the eid class file (my_ext/pi1/class.tx_my_ext_eid.php):

<?php
require_once(PATH_tslib.'class.tslib_pibase.php');
class tx_my_ext_eID extends tslib_pibase {
  
    function main() {            
    print('Hello');
    }

}

$SOBE = t3lib_div::makeInstance('tx_my_ext_eID');
$SOBE->main();
?>


Thanks! 


More information about the TYPO3-dev mailing list