You are here

public function StateMachine_Event::finish in State Machine 6

Same name and namespace in other branches
  1. 7.3 inc/base.inc \StateMachine_Event::finish()
  2. 7 inc/base.inc \StateMachine_Event::finish()
  3. 7.2 inc/base.inc \StateMachine_Event::finish()

Allow the event to finish after the machine has changed state.

File

inc/base.inc, line 286

Class

StateMachine_Event

Code

public function finish() {
  if (!empty($this->options['after_transition'])) {
    call_user_func($this->options['after_transition']);
  }
}