codeigniter-base-model icon indicating copy to clipboard operation
codeigniter-base-model copied to clipboard

after_delete should also pass the original arguments

Open Cipa opened this issue 8 years ago • 0 comments

public function delete($id) ..... $this->trigger('before_delete', $id); I can do stuff with the id

$this->trigger('after_delete', $result); No id passed so maybe $result should be array('result' => $result, 'id' => $id)

Cipa avatar Jul 29 '16 19:07 Cipa