(my english is bad)
I need send external data like this:
$id_external_table = $_GET["id_table"];
...
$crud->callback_before_insert(array($this,'function1'), $id_external_table);
...
function function1($post_array, $id_external_table) {
$post_array['id_external_table'] = $id_external_table;
return $post_array;
}
But don't work, How is the correct method?