1
I don't know if this is still a beginner question, but how do I get a objecthandler that is from another module? Sure, I could extend that class in the module in question, but that will be a lot of work, as I have to do this a lot.
Maybe I should explain the situation. I wrote myself a module that integrates SimpleTest in the XOOPS framework. That module searches for testsuites allover XOOPS and executes them. The Problem is, they are executed under the SimpleTest module, not the module the tests are from and the handler searches for the classes in the Simpletest Module, not the module to be tested.
So I see two theoretical solutions:
1. Make XOOPS believe it is the other module
2. Tell the handler in what module to find the classes
I have no idea on how to do either of them so any help would be great.
Jesore