Example #1
0
 public static function functionAvailable($functionName)
 {
     return function_exists($functionName) && !Morse::functionDisabled($functionName);
 }
Example #2
0
 /**
  *	@fn my_morse_decode
  *	@short Filter method to decode a Morse encoded response body to plain text.
  */
 protected function my_morse_decode()
 {
     $this->response->body = Morse::decode($this->response->body);
 }