2 callbacks after insert/update possible?
- Single Page
Posted 22 April 2012 - 09:58 AM
Posted 22 April 2012 - 10:29 AM
Posted 22 April 2012 - 10:51 AM
function callback_1($post_array,$primary_key) {
//Your code here
$this->callback_2($post_array,$primary_key);
$this->callback_3($post_array,$primary_key);
return true;
}
or something similar to this.