I know I can use another model inside a controller by doing $this->loadModel("MyModel")
, but how do I do this inside another Model? I tried to use loadModel but it didn't work.
Any idea?
Thank you
Easier is:
$my_model = ClassRegistry::init('MyModel');
More details: Can I use one model inside of a different model in CakePHP?
You can use the following code to export a model that is not associated with the current model in any way:
App::import('Model', 'MyModel');
$my_model = new MyModel();
If MyModel
is associated with current model you could use the chaining e.g. $this->SomeModel->MyModel
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With