Thursday, September 30, 2010

beforeCreate() and afterCreate(): better implementation than mine?

Hello folks

From Ruby On Rails I know the beforeCreate() and afterCreate() hooks
of models. I didn't find them for CakePHP, so I implemented them
myself:

function isNewRecord() {
return empty($this->id) || $this->field('created') == $this-
>field('modified');
}

function beforeSave() {
if($this->isNewRecord()) {
return $this->beforeCreate();
}
}

function afterSave() {
if($this->isNewRecord()) {
return $this->afterCreate();
}
}

function beforeCreate() {
return true;
}

function afterCreate() {
return true;
}

Sadly, this implementation depends on created and modified fields, and
the isNewRecord() method itself isn't very beautiful, too. So maybe
there is a better implementation?

Thanks
Josh

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: