So, codeigniter has application and system. I want to add another folder called "platform" and it would have the same directory structure as application (controllers, views and everything).
How I want it to work is like this: - When you load a model, view, library, controller etc it should first check in application (if it's not there, it should check in platform and if it's not there it should show an error) - I want to make some basic models and controllers in the "platform" and all the controllers and models from "application" to inherit them - I want to extend basic core and library classes in the "platform" and if needed they would be extended in the "application"
I don't know if code igniter can already do that or if it needs something to do it.
Basically it's something like the plugins from cakephp (if somebody knows how they are/work).
Question:
How do I do the above?