Falcon_Admin::validate_handler_options PHP Method

validate_handler_options() public static method

Validate the handler-specific options via the handler's methods
See also: self::init()
public static validate_handler_options ( $input )
    public static function validate_handler_options($input)
    {
        if (self::$wipe_handler_options) {
            return array();
        }
        try {
            $handler = Falcon::get_handler_class();
        } catch (Exception $e) {
            return array();
        }
        return $handler::validate_options($input);
    }