Added onAfterInsert and onAfterUpdate Events in tform actions
| | |
| | | foreach($this->plugins as $plugin) {
|
| | | $plugin->onInsert();
|
| | | }
|
| | | |
| | | $this->onAfterUpdate();
|
| | |
|
| | | if($_REQUEST["next_tab"] == '') {
|
| | | $list_name = $_SESSION["s"]["form"]["return_to"];
|
| | |
| | | foreach($this->plugins as $plugin) {
|
| | | $plugin->onInsert();
|
| | | }
|
| | | |
| | | $this->onAfterInsert();
|
| | |
|
| | | if($_REQUEST["next_tab"] == '') {
|
| | | $list_name = $_SESSION["s"]["form"]["return_to"];
|
| | |
| | | $this->onError();
|
| | | }
|
| | | }
|
| | | |
| | | function onAfterUpdate() {
|
| | | global $app, $conf;
|
| | | }
|
| | | |
| | | function onAfterInsert() {
|
| | | global $app, $conf;
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Function called on data insert or update error
|