Completed
Push — master ( 08b419...0b3013 )
by Chris
03:02
created
eduadmin-wp-klarna-checkout.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
 	along with this program. If not, see <http://www.gnu.org/licenses/>.
30 30
  */
31 31
 
32
-add_action( 'admin_init', function () {
33
-	if ( is_admin() && current_user_can( 'activate_plugins' ) && ( ! is_plugin_active( 'eduadmin-booking/eduadmin.php' ) && ! is_plugin_active( 'eduadmin/eduadmin.php' ) ) ) {
34
-		add_action( 'admin_notices', function () {
32
+add_action( 'admin_init', function() {
33
+	if ( is_admin() && current_user_can( 'activate_plugins' ) && ( !is_plugin_active( 'eduadmin-booking/eduadmin.php' ) && !is_plugin_active( 'eduadmin/eduadmin.php' ) ) ) {
34
+		add_action( 'admin_notices', function() {
35 35
 			?>
36 36
             <div class="error">
37 37
                 <p><?php esc_html_e( 'This plugin requires the EduAdmin-WordPress-plugin to be installed and activated.', 'eduadmin-wp-klarna-checkout' ); ?></p>
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
 	}
46 46
 } );
47 47
 
48
-if ( ! class_exists( 'EDU_KlarnaCheckout_Loader' ) ) {
48
+if ( !class_exists( 'EDU_KlarnaCheckout_Loader' ) ) {
49 49
 	final class EDU_KlarnaCheckout_Loader {
50 50
 		public function __construct() {
51 51
 			add_action( 'plugins_loaded', array( $this, 'init' ) );
52 52
 		}
53 53
 
54 54
 		public function init() {
55
-			if ( ! class_exists( 'Klarna_Checkout_Connector' ) ) {
55
+			if ( !class_exists( 'Klarna_Checkout_Connector' ) ) {
56 56
 				require_once __DIR__ . '/klarna_kco_php_4.0.0/src/Klarna/Checkout.php';
57 57
 			}
58 58
 
Please login to merge, or discard this patch.
class-edu-klarnacheckout.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 defined( 'ABSPATH' ) || die( 'This plugin must be run within the scope of WordPress.' );
3 3
 
4
-if ( ! class_exists( 'EDU_KlarnaCheckout' ) ) {
4
+if ( !class_exists( 'EDU_KlarnaCheckout' ) ) {
5 5
 	class EDU_KlarnaCheckout extends EDU_Integration {
6 6
 		public function __construct() {
7 7
 			$this->id          = 'eduadmin-klarnacheckout';
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
 			$ebi = new EduAdmin_BookingInfo( $event_booking, $_customer, $_contact );
67 67
 
68
-			if ( ! empty( EDU()->session['klarna-order-id'] ) && ! empty( $_GET['klarna_order_id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) {
68
+			if ( !empty( EDU()->session['klarna-order-id'] ) && !empty( $_GET['klarna_order_id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) {
69 69
 				do_action( 'eduadmin-bookingcompleted', $ebi );
70 70
 			} else {
71 71
 				do_action( 'eduadmin-processbooking', $ebi );
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 				return;
81 81
 			}
82 82
 
83
-			if ( ! empty( $_POST['act'] ) && ( 'bookCourse' === $_POST['act'] || 'bookProgramme' === $_POST['act'] ) ) {
83
+			if ( !empty( $_POST['act'] ) && ( 'bookCourse' === $_POST['act'] || 'bookProgramme' === $_POST['act'] ) ) {
84 84
 				$ebi->NoRedirect = true;
85 85
 			}
86 86
 		}
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
 			if ( 'no' === $this->get_option( 'enabled', 'no' ) ) {
108 108
 				return;
109 109
 			}
110
-			$checkout_url  = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
110
+			$checkout_url  = !checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
111 111
 			$shared_secret = $this->get_option( 'shared_secret', '' );
112 112
 
113
-			if ( ! empty( $_GET['klarna_order_id'] ) && ! empty( EDU()->session['klarna-order-id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) {
113
+			if ( !empty( $_GET['klarna_order_id'] ) && !empty( EDU()->session['klarna-order-id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) {
114 114
 				try {
115 115
 					$connector = Klarna_Checkout_Connector::create(
116 116
 						$shared_secret,
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 		 */
177 177
 		public function create_checkout( $ebi = null ) {
178 178
 
179
-			$checkout_url  = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
179
+			$checkout_url  = !checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
180 180
 			$shared_secret = $this->get_option( 'shared_secret', '' );
181 181
 
182 182
 			$create = array();
@@ -194,11 +194,11 @@  discard block
 block discarded – undo
194 194
 			$booking_id           = 0;
195 195
 			$programme_booking_id = 0;
196 196
 
197
-			if ( ! empty( $ebi->EventBooking['BookingId'] ) ) {
197
+			if ( !empty( $ebi->EventBooking['BookingId'] ) ) {
198 198
 				$booking_id = intval( $ebi->EventBooking['BookingId'] );
199 199
 			}
200 200
 
201
-			if ( ! empty( $ebi->EventBooking['ProgrammeBookingId'] ) ) {
201
+			if ( !empty( $ebi->EventBooking['ProgrammeBookingId'] ) ) {
202 202
 				$programme_booking_id = intval( $ebi->EventBooking['ProgrammeBookingId'] );
203 203
 			}
204 204
 
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 				$cart_item['name']      = $order_row['Description'];
240 240
 				$cart_item['quantity']  = intval( $order_row['Quantity'] );
241 241
 
242
-				if ( ! $order_row['PriceIncVat'] ) {
242
+				if ( !$order_row['PriceIncVat'] ) {
243 243
 					$price_per_unit = $order_row['PricePerUnit'] * ( 1 + ( $order_row['VatPercent'] / 100 ) ) * 100;
244 244
 				} else {
245 245
 					$price_per_unit = $order_row['PricePerUnit'] * 100;
@@ -276,8 +276,8 @@  discard block
 block discarded – undo
276 276
 		}
277 277
 
278 278
 		public function process_paymentstatus() {
279
-			if ( ! empty( $_GET['klarna_order_id'] ) && ! empty( $_GET['status'] ) ) {
280
-				$checkout_url  = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
279
+			if ( !empty( $_GET['klarna_order_id'] ) && !empty( $_GET['status'] ) ) {
280
+				$checkout_url  = !checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL;
281 281
 				$shared_secret = $this->get_option( 'shared_secret', '' );
282 282
 
283 283
 				try {
Please login to merge, or discard this patch.