Completed
Branch FET-8347-separate-logging (f2247f)
by
unknown
474:58 queued 460:10
created
modules/mijireh_payment_checker/EED_Mijireh_Payment_Checker.module.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  * @author				Mike Nelson
20 20
  *
21 21
  */
22
-class EED_Mijireh_Payment_Checker extends EED_Module{
22
+class EED_Mijireh_Payment_Checker extends EED_Module {
23 23
 
24 24
 	/**
25 25
 	 * 	set_hooks - for hooking into EE Core, other modules, etc
@@ -40,18 +40,18 @@  discard block
 block discarded – undo
40 40
 	 *  @return 	void
41 41
 	 */
42 42
 	public static function set_hooks_admin() {
43
-		add_action( 'AHEE__Transactions_Admin_Page__transaction_details__start', array( 'EED_Mijireh_Payment_Checker', 'check_for_payment_update_on_transaction' ), 10, 1 );
43
+		add_action('AHEE__Transactions_Admin_Page__transaction_details__start', array('EED_Mijireh_Payment_Checker', 'check_for_payment_update_on_transaction'), 10, 1);
44 44
 	}
45 45
 
46
-	public static function check_for_payment_update_on_transaction( $transaction ) {
47
-		if( $transaction instanceof EE_Transaction ) {
46
+	public static function check_for_payment_update_on_transaction($transaction) {
47
+		if ($transaction instanceof EE_Transaction) {
48 48
 			$last_payment = $transaction->last_payment();
49 49
 			//if this payment is from Mijireh and so far unapproved
50
-			if( $last_payment instanceof EE_Payment &&
50
+			if ($last_payment instanceof EE_Payment &&
51 51
 					$last_payment->payment_method() &&
52 52
 					$last_payment->payment_method()->type_obj() instanceof EE_PMT_Mijireh &&
53
-					$last_payment->status() != EEM_Payment::status_id_approved ) {
54
-				$updated_payment = $last_payment->payment_method()->type_obj()->handle_ipn( NULL, $transaction );
53
+					$last_payment->status() != EEM_Payment::status_id_approved) {
54
+				$updated_payment = $last_payment->payment_method()->type_obj()->handle_ipn(NULL, $transaction);
55 55
 				$updated_payment->save();
56 56
 			}
57 57
 		}
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 *  @access 	public
63 63
 	 *  @return 	void
64 64
 	 */
65
-	public function run( $WP ) {
65
+	public function run($WP) {
66 66
 	}
67 67
 }
68 68
 
Please login to merge, or discard this patch.
caffeinated/modules/mijireh_slurper/EED_Mijireh_Slurper.module.php 3 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -110,10 +110,10 @@  discard block
 block discarded – undo
110 110
 	}
111 111
 
112 112
 	/**
113
-	* Return true if the current page is the mijireh checkout page, otherwise return false.
114
-	*
115
-	* @return boolean
116
-	*/
113
+	 * Return true if the current page is the mijireh checkout page, otherwise return false.
114
+	 *
115
+	 * @return boolean
116
+	 */
117 117
 	public static function is_slurp_page() {
118 118
 		global $post;
119 119
 		$isSlurp = false;
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
 	}
131 131
 
132 132
 	/**
133
-	* adds the callback to adding the slurp page metabox, which shoudl only appear on a page with the {{mj-checkout-form}} "shortcode"
134
-	* @return void
135
-	*/
133
+	 * adds the callback to adding the slurp page metabox, which shoudl only appear on a page with the {{mj-checkout-form}} "shortcode"
134
+	 * @return void
135
+	 */
136 136
 	public static function add_slurp_page_metabox() {
137 137
 		if(self::is_slurp_page() && EEM_Payment_Method::instance()->get_one_active( EEM_Payment_Method::scope_cart, array( array( 'PMD_type' => 'Mijireh' ) ) ) ){
138 138
 			add_meta_box(
@@ -147,10 +147,10 @@  discard block
 block discarded – undo
147 147
 	}
148 148
 
149 149
 	/**
150
-	* outputs HTML for displaying the slurping metabox
151
-	* @param WP_Post $post
152
-	* @return void echoes out html
153
-	*/
150
+	 * outputs HTML for displaying the slurping metabox
151
+	 * @param WP_Post $post
152
+	 * @return void echoes out html
153
+	 */
154 154
 	public static function slurp_page_metabox($post) {
155 155
 	   global $wp;
156 156
 	   $mijireh_payment_method = EEM_Payment_Method::instance()->get_one_of_type( 'Mijireh' );
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
 	}
169 169
 
170 170
 	/**
171
-	* decides whether to slurp the post indicated by the $post global or not, based entirely
172
-	* on a special arg being in the querystring
173
-	* @return void
174
-	*/
171
+	 * decides whether to slurp the post indicated by the $post global or not, based entirely
172
+	 * on a special arg being in the querystring
173
+	 * @return void
174
+	 */
175 175
 	public static function slurp_or_not(){
176 176
 	  //check if this page has the right mijire 'shortcode' and if they've specified to slurp it
177 177
 	  if(isset($_GET['mijireh_slurp_now']) && $_GET['mijireh_slurp_now'] == 'true' && EED_Mijireh_Slurper::is_slurp_page()){
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
 	}
181 181
 
182 182
 	/**
183
-	* Sends a request to mijireh to slurp the current $post, and then redirects the user back to the current page without the
184
-	* special querystring arg indicating to slurp. Also, should temporarily make the current post published, then revert it to its previous status
185
-	*/
183
+	 * Sends a request to mijireh to slurp the current $post, and then redirects the user back to the current page without the
184
+	 * special querystring arg indicating to slurp. Also, should temporarily make the current post published, then revert it to its previous status
185
+	 */
186 186
 	public static function slurp_now(){
187 187
 		global $post;
188 188
 		if ( $post->post_status != 'publish' ) {
Please login to merge, or discard this patch.
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -49,19 +49,19 @@  discard block
 block discarded – undo
49 49
 	 *  @return 	void
50 50
 	 */
51 51
 	public static function set_hooks_admin() {
52
-		define('EED_MIJIREH_SLURPER_PATH',EE_CAFF_PATH.'modules'.DS.'mijireh_slurper'.DS);
53
-		add_action('load-post.php',array('EED_Mijireh_Slurper','set_edit_post_page_hooks'));
54
-		add_action('load-admin.php',array('EED_Mijireh_Slurper','check_for_edit_slurp_page'));
55
-		add_action('AHEE__EE_Mijireh__settings_end',array('EED_Mijireh_Slurper','add_slurp_link_to_gateway'));
52
+		define('EED_MIJIREH_SLURPER_PATH', EE_CAFF_PATH.'modules'.DS.'mijireh_slurper'.DS);
53
+		add_action('load-post.php', array('EED_Mijireh_Slurper', 'set_edit_post_page_hooks'));
54
+		add_action('load-admin.php', array('EED_Mijireh_Slurper', 'check_for_edit_slurp_page'));
55
+		add_action('AHEE__EE_Mijireh__settings_end', array('EED_Mijireh_Slurper', 'add_slurp_link_to_gateway'));
56 56
 	}
57 57
 	/**
58 58
 	 * Merely used to avoid even bothering to add these hooks on pages besides admin's post.php
59 59
 	 */
60
-	public static function set_edit_post_page_hooks(){
61
-		add_action('add_meta_boxes',array('EED_Mijireh_Slurper','add_slurp_page_metabox'));
62
-		add_action('posts_selection',array('EED_Mijireh_Slurper','slurp_or_not'));
63
-		if(get_transient(EED_Mijireh_Slurper::slurp_started_transient_name)){
64
-			add_action( 'admin_notices', array('EED_Mijireh_Slurper', 'slurping_in_progress_notice') );
60
+	public static function set_edit_post_page_hooks() {
61
+		add_action('add_meta_boxes', array('EED_Mijireh_Slurper', 'add_slurp_page_metabox'));
62
+		add_action('posts_selection', array('EED_Mijireh_Slurper', 'slurp_or_not'));
63
+		if (get_transient(EED_Mijireh_Slurper::slurp_started_transient_name)) {
64
+			add_action('admin_notices', array('EED_Mijireh_Slurper', 'slurping_in_progress_notice'));
65 65
 			delete_transient(EED_Mijireh_Slurper::slurp_started_transient_name);
66 66
 		}
67 67
 	}
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 	 * Adds the slurping content to the gateway's settings page, because I thought this was best suited to remain in the module's code (because
71 71
 	 * the gateway works fine independent of this module)
72 72
 	 */
73
-	public static function add_slurp_link_to_gateway($existing_content){
74
-		echo EEH_Template::display_template( EED_MIJIREH_SLURPER_PATH.'templates/additional_content_on_gateway.template.php', array(),true ) . $existing_content;
73
+	public static function add_slurp_link_to_gateway($existing_content) {
74
+		echo EEH_Template::display_template(EED_MIJIREH_SLURPER_PATH.'templates/additional_content_on_gateway.template.php', array(), true).$existing_content;
75 75
 	}
76
-	public static function slurping_in_progress_notice(){
77
-		EEH_Template::display_template( EED_MIJIREH_SLURPER_PATH.'templates/slurping_in_progress_notice.template.php', array() );
76
+	public static function slurping_in_progress_notice() {
77
+		EEH_Template::display_template(EED_MIJIREH_SLURPER_PATH.'templates/slurping_in_progress_notice.template.php', array());
78 78
 	}
79 79
 
80 80
 	/**
@@ -83,10 +83,10 @@  discard block
 block discarded – undo
83 83
 	 * need to first make it). If the special arg is present, redirects the user to the slurp page's edit page
84 84
 	 * @return void
85 85
 	 */
86
-	public static function check_for_edit_slurp_page(){
87
-		if(isset($_GET['mijireh_edit_slurp_page']) && $_GET['mijireh_edit_slurp_page'] == 'true'){
86
+	public static function check_for_edit_slurp_page() {
87
+		if (isset($_GET['mijireh_edit_slurp_page']) && $_GET['mijireh_edit_slurp_page'] == 'true') {
88 88
 			//check if we already have a slurping page
89
-			if( ! $slurp_page_id = self::find_slurp_page() ){
89
+			if ( ! $slurp_page_id = self::find_slurp_page()) {
90 90
 				//if no slurp page yet, make one
91 91
 				$slurp_page_id = wp_insert_post(
92 92
 					array(
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 					)
97 97
 				);
98 98
 			}
99
-			wp_redirect(add_query_arg(array('post'=>$slurp_page_id,'action'=>'edit'),admin_url('post.php')));
99
+			wp_redirect(add_query_arg(array('post'=>$slurp_page_id, 'action'=>'edit'), admin_url('post.php')));
100 100
 		}
101 101
 	}
102 102
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 * Gets the post id which has the {{mj-checkout-form}} "shortcode" in it, otherwise null
105 105
 	 * @return int
106 106
 	 */
107
-	public static function find_slurp_page(){
107
+	public static function find_slurp_page() {
108 108
 		global $wpdb;
109 109
 		return $wpdb->get_var("SELECT id FROM {$wpdb->posts} WHERE post_content LIKE '%".EED_Mijireh_Slurper::mijireh_slurper_shortcode."%'");
110 110
 	}
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
 	public static function is_slurp_page() {
118 118
 		global $post;
119 119
 		$isSlurp = false;
120
-		if(isset($post) && is_object($post)) {
120
+		if (isset($post) && is_object($post)) {
121 121
 			$content = $post->post_content;
122
-			if( strpos($content, EED_Mijireh_Slurper::mijireh_slurper_shortcode ) !== false ) {
122
+			if (strpos($content, EED_Mijireh_Slurper::mijireh_slurper_shortcode) !== false) {
123 123
 				$isSlurp = true;
124 124
 			}
125 125
 		}
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	* @return void
135 135
 	*/
136 136
 	public static function add_slurp_page_metabox() {
137
-		if(self::is_slurp_page() && EEM_Payment_Method::instance()->get_one_active( EEM_Payment_Method::scope_cart, array( array( 'PMD_type' => 'Mijireh' ) ) ) ){
137
+		if (self::is_slurp_page() && EEM_Payment_Method::instance()->get_one_active(EEM_Payment_Method::scope_cart, array(array('PMD_type' => 'Mijireh')))) {
138 138
 			add_meta_box(
139 139
 				'slurp_meta_box', // $id
140 140
 				'Mijireh Page Slurp', // $title
@@ -153,15 +153,15 @@  discard block
 block discarded – undo
153 153
 	*/
154 154
 	public static function slurp_page_metabox($post) {
155 155
 	   global $wp;
156
-	   $mijireh_payment_method = EEM_Payment_Method::instance()->get_one_of_type( 'Mijireh' );
157
-	   if( $mijireh_payment_method ){
158
-		$access_key = $mijireh_payment_method->get_extra_meta( 'access_key', TRUE );
156
+	   $mijireh_payment_method = EEM_Payment_Method::instance()->get_one_of_type('Mijireh');
157
+	   if ($mijireh_payment_method) {
158
+		$access_key = $mijireh_payment_method->get_extra_meta('access_key', TRUE);
159 159
 		EEH_Template::display_template(
160 160
 			EED_MIJIREH_SLURPER_PATH.'templates/mijireh_slurp_page_metabox.template.php',
161 161
 			 array(
162 162
 				 'mijireh_image_url'=> $mijireh_payment_method->button_url(),
163 163
 				 'access_key'=>$access_key,
164
-				 'slurp_action_link'=> esc_url_raw( add_query_arg('mijireh_slurp_now','true', add_query_arg( $wp->query_string, '',  '?'.$_SERVER['QUERY_STRING'] )))
164
+				 'slurp_action_link'=> esc_url_raw(add_query_arg('mijireh_slurp_now', 'true', add_query_arg($wp->query_string, '', '?'.$_SERVER['QUERY_STRING'])))
165 165
 			 )
166 166
 		 );
167 167
 	   }
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 	* on a special arg being in the querystring
173 173
 	* @return void
174 174
 	*/
175
-	public static function slurp_or_not(){
175
+	public static function slurp_or_not() {
176 176
 	  //check if this page has the right mijire 'shortcode' and if they've specified to slurp it
177
-	  if(isset($_GET['mijireh_slurp_now']) && $_GET['mijireh_slurp_now'] == 'true' && EED_Mijireh_Slurper::is_slurp_page()){
177
+	  if (isset($_GET['mijireh_slurp_now']) && $_GET['mijireh_slurp_now'] == 'true' && EED_Mijireh_Slurper::is_slurp_page()) {
178 178
 		  EED_Mijireh_Slurper::slurp_now();
179 179
 	  }
180 180
 	}
@@ -183,22 +183,22 @@  discard block
 block discarded – undo
183 183
 	* Sends a request to mijireh to slurp the current $post, and then redirects the user back to the current page without the
184 184
 	* special querystring arg indicating to slurp. Also, should temporarily make the current post published, then revert it to its previous status
185 185
 	*/
186
-	public static function slurp_now(){
186
+	public static function slurp_now() {
187 187
 		global $post;
188
-		if ( $post->post_status != 'publish' ) {
188
+		if ($post->post_status != 'publish') {
189 189
 			//make sure the post is published at least while slurping
190 190
 			$post->post_status = 'publish';
191 191
 			wp_update_post($post);
192 192
 		}
193
-		$mijireh_gateway = EEM_Payment_Method::instance()->get_one_of_type( 'Mijireh' );
194
-		$access_key = $mijireh_gateway->get_extra_meta( 'access_key', TRUE );
193
+		$mijireh_gateway = EEM_Payment_Method::instance()->get_one_of_type('Mijireh');
194
+		$access_key = $mijireh_gateway->get_extra_meta('access_key', TRUE);
195 195
 		// 'slurp_url'=>get_permalink($post),
196 196
 		// 'page_id'=>$post->ID,
197 197
 		// 'return_url'=>$return_url
198 198
 		$url = 'https://secure.mijireh.com/api/1/slurps';
199 199
 		$args = array(
200 200
 		  	'headers' => array(
201
-				'Authorization' => 'Basic ' . base64_encode( $access_key . ':' ),
201
+				'Authorization' => 'Basic '.base64_encode($access_key.':'),
202 202
 				'Accept'=>'application/json'
203 203
 			),
204 204
 			'body'=>json_encode(
@@ -209,12 +209,12 @@  discard block
 block discarded – undo
209 209
 				)
210 210
 			)
211 211
 		);
212
-		$response = wp_remote_post($url,$args);
212
+		$response = wp_remote_post($url, $args);
213 213
 		//now redirect the user back to the same page
214 214
 		$redirect_args = $_GET;
215 215
 		unset($redirect_args['mijireh_slurp_now']);
216
-		$url = add_query_arg($redirect_args,admin_url('post.php'));
217
-		set_transient(EED_Mijireh_Slurper::slurp_started_transient_name,true);
216
+		$url = add_query_arg($redirect_args, admin_url('post.php'));
217
+		set_transient(EED_Mijireh_Slurper::slurp_started_transient_name, true);
218 218
 		// echo "redirect to $url";
219 219
 		wp_redirect($url);
220 220
 	}
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 	 *  @access 	public
226 226
 	 *  @return 	void
227 227
 	 */
228
-	public function run( $WP ) {
228
+	public function run($WP) {
229 229
 	}
230 230
 
231 231
 }
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -122,8 +124,7 @@  discard block
 block discarded – undo
122 124
 			if( strpos($content, EED_Mijireh_Slurper::mijireh_slurper_shortcode ) !== false ) {
123 125
 				$isSlurp = true;
124 126
 			}
125
-		}
126
-		else {
127
+		} else {
127 128
 			// echo '[' . basename(__FILE__) . ' - line ' . __LINE__ . "] Check Slurp Page Failed: " . print_r($post, 1);
128 129
 		}
129 130
 		return $isSlurp;
Please login to merge, or discard this patch.
mijireh_slurper/templates/additional_content_on_gateway.template.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <tr>
2
-	<th><?php _e("Mijireh Checkout Page Design", 'event_espresso');?><?php echo EEH_Template::get_help_tab_link( 'ee_mijireh_help_tab' ); ?></th>
2
+	<th><?php _e("Mijireh Checkout Page Design", 'event_espresso'); ?><?php echo EEH_Template::get_help_tab_link('ee_mijireh_help_tab'); ?></th>
3 3
 	<td>
4
-		<a href="?mijireh_edit_slurp_page=true"><?php _e("Edit Slurp Page", 'event_espresso');?></a>
4
+		<a href="?mijireh_edit_slurp_page=true"><?php _e("Edit Slurp Page", 'event_espresso'); ?></a>
5 5
 	</td>
6 6
 </tr>
7 7
\ No newline at end of file
Please login to merge, or discard this patch.
modules/mijireh_slurper/templates/mijireh_slurp_page_metabox.template.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
    <div id='mijireh_notice' class='mijireh-info alert-message info' data-alert='alert'>
2
-      <div class='mijireh-logo'><img src='<?php echo $mijireh_image_url;?>' alt='<?php printf( esc_attr__( '%s Checkout Logo', 'event_espresso' ), 'Mijereh' ); ?>'></div>
2
+      <div class='mijireh-logo'><img src='<?php echo $mijireh_image_url; ?>' alt='<?php printf(esc_attr__('%s Checkout Logo', 'event_espresso'), 'Mijereh'); ?>'></div>
3 3
       <div class='mijireh-blurb'>
4
-		  <h2><?php _e("Slurp Into Mijireh", 'event_espresso');?></h2>
5
-		  <p><?php printf(__("Design the page how you want, and be sure to include the special text {{mj-checkout-form}} to indicate where to place Mijireh's Checkout Form. You may want to read %s Mijireh's instructions on slurping%s.", 'event_espresso'),"<a href='http://www.mijireh.com/docs/what-is-page-slurp/'>","</a>");?>
4
+		  <h2><?php _e("Slurp Into Mijireh", 'event_espresso'); ?></h2>
5
+		  <p><?php printf(__("Design the page how you want, and be sure to include the special text {{mj-checkout-form}} to indicate where to place Mijireh's Checkout Form. You may want to read %s Mijireh's instructions on slurping%s.", 'event_espresso'), "<a href='http://www.mijireh.com/docs/what-is-page-slurp/'>", "</a>"); ?>
6 6
 
7 7
         <p class='aligncenter'><a href='<?php echo $slurp_action_link?>' id='page_slurp' class='button-primary'>Slurp This Page!</a></p>
8 8
         <p class="aligncenter"><a class="nobold" href="https://secure.mijireh.com/checkout/<?php echo $access_key?>" id="view_slurp" target="_new">Preview Checkout Page</a></p>
Please login to merge, or discard this patch.
modules/mijireh_slurper/templates/slurping_in_progress_notice.template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,3 +1,3 @@
 block discarded – undo
1 1
 <div class="updated">
2
-        <p><?php _e( "Mijireh is currently slurping your content. This will usually take a few minutes. Please login to Mijireh to see the slurp's progress", 'event_espresso' ); ?></p>
2
+        <p><?php _e("Mijireh is currently slurping your content. This will usually take a few minutes. Please login to Mijireh to see the slurp's progress", 'event_espresso'); ?></p>
3 3
     </div>
4 4
\ No newline at end of file
Please login to merge, or discard this patch.
caffeinated/payment_methods/Aim/EE_PMT_Aim.pm.php 2 patches
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 
6 6
 /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * ------------------------------------------------------------------------
27 27
  */
28
-class EE_PMT_Aim extends EE_PMT_Base{
28
+class EE_PMT_Aim extends EE_PMT_Base {
29 29
 
30 30
 
31 31
 	/**
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 		require_once($this->file_folder().'EEG_Aim.gateway.php');
38 38
 		$this->_gateway = new EEG_AIM();
39 39
 		$this->_pretty_name = __("Authorize.net AIM", 'event_espresso');
40
-		$this->_default_description = __( 'Please provide the following billing information.', 'event_espresso' );
40
+		$this->_default_description = __('Please provide the following billing information.', 'event_espresso');
41 41
 		$this->_requires_https = true;
42 42
 		parent::__construct($pm_instance);
43 43
 	}
@@ -47,26 +47,26 @@  discard block
 block discarded – undo
47 47
 	 * @param \EE_Transaction $transaction
48 48
 	 * @return EE_Billing_Info_Form
49 49
 	 */
50
-	public function generate_new_billing_form( EE_Transaction $transaction = NULL ) {
51
-		$billing_form = new EE_Billing_Attendee_Info_Form($this->_pm_instance,array(
50
+	public function generate_new_billing_form(EE_Transaction $transaction = NULL) {
51
+		$billing_form = new EE_Billing_Attendee_Info_Form($this->_pm_instance, array(
52 52
 			'name'=>'AIM_Form',
53 53
 			'subsections'=>array(
54 54
 				'credit_card'=>new EE_Credit_Card_Input(array(
55 55
 					'required'=>true,
56
-					'html_label_text' => __( 'Card Number', 'event_espresso' )
56
+					'html_label_text' => __('Card Number', 'event_espresso')
57 57
 				)),
58 58
 				'exp_month'=>new EE_Credit_Card_Month_Input(true, array(
59 59
 					'required'=>true,
60
-					'html_label_text' => __( 'Expiry Month', 'event_espresso' )
60
+					'html_label_text' => __('Expiry Month', 'event_espresso')
61 61
 				)),
62
-				'exp_year'=>new EE_Credit_Card_Year_Input( array( '
62
+				'exp_year'=>new EE_Credit_Card_Year_Input(array('
63 63
 					required'=> true,
64
-					'html_label_text' => __( 'Expiry Year', 'event_espresso' ) ) ),
65
-				'cvv'=>new EE_CVV_Input( array(
66
-					'html_label_text' => __( 'CVV', 'event_espresso' ) ) ),
64
+					'html_label_text' => __('Expiry Year', 'event_espresso'))),
65
+				'cvv'=>new EE_CVV_Input(array(
66
+					'html_label_text' => __('CVV', 'event_espresso') )),
67 67
 			)
68 68
 		));
69
-		return $this->apply_billing_form_debug_settings( $billing_form );
69
+		return $this->apply_billing_form_debug_settings($billing_form);
70 70
 	}
71 71
 
72 72
 
@@ -78,17 +78,17 @@  discard block
 block discarded – undo
78 78
 	 * @param \EE_Billing_Info_Form $billing_form
79 79
 	 * @return \EE_Billing_Info_Form
80 80
 	 */
81
-	public function apply_billing_form_debug_settings( EE_Billing_Info_Form $billing_form ) {
82
-		if ( $this->_pm_instance->debug_mode() || $this->_pm_instance->get_extra_meta( 'test_transactions', TRUE, FALSE )) {
83
-			$billing_form->get_input( 'credit_card' )->set_default( '4007000000027' );
84
-			$billing_form->get_input( 'exp_year' )->set_default( '2020' );
85
-			$billing_form->get_input( 'cvv' )->set_default(( '123' ));
81
+	public function apply_billing_form_debug_settings(EE_Billing_Info_Form $billing_form) {
82
+		if ($this->_pm_instance->debug_mode() || $this->_pm_instance->get_extra_meta('test_transactions', TRUE, FALSE)) {
83
+			$billing_form->get_input('credit_card')->set_default('4007000000027');
84
+			$billing_form->get_input('exp_year')->set_default('2020');
85
+			$billing_form->get_input('cvv')->set_default(('123'));
86 86
 			$billing_form->add_subsections(
87
-				array( 'fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html() ),
87
+				array('fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html()),
88 88
 				'credit_card'
89 89
 			);
90 90
 			$billing_form->add_subsections(
91
-				array( 'debug_content' => new EE_Form_Section_HTML_From_Template( dirname(__FILE__).DS.'templates'.DS.'authorize_net_aim_debug_info.template.php' )),
91
+				array('debug_content' => new EE_Form_Section_HTML_From_Template(dirname(__FILE__).DS.'templates'.DS.'authorize_net_aim_debug_info.template.php')),
92 92
 				'first_name'
93 93
 			);
94 94
 		}
@@ -107,17 +107,17 @@  discard block
 block discarded – undo
107 107
 				'extra_meta_inputs'=>array(
108 108
 					'login_id'=>new EE_Text_Input(
109 109
 						array(
110
-							'html_label_text'=>  sprintf( __("Authorize.net API Login ID %s", "event_espresso"),  $this->get_help_tab_link() ),
110
+							'html_label_text'=>  sprintf(__("Authorize.net API Login ID %s", "event_espresso"), $this->get_help_tab_link()),
111 111
 							'required' => true )
112 112
 					),
113 113
 					'transaction_key'=>new EE_Text_Input(
114 114
 						array(
115
-							'html_label_text'=> sprintf( __("Authorize.net Transaction Key %s", "event_espresso"), $this->get_help_tab_link() ),
115
+							'html_label_text'=> sprintf(__("Authorize.net Transaction Key %s", "event_espresso"), $this->get_help_tab_link()),
116 116
 							'required' => true )
117 117
 					),
118 118
 					'test_transactions'=>new EE_Yes_No_Input(
119 119
 						array(
120
-							'html_label_text'=>  sprintf( __("Send test transactions? %s", 'event_espresso'),  $this->get_help_tab_link() ),
120
+							'html_label_text'=>  sprintf(__("Send test transactions? %s", 'event_espresso'), $this->get_help_tab_link()),
121 121
 							'html_help_text'=>  __("Send test transactions, even to live server", 'event_espresso'),
122 122
 							'required' => true
123 123
 						)
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 * @see EE_PMT_Base::help_tabs_config()
135 135
 	 * @return array
136 136
 	 */
137
-	public function help_tabs_config(){
137
+	public function help_tabs_config() {
138 138
 		return array(
139 139
 			$this->get_help_tab_name() => array(
140 140
 				'title' => __('Authorize.net AIM Settings', 'event_espresso'),
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 /**
6 7
  * Event Espresso
7 8
  *
Please login to merge, or discard this patch.
payment_methods/Aim/help_tabs/payment_methods_overview_aim.help_tab.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 <?php _e('Adjust the settings for the Authorize.net AIM payment gateway.', 'event_espresso'); ?>
4 4
 </p>
5 5
 <p>
6
-<?php printf( __( 'See %1$shere%2$s for list of currencies supported by Authorize.net AIM.', 'event_espresso' ), "<a href='http://www.authorize.net/international/'  target='_blank'>","</a>" ); ?>
6
+<?php printf(__('See %1$shere%2$s for list of currencies supported by Authorize.net AIM.', 'event_espresso'), "<a href='http://www.authorize.net/international/'  target='_blank'>", "</a>"); ?>
7 7
 </p>
8 8
 <h3><?php _e('Authorize.net AIM Settings', 'event_espresso'); ?></h3>
9 9
 <ul>
Please login to merge, or discard this patch.
payment_methods/Aim/templates/authorize_net_aim_debug_info.template.php 3 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -3,27 +3,27 @@
 block discarded – undo
3 3
 if (!defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 /**
6
- * Event Espresso
7
- *
8
- * Event Registration and Management Plugin for WordPress
9
- *
10
- * @ package			Event Espresso
11
- * @ author			Seth Shoultes
12
- * @ copyright		(c) 2008-2011 Event Espresso  All Rights Reserved.
13
- * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
14
- * @ link					http://www.eventespresso.com
15
- * @ version		 	4.3
16
- *
17
- * ------------------------------------------------------------------------
18
- *
19
- * authorize_net_aim_debug_info
20
- *
21
- * @package			Event Espresso
22
- * @subpackage
23
- * @author				Mike Nelson
24
- *
25
- * ------------------------------------------------------------------------
26
- */
6
+	 * Event Espresso
7
+	 *
8
+	 * Event Registration and Management Plugin for WordPress
9
+	 *
10
+	 * @ package			Event Espresso
11
+	 * @ author			Seth Shoultes
12
+	 * @ copyright		(c) 2008-2011 Event Espresso  All Rights Reserved.
13
+	 * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
14
+	 * @ link					http://www.eventespresso.com
15
+	 * @ version		 	4.3
16
+	 *
17
+	 * ------------------------------------------------------------------------
18
+	 *
19
+	 * authorize_net_aim_debug_info
20
+	 *
21
+	 * @package			Event Espresso
22
+	 * @subpackage
23
+	 * @author				Mike Nelson
24
+	 *
25
+	 * ------------------------------------------------------------------------
26
+	 */
27 27
 ?>
28 28
 	<div class="sandbox-panel">
29 29
 		<h2>
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 /**
6 6
  * Event Espresso
@@ -27,22 +27,22 @@  discard block
 block discarded – undo
27 27
 ?>
28 28
 	<div class="sandbox-panel">
29 29
 		<h2>
30
-			<?php _e( 'Authorize.net AIM Test Mode', 'event_espresso' ); ?>
30
+			<?php _e('Authorize.net AIM Test Mode', 'event_espresso'); ?>
31 31
 		</h2>
32 32
 
33 33
 		<p>
34
-			<?php _e( 'Test Mode allows you to submit test transactions to the payment gateway. Transactions that are submitted while Test Mode is ON are NOT actually processed. The result of a transaction depends on the card number submitted, and the invoice amount. If you want a transaction to be approved, use one of the following card numbers.', 'event_espresso' ); ?>
34
+			<?php _e('Test Mode allows you to submit test transactions to the payment gateway. Transactions that are submitted while Test Mode is ON are NOT actually processed. The result of a transaction depends on the card number submitted, and the invoice amount. If you want a transaction to be approved, use one of the following card numbers.', 'event_espresso'); ?>
35 35
 		</p>
36 36
 
37 37
 		<p>
38
-			<strong><?php _e( 'Example Card Numbers:', 'event_espresso' ); ?></strong>
38
+			<strong><?php _e('Example Card Numbers:', 'event_espresso'); ?></strong>
39 39
 		</p>
40 40
 
41 41
 		<p>
42
-			370000000000002 (<?php _e( 'American Express', 'event_espresso' ); ?>)<br/>
43
-			6011000000000012 (<?php _e( 'Discover', 'event_espresso' ); ?>)<br/>
44
-			5424000000000015 (<?php _e( 'MasterCard', 'event_espresso' ); ?>)<br/>
45
-			4007000000027 (<?php _e( 'Visa', 'event_espresso' ); ?>)
42
+			370000000000002 (<?php _e('American Express', 'event_espresso'); ?>)<br/>
43
+			6011000000000012 (<?php _e('Discover', 'event_espresso'); ?>)<br/>
44
+			5424000000000015 (<?php _e('MasterCard', 'event_espresso'); ?>)<br/>
45
+			4007000000027 (<?php _e('Visa', 'event_espresso'); ?>)
46 46
 		</p>
47 47
 	</div>
48 48
 <?php
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 /**
6 7
  * Event Espresso
7 8
  *
Please login to merge, or discard this patch.
caffeinated/payment_methods/Mijireh/EEG_Mijireh.gateway.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -169,14 +169,14 @@
 block discarded – undo
169 169
 		}
170 170
 	}
171 171
 /**
172
- * Handles the payment update (note: mijireh doesn't send an IPN in the usual sense,
173
- * instead they just redirect the user back to our website and then we need to query them
174
- * for the payment's status). Also note that the $update_info should be an array with the key
175
- * 'payment' containing the EEI_Payment to update
176
- * @param array $update_info unused. We just use the $transaction
177
- * @param EEI_Transaction $transaction
178
- * @throws EE_Error
179
- */
172
+	 * Handles the payment update (note: mijireh doesn't send an IPN in the usual sense,
173
+	 * instead they just redirect the user back to our website and then we need to query them
174
+	 * for the payment's status). Also note that the $update_info should be an array with the key
175
+	 * 'payment' containing the EEI_Payment to update
176
+	 * @param array $update_info unused. We just use the $transaction
177
+	 * @param EEI_Transaction $transaction
178
+	 * @throws EE_Error
179
+	 */
180 180
 	public function handle_payment_update($update_info, $transaction) {
181 181
 		$payment = $transaction instanceof EEI_Transaction ? $transaction->last_payment() : NULL;
182 182
 		if($payment && $payment instanceof EEI_Payment){
Please login to merge, or discard this patch.
Braces   +10 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 
6 7
 /**
7 8
  * Event Espresso
@@ -62,7 +63,7 @@  discard block
 block discarded – undo
62 63
 					'quantity'=>$line_item->quantity()
63 64
 				);
64 65
 			}
65
-		}else{//its a partial payment
66
+		} else{//its a partial payment
66 67
 			$tax_total = 0;
67 68
 			//partial payment, so just add 1 item
68 69
 			$items[] = array(
@@ -123,14 +124,14 @@  discard block
 block discarded – undo
123 124
 					foreach($response_body_as_array as $problem_parameter => $problems){
124 125
 						$problems_string.= sprintf(__('\nProblems with %s: %s','event_espresso'),$problem_parameter,implode(", ",$problems));
125 126
 					}
126
-				}else{
127
+				} else{
127 128
 					$problems_string = $response['body'];
128 129
 				}
129 130
 				if( $problems_string == ''){
130 131
 					//no message to show? wack
131 132
 					if( isset( $response[ 'headers' ][ 'status' ] ) ){
132 133
 						$problems_string = $response[ 'headers' ][ 'status' ];
133
-					}else{
134
+					} else{
134 135
 						$problems_string = __( 'No response from Mijireh', 'event_espresso' );
135 136
 					}
136 137
 				}
@@ -140,7 +141,7 @@  discard block
 block discarded – undo
140 141
 			$payment->set_redirect_url($response_body->checkout_url);
141 142
 			$payment->set_txn_id_chq_nmbr($response_body->order_number);
142 143
 			$payment->set_details($response['body']);
143
-		}else{
144
+		} else{
144 145
 			$error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'),implode(",",$response->get_error_messages()));
145 146
 			EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__ );
146 147
 			throw new EE_Error($error_message);
@@ -162,9 +163,9 @@  discard block
 block discarded – undo
162 163
 				$prepared_data[ $key ] = $this->_prepare_for_mijireh( $datum );
163 164
 			}
164 165
 			return $prepared_data;
165
-		}elseif(is_string( $data ) ){
166
+		} elseif(is_string( $data ) ){
166 167
 			return str_replace( '%', 'percent', $data );
167
-		}else{
168
+		} else{
168 169
 			return $data;
169 170
 		}
170 171
 	}
@@ -204,13 +205,13 @@  discard block
 block discarded – undo
204 205
 						$payment->set_status($this->_pay_model->declined_status());
205 206
 				}
206 207
 
207
-			}else{
208
+			} else{
208 209
 				$payment->set_gateway_response( __( 'Response from Mijireh could not be understood.', 'event_espresso' ) );
209 210
 				$payment->set_details( $response );
210 211
 				$payment->set_status( $this->_pay_model->failed_status() );
211 212
 			}
212 213
 			return $payment;
213
-		}else{
214
+		} else{
214 215
 			throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s",'event_espresso'),$transaction->ID()));
215 216
 		}
216 217
 	}
Please login to merge, or discard this patch.
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 
6 6
 /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * ------------------------------------------------------------------------
27 27
  */
28
-class EEG_Mijireh extends EE_Offsite_Gateway{
28
+class EEG_Mijireh extends EE_Offsite_Gateway {
29 29
 	protected $_access_key;
30 30
 
31 31
 	protected $_currencies_supported = EE_Gateway::all_currencies_supported;
@@ -51,10 +51,10 @@  discard block
 block discarded – undo
51 51
 		$primary_attendee = $primary_registrant->attendee();
52 52
 		$items = array();
53 53
 		//if we're are charging for the full amount, show the normal line items
54
-		if( $this->_can_easily_itemize_transaction_for( $payment )){
54
+		if ($this->_can_easily_itemize_transaction_for($payment)) {
55 55
 			$total_line_item = $transaction->total_line_item();
56 56
 			$tax_total = $total_line_item->get_total_tax();
57
-			foreach($total_line_item->get_items() as $line_item){
57
+			foreach ($total_line_item->get_items() as $line_item) {
58 58
 				$items[] = array(
59 59
 					'name'=>$line_item->name(),
60 60
 					'price'=>$this->format_currency($line_item->unit_price()),
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
 					'quantity'=>$line_item->quantity()
63 63
 				);
64 64
 			}
65
-		}else{//its a partial payment
65
+		} else {//its a partial payment
66 66
 			$tax_total = 0;
67 67
 			//partial payment, so just add 1 item
68 68
 			$items[] = array(
69
-				'name'=>  sprintf(__("Partial payment for registration %s", 'event_espresso'),$primary_registrant->reg_code()),
69
+				'name'=>  sprintf(__("Partial payment for registration %s", 'event_espresso'), $primary_registrant->reg_code()),
70 70
 				'price'=> $this->format_currency($payment->amount()),
71 71
 				'sku'=>$primary_registrant->reg_code(),
72 72
 				'quantity'=>1
@@ -75,18 +75,18 @@  discard block
 block discarded – undo
75 75
 		$order = array(
76 76
 			'total'=>$this->format_currency($payment->amount()),
77 77
 			'return_url'=>$return_url,
78
-			'items'=>$this->_prepare_for_mijireh( $items ),
78
+			'items'=>$this->_prepare_for_mijireh($items),
79 79
 			'email'=>$primary_attendee->email(),
80 80
 			'first_name'=>$primary_attendee->fname(),
81 81
 			'last_name'=>$primary_attendee->lname(),
82 82
 			'tax'=>$this->format_currency($tax_total),
83 83
 			'partner_id'=>'ee');
84 84
 		//setup address?
85
-		if(		$primary_attendee->address()  &&
86
-				$primary_attendee->city()  &&
87
-				$primary_attendee->state_name()  &&
88
-				$primary_attendee->country_name()  &&
89
-				$primary_attendee->zip()  ){
85
+		if ($primary_attendee->address() &&
86
+				$primary_attendee->city() &&
87
+				$primary_attendee->state_name() &&
88
+				$primary_attendee->country_name() &&
89
+				$primary_attendee->zip()) {
90 90
 			$shipping_address = array(
91 91
 				'first_name'=>$primary_attendee->fname(),
92 92
 				'last_name'=>$primary_attendee->lname(),
@@ -96,54 +96,54 @@  discard block
 block discarded – undo
96 96
 				'zip_code' => $primary_attendee->zip(),
97 97
 				'country' => $primary_attendee->country_name()
98 98
 			);
99
-			if( $primary_attendee->address2() ){
100
-				$shipping_address[ 'apt_suite' ] = $primary_attendee->address2();
99
+			if ($primary_attendee->address2()) {
100
+				$shipping_address['apt_suite'] = $primary_attendee->address2();
101 101
 			}
102
-			if( $primary_attendee->phone() ){
103
-				$shipping_address[ 'phone' ] = $primary_attendee->phone();
102
+			if ($primary_attendee->phone()) {
103
+				$shipping_address['phone'] = $primary_attendee->phone();
104 104
 			}
105
-			$order[ 'billing_address' ] = $shipping_address;
106
-			$order[ 'shipping_address' ] = $shipping_address;
105
+			$order['billing_address'] = $shipping_address;
106
+			$order['shipping_address'] = $shipping_address;
107 107
 		}
108
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this)) );
108
+		do_action('AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this)));
109 109
 				$args = array(
110 110
 		'headers' => array(
111
-			'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ),
111
+			'Authorization' => 'Basic '.base64_encode($this->_access_key.':'),
112 112
 			'Accept'=>'application/json'
113 113
 			),
114 114
 		'body'=>  json_encode($order)
115 115
 		);
116
-		$response = wp_remote_post( 'https://secure.mijireh.com/api/1/orders', $args );
117
-		$this->log(array('get checkout url request_args' => $args, 'response' => $response ), $payment);
118
-		if( ! $response instanceof WP_Error ){
116
+		$response = wp_remote_post('https://secure.mijireh.com/api/1/orders', $args);
117
+		$this->log(array('get checkout url request_args' => $args, 'response' => $response), $payment);
118
+		if ( ! $response instanceof WP_Error) {
119 119
 			$response_body = json_decode($response['body']);
120
-			if($response_body == NULL || ! isset($response_body->checkout_url)){
121
-				if( is_array( $response_body ) || is_object( $response_body)){
122
-					$response_body_as_array = (array)$response_body;
120
+			if ($response_body == NULL || ! isset($response_body->checkout_url)) {
121
+				if (is_array($response_body) || is_object($response_body)) {
122
+					$response_body_as_array = (array) $response_body;
123 123
 					$problems_string = '';
124
-					foreach($response_body_as_array as $problem_parameter => $problems){
125
-						$problems_string.= sprintf(__('\nProblems with %s: %s','event_espresso'),$problem_parameter,implode(", ",$problems));
124
+					foreach ($response_body_as_array as $problem_parameter => $problems) {
125
+						$problems_string .= sprintf(__('\nProblems with %s: %s', 'event_espresso'), $problem_parameter, implode(", ", $problems));
126 126
 					}
127
-				}else{
127
+				} else {
128 128
 					$problems_string = $response['body'];
129 129
 				}
130
-				if( $problems_string == ''){
130
+				if ($problems_string == '') {
131 131
 					//no message to show? wack
132
-					if( isset( $response[ 'headers' ][ 'status' ] ) ){
133
-						$problems_string = $response[ 'headers' ][ 'status' ];
134
-					}else{
135
-						$problems_string = __( 'No response from Mijireh', 'event_espresso' );
132
+					if (isset($response['headers']['status'])) {
133
+						$problems_string = $response['headers']['status'];
134
+					} else {
135
+						$problems_string = __('No response from Mijireh', 'event_espresso');
136 136
 					}
137 137
 				}
138 138
 
139
-				throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.','event_espresso'),$problems_string));
139
+				throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.', 'event_espresso'), $problems_string));
140 140
 			}
141 141
 			$payment->set_redirect_url($response_body->checkout_url);
142 142
 			$payment->set_txn_id_chq_nmbr($response_body->order_number);
143 143
 			$payment->set_details($response['body']);
144
-		}else{
145
-			$error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'),implode(",",$response->get_error_messages()));
146
-			EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__ );
144
+		} else {
145
+			$error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'), implode(",", $response->get_error_messages()));
146
+			EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__);
147 147
 			throw new EE_Error($error_message);
148 148
 
149 149
 		}
@@ -156,16 +156,16 @@  discard block
 block discarded – undo
156 156
 	 * @param mixed $data
157 157
 	 * @return mixed same type as $data
158 158
 	 */
159
-	private function _prepare_for_mijireh( $data ){
160
-		if( is_array( $data ) ){
159
+	private function _prepare_for_mijireh($data) {
160
+		if (is_array($data)) {
161 161
 			$prepared_data = array();
162
-			foreach($data as $key => $datum ){
163
-				$prepared_data[ $key ] = $this->_prepare_for_mijireh( $datum );
162
+			foreach ($data as $key => $datum) {
163
+				$prepared_data[$key] = $this->_prepare_for_mijireh($datum);
164 164
 			}
165 165
 			return $prepared_data;
166
-		}elseif(is_string( $data ) ){
167
-			return str_replace( '%', 'percent', $data );
168
-		}else{
166
+		}elseif (is_string($data)) {
167
+			return str_replace('%', 'percent', $data);
168
+		} else {
169 169
 			return $data;
170 170
 		}
171 171
 	}
@@ -180,21 +180,21 @@  discard block
 block discarded – undo
180 180
  */
181 181
 	public function handle_payment_update($update_info, $transaction) {
182 182
 		$payment = $transaction instanceof EEI_Transaction ? $transaction->last_payment() : NULL;
183
-		if($payment && $payment instanceof EEI_Payment){
183
+		if ($payment && $payment instanceof EEI_Payment) {
184 184
 			$url = 'https://secure.mijireh.com/api/1/orders/'.$payment->txn_id_chq_nmbr();
185 185
 			$request_args = array(
186 186
 				'headers' => array(
187
-					'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ),
187
+					'Authorization' => 'Basic '.base64_encode($this->_access_key.':'),
188 188
 					'Accept'=>'application/json'
189 189
 				)
190 190
 			);
191
-			$response = wp_remote_get($url, $request_args );
191
+			$response = wp_remote_get($url, $request_args);
192 192
 			$this->log(
193
-				array( 'get payment status request_args' => $request_args, 'response' => $response ),
193
+				array('get payment status request_args' => $request_args, 'response' => $response),
194 194
 				$payment
195 195
 			);
196
-			if($response && isset($response['body']) && $response_body = json_decode($response['body'])){
197
-				switch($response_body->status){
196
+			if ($response && isset($response['body']) && $response_body = json_decode($response['body'])) {
197
+				switch ($response_body->status) {
198 198
 					case 'paid':
199 199
 						$payment->set_status($this->_pay_model->approved_status());
200 200
 						break;
@@ -205,14 +205,14 @@  discard block
 block discarded – undo
205 205
 						$payment->set_status($this->_pay_model->declined_status());
206 206
 				}
207 207
 
208
-			}else{
209
-				$payment->set_gateway_response( __( 'Response from Mijireh could not be understood.', 'event_espresso' ) );
210
-				$payment->set_details( $response );
211
-				$payment->set_status( $this->_pay_model->failed_status() );
208
+			} else {
209
+				$payment->set_gateway_response(__('Response from Mijireh could not be understood.', 'event_espresso'));
210
+				$payment->set_details($response);
211
+				$payment->set_status($this->_pay_model->failed_status());
212 212
 			}
213 213
 			return $payment;
214
-		}else{
215
-			throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s",'event_espresso'),$transaction->ID()));
214
+		} else {
215
+			throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s", 'event_espresso'), $transaction->ID()));
216 216
 		}
217 217
 	}
218 218
 
Please login to merge, or discard this patch.