I'm trying to do something unorthodox. I have 2 cakePHP installations within one directory. Is it possible to extend a model from one of my app installations into another?
This is what my directory structure looks like:
app1
app
model
* app1Model
view
controller
libs
plugins
ventors
app2
app
model
* app2Model (I want to extent this model with app1Model)
view
controller
libs
plugins
ventors
I want my app2Model to extend app1Model.