Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I use another Model inside one model?

Eg.

<?php
class Form extends AppModel
{
    var $name='Form';
    var $helpers=array('Html','Ajax','Javascript','Form');
    var $components = array( 'RequestHandler','Email');

    function saveFormName($data)
    {
        $this->data['Form']['formname']=$data['Form']['formname'];
        $this->saveField('name',$this->data['Form']['formname']);
    } 

    function saveFieldname($data)
    {
        $this->data['Attribute']['fieldname']=$data['Attribute']['fieldname'];
    }

}
?>
share|improve this question
12  
excuse me? helpers and components in a Form model that saves attributes? this is all over the place, neither mvc nor cake. – Alexander Morland Jun 11 '09 at 19:21
11  
reading this code made my head hurt. Please understand MVC before you rip a tear in the space time continuum and put all our lives in peril. What you are doing is taking the engine and transmission out of the car only to use it Fred Flintstones style. stop. – Angel S. Moreno Aug 30 '10 at 6:33
Brad takes the cake here... CakePHP, if you use it right, will automatically link the instances together, via associations.. There's really no point in instantiating another instance of the model if it's already there... If you are unable to associate the models directly, then looking at instantiating a new model might be an option. – Drewdiddy611 Mar 27 at 14:58

7 Answers

Old thread but I'm going to chime in because I believe the answers to be incomplete and lacking in 'why'. CakePHP has three ways to load models. Though only two methods work outside of a Controller, I'll mention all three. I'm not sure about version availability but this is core stuff so I believe they'll work.

App::import() only finds and require()s the file and you'll need to instantiate the class to use it. You can tell import() the type of class, the name and file path details.

ClassRegistry::init() loads the file, adds the instance to the object map and returns the instance. This is the better way to load something because it sets up 'Cake' things as would happen if you loaded the class through normal means. You can also set an alias for the class name which I've found useful.

Controller::loadModel() uses ClassRegistry::init() as well as adds the Model as a property of the controller. It also allows $persistModel for model caching on future requests. This only works in a Controller and, if that's your situation, I'd use this method before the others.

share|improve this answer
1  
A similar set of statements explained by gwoo himself: groups.google.com/group/cake-php/msg/794c451038c0c798 – icc97 Sep 18 '11 at 10:59

You can create instances of other models from within any model/controller using one of these two methods.

If you're using Cake 1.2:

App::import('model','Attribute');
$attr = new Attribute();
$attr->save($dataYouWantToSavetoAttribute);

If you're using Cake 1.1:

loadModel('Attribute');
$attr = new Attribute();
$attr->save($dataYouWantToSavetoAttribute);
share|improve this answer
6  
App::import() is not very good for models. $attr = ClassRegistry::init('Attribute') should be used. – dr Hannibal Lecter Jun 11 '09 at 16:47
Actually my form has fields(Attributes) like associations – Jasmine Jun 12 '09 at 6:19
@dr Hannibal Lecter: Why it is not good for models? – bancer Jun 19 '10 at 23:32

In CakePHP 1.2, it's better to use:

ClassRegistry::init('Attribute')->save($data);
share|improve this answer

An obvious solution everyone missed is to create an association between two models, if appropriate. You can use it to be able to reference one model from inside another.

class Creation extends AppModel {
    public $belongsTo = array(
        'Inventor' => array(
            'className'  => 'Inventor',
            'foreignKey'  => 'inventor_id',
        )
    );

    public function whoIsMyMaker() {
        $this->Inventor->id = $this->field('inventor_id');
        return $this->Inventor->field('name');
    }
}
share|improve this answer

I feel ClassRegistry::init('Attribute') is simple to use. It will return an instance of the Attribute model.

share|improve this answer
$this->loadModel('myModel');
//Then procced as usual-
$this->myModel->blablabla
share|improve this answer

ClassRegistry::init('ModelName') can be used in controllers and models.

eg : ClassRegistry::init('ModelName')->getData();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.