[Typo3-dev] extending Extension-Kickstarter
Daniel Brün
dbruen at saltation.de
Thu Apr 29 16:10:42 CEST 2004
Hi folks!
I am currently integrating our own application-framework into typo3. In
order to do so I need to slightly extend the extension kickstarter, so
it's easier for the developer to decide wether to use or not to use our
framework (I just want to add a checkbox to the wizard and generate some
other files).
Right now my (probably stupid) problem is, that even though my
ux_-Extension of the kickstarter-wizard gets loaded, the class itself
never gets instantiated. Usually t3lib_div::makeInstance() should
automatically find my ux_-Class and instantiate it instead of the
original, but this does not happen.
Here's some snippets:
The first couple of lines of class.ux_extrepwizard.php:
<?php
echo "class-file loaded!!!"; //<-- I can see that output!
class ux_tx_extrepwizard extends tx_extrepwizard {
...some modified functions...
}
?>
In the ext_localconf.php of that extension I have the following line:
$TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/extrep_wizard/pi/class.tx_extrepwizard.php"]
= t3lib_extMgm::extPath("salt_visual_system") .
"pi1/class.ux_extrepwizard.php";
I've been staring at the code for 2 hours now and just can't find a
solution... any hints?
Thanks,
Dan.
More information about the TYPO3-dev
mailing list