'enabled is missing']); } public static function mode($value) { if ($value == 1){ return "no"; } if ($value == 0){ return "yes"; } http_response_code(400); wp_send_json_error(['error' => 'mode is missing']); } public static function payment_method($value) { if ( !empty($value) && in_array($value, ['redirect', 'popup', 'integrated']) ) { return true; } http_response_code(400); wp_send_json_error(['error' => 'payment_method is missing']); } public static function debug($value) { if ($value == 1){ return "yes"; } if ($value == 0){ return "no"; } http_response_code(400); wp_send_json_error(['error' => 'mode is missing']); return "no"; } public static function oneclick($value) { if ($value == 1){ return "yes"; } if ($value == 0){ return "no"; } http_response_code(400); wp_send_json_error(['error' => 'oneclick is missing']); } public static function genericPaymentGateway($value, $payment, $test_mode) { if($test_mode){ return "no"; } if ($value == 1){ return "yes"; } if ($value == 0){ return "no"; } http_response_code(400); wp_send_json_error(['error' => $payment . ' is missing']); } public static function oney($value) { if ($value == 1){ return "yes"; } return "no"; http_response_code(400); wp_send_json_error(['error' => 'oney is missing']); } public static function oney_type($value) { if (isset($value) && !empty($value)) { if (in_array($value, ['with_fees', 'without_fees'])) { return true; } } return false; } public static function oney_thresholds($min, $max) { $rmin = 100; $rmax = 3000; if( $min > 99 && $min<$max){ $rmin = $min; } if( $max <= 3000 && $max>$min ){ $rmax = $max; } return array("min"=>$rmin, "max"=>$rmax); } public static function oney_product_animation($status){ if($status){ return "yes"; }else{ return "no"; } } }