public function StateMachine_State::on_exit in State Machine 7.2
Same name and namespace in other branches
- 6 inc/base.inc \StateMachine_State::on_exit()
- 7.3 inc/base.inc \StateMachine_State::on_exit()
- 7 inc/base.inc \StateMachine_State::on_exit()
Called when exiting out of this state.
File
Class
Code
public function on_exit() {
$args = func_get_args();
if (!empty($this->options['on_exit'])) {
call_user_func_array($this->options['on_exit'], $args);
}
}