Is there a way to run a function/callback before a model is saved using Datamapper ORM in CodeIgniter?

I know this is possible in most ORMs where you can hook into certain points such as before_update, before_create and so on. Basically I want to hook into before_update to save a copy of the table row in another logging table before it is modified. I am doing this in the controller currently but want to move it into the model as a better MVC practice.

Please provide code or link to documentation. Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Looks like Datamapper has a decent documentation on cloning/copying: http://datamapper.wanwizard.eu/pages/clonecopy.html

I would probably set up a separate Log_model for those tasks. You can load one model from another by instantiating CI ($this->CI =& get_instance();) and then loading the Log_model from your data model.

link|improve this answer
Thanks, yes the Datamapper documentation is fantastic. I like your idea, will see how it goes. – Nick Barrett Feb 6 at 4:12
feedback

Your Answer

 
or
required, but never shown

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