I am using ReflectionClass to somehow make on-the-fly classes to run when the application loads so basically when i load the index controller i would like to run another class first that extends the indexcontroller instead.
How can i run something before the request is sent to make it load another controller file instead of the one it should load, But at that time i need to know which controller it is trying to load.
I think CApplication::createController() needs to be overridden/refactored for this purpose.
createController() is responsible for parsing the route and create modules (if any) as well as the requested controller.
I had an idea about a factory object to be specified in controllerMap. The route could be like .../site/module and_or factory/controller/action/params. Of course the controller/action/params information has to be propagated to the factory method.