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.