conditional upsert

burque98

Member
is it possible to do conditional upset? i would like to insert into a table when status = approved only.
 
The upsert plugin itself does not allow for this, no. You would have to do it with some custom code in a PHP form submission plugin.

-- hugh
 
I happened to be working on the upsert plugin today, so I'm adding a "Condition", the same as various other form plugins (email, redirect, etc), whereby you can specify some PHP to run which can abort the plugin by returning false. I hope to get the code committed to github later today, I'll update this thread when I commit it.

-- hugh
 
Back
Top