if each client has a dedicated domain could you write a model that returns the domain and base logic on the return value?
I have an application that is to be used by multiple clients. Everything should stay the same except for one or two models that are different from one client to the other. To explain more, my application consists of two modules, one of them (called X) uses a model call X_Model_Post. The logic of this module may change from one client to another. Each client has a dedicated domain. I wanna use the same code for each one, but somehow, write a different X_Model_Post for each client; is that possible?
Last edited by mesh2005; 03-10-2010 at 05:44 PM.
if each client has a dedicated domain could you write a model that returns the domain and base logic on the return value?