From: http://agiletoolkit.org/learn/understand/model/add

class Model_MyModel extends Model_Table {

    function init(){
        parent::init();
        $this->addField('name');
    }
}

From: http://agiletoolkit.org/intro/models

class Model_MyModel extends Model_Table {

    function defineFields(){
        parent::defineFields();
        $this->addField('name');
    }
}

Which is correct? What's the difference?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

using the init() method is the right one. defineField is old way and was changed in favor of "init" due to consistency.

I will update the pages accordingly.

link|improve this answer
Thanks for clearing that up – BlueBiscuit Sep 28 '11 at 16:01
feedback

Your Answer

 
or
required, but never shown

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