You are here

public function StateMachine_Event::get_option in State Machine 7.2

Same name and namespace in other branches
  1. 7.3 inc/base.inc \StateMachine_Event::get_option()

Return a specific key value from the $options array

File

inc/base.inc, line 295
base.inc

Class

StateMachine_Event

Code

public function get_option($key) {
  return array_key_exists($key, $this->options) ? $this->options[$key] : FALSE;
}