public function StateMachine_Event::get_option in State Machine 7.2
Same name and namespace in other branches
- 7.3 inc/base.inc \StateMachine_Event::get_option()
Return a specific key value from the $options array
File
Class
Code
public function get_option($key) {
return array_key_exists($key, $this->options) ? $this->options[$key] : FALSE;
}