From aec4d160f56fb67b04e86cd6df9d284d7be26700 Mon Sep 17 00:00:00 2001 From: Remco Tolsma Date: Thu, 19 Dec 2024 20:17:29 +0100 Subject: [PATCH] Update pronamic-ideal.php --- pronamic-ideal.php | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/pronamic-ideal.php b/pronamic-ideal.php index fc90a034..b471d53a 100755 --- a/pronamic-ideal.php +++ b/pronamic-ideal.php @@ -174,8 +174,6 @@ function ( $value, $post_id, $meta_key, $single ) { $sisow_test_mode = get_post_meta( $post_id, '_pronamic_gateway_sisow_test_mode', true ); return ( 'test' === $mode || '' !== $sisow_test_mode ) ? 'sisow-buckaroo-test' : 'sisow-buckaroo'; - case 'sisow-ideal-basic': - return ( 'test' === $mode ) ? 'sisow-ideal-basic-test' : 'sisow-ideal-basic'; } return $value; @@ -546,33 +544,6 @@ function ( $gateways ) { ] ); - // Sisow - iDEAL Basic. - $gateways[] = new \Pronamic\WordPress\Pay\Gateways\IDealBasic\Integration( - [ - 'id' => 'sisow-ideal-basic', - 'name' => 'Sisow - iDEAL Basic', - 'mode' => 'live', - 'provider' => 'sisow', - 'url' => 'https://www.sisow.nl/', - 'dashboard_url' => 'https://www.sisow.nl/Sisow/iDeal/Login.aspx', - 'deprecated' => true, - 'acquirer_url' => 'https://www.sisow.nl/Sisow/iDeal/IssuerHandler.ashx', - ] - ); - - $gateways[] = new \Pronamic\WordPress\Pay\Gateways\IDealBasic\Integration( - [ - 'id' => 'sisow-ideal-basic-test', - 'name' => 'Sisow - iDEAL Basic - Test', - 'mode' => 'test', - 'provider' => 'sisow', - 'url' => 'https://www.sisow.nl/', - 'dashboard_url' => 'https://www.sisow.nl/Sisow/iDeal/Login.aspx', - 'deprecated' => true, - 'acquirer_url' => 'https://www.sisow.nl/Sisow/iDeal/IssuerHandler.ashx/test', - ] - ); - // Return gateways. return $gateways; }