@@ -1,6 +1,6 @@ |
||
| 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 |
@@ -1,8 +1,8 @@ |
||
| 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> |
@@ -1,3 +1,3 @@ |
||
| 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 |
@@ -1,4 +1,6 @@ |
||
| 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 | * |
| 4 | 6 | * EED_Ticket_Selector_Caff |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @return EED_Ticket_Selector_Caff |
| 17 | 17 | */ |
| 18 | 18 | public static function instance() { |
| 19 | - return parent::get_instance( __CLASS__ ); |
|
| 19 | + return parent::get_instance(__CLASS__); |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | |
@@ -37,22 +37,22 @@ discard block |
||
| 37 | 37 | * @return void |
| 38 | 38 | */ |
| 39 | 39 | public static function set_hooks_admin() { |
| 40 | - define( 'TICKET_SELECTOR_CAFF_TEMPLATES_PATH', str_replace( '\\', DS, plugin_dir_path( __FILE__ )) . 'templates' . DS ); |
|
| 41 | - add_action( 'AHEE__template_settings__template__before_settings_form', array( 'EED_Ticket_Selector_Caff', 'template_settings_form' ), 10 ); |
|
| 42 | - add_filter( 'FHEE__General_Settings_Admin_Page__update_template_settings__data', array( 'EED_Ticket_Selector_Caff', 'update_template_settings' ), 10, 2 ); |
|
| 40 | + define('TICKET_SELECTOR_CAFF_TEMPLATES_PATH', str_replace('\\', DS, plugin_dir_path(__FILE__)).'templates'.DS); |
|
| 41 | + add_action('AHEE__template_settings__template__before_settings_form', array('EED_Ticket_Selector_Caff', 'template_settings_form'), 10); |
|
| 42 | + add_filter('FHEE__General_Settings_Admin_Page__update_template_settings__data', array('EED_Ticket_Selector_Caff', 'update_template_settings'), 10, 2); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | |
| 46 | 46 | //just required because of abstract declaration |
| 47 | - public function run( $WP ) {} |
|
| 47 | + public function run($WP) {} |
|
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | |
| 52 | - protected function set_config(){ |
|
| 53 | - $this->set_config_section( 'template_settings' ); |
|
| 54 | - $this->set_config_class( 'EE_Ticket_Selector_Config' ); |
|
| 55 | - $this->set_config_name( 'EED_Ticket_Selector' ); |
|
| 52 | + protected function set_config() { |
|
| 53 | + $this->set_config_section('template_settings'); |
|
| 54 | + $this->set_config_class('EE_Ticket_Selector_Config'); |
|
| 55 | + $this->set_config_name('EED_Ticket_Selector'); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | 'subsections' => apply_filters( |
| 87 | 87 | 'FHEE__EED_Ticket_Selector_Caff___ticket_selector_settings_form__form_subsections', |
| 88 | 88 | array( |
| 89 | - 'appearance_settings_hdr' => new EE_Form_Section_HTML( EEH_HTML::h3( __( 'Ticket Selector Template Settings', 'event_espresso' ))), |
|
| 89 | + 'appearance_settings_hdr' => new EE_Form_Section_HTML(EEH_HTML::h3(__('Ticket Selector Template Settings', 'event_espresso'))), |
|
| 90 | 90 | 'appearance_settings' => EED_Ticket_Selector_Caff::_ticket_selector_appearance_settings() |
| 91 | 91 | ) |
| 92 | 92 | ) |
@@ -109,17 +109,17 @@ discard block |
||
| 109 | 109 | 'FHEE__EED_Ticket_Selector_Caff___ticket_selector_appearance_settings__form_subsections', array( |
| 110 | 110 | 'show_ticket_details' => new EE_Yes_No_Input( |
| 111 | 111 | array( |
| 112 | - 'html_label_text' => __('Show Ticket Details?', 'event_espresso' ), |
|
| 113 | - 'html_help_text' => __( 'This lets you choose whether the extra ticket details section is displayed with the ticket selector.', 'event_espresso'), |
|
| 114 | - 'default' => isset( EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_details ) ? EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_details : true, |
|
| 112 | + 'html_label_text' => __('Show Ticket Details?', 'event_espresso'), |
|
| 113 | + 'html_help_text' => __('This lets you choose whether the extra ticket details section is displayed with the ticket selector.', 'event_espresso'), |
|
| 114 | + 'default' => isset(EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_details) ? EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_details : true, |
|
| 115 | 115 | 'display_html_label_text' => false |
| 116 | 116 | ) |
| 117 | 117 | ), |
| 118 | 118 | 'show_ticket_sale_columns' => new EE_Yes_No_Input( |
| 119 | 119 | array( |
| 120 | - 'html_label_text' => __('Show Ticket Sale Info?', 'event_espresso' ), |
|
| 121 | - 'html_help_text' => __( 'This lets you indicate whether information about ticket sales is shown with ticket details in the ticket selector.', 'event_espresso'), |
|
| 122 | - 'default' => isset( EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_sale_columns ) ? EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_sale_columns : true, |
|
| 120 | + 'html_label_text' => __('Show Ticket Sale Info?', 'event_espresso'), |
|
| 121 | + 'html_help_text' => __('This lets you indicate whether information about ticket sales is shown with ticket details in the ticket selector.', 'event_espresso'), |
|
| 122 | + 'default' => isset(EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_sale_columns) ? EE_Registry::instance()->CFG->template_settings->EED_Ticket_Selector->show_ticket_sale_columns : true, |
|
| 123 | 123 | 'display_html_label_text' => false |
| 124 | 124 | ) |
| 125 | 125 | ) |
@@ -142,21 +142,21 @@ discard block |
||
| 142 | 142 | * |
| 143 | 143 | * @return void |
| 144 | 144 | */ |
| 145 | - public static function update_template_settings( EE_Template_Config $CFG, $REQ ) { |
|
| 146 | - if ( ! isset( $CFG->EED_Ticket_Selector ) ) { |
|
| 145 | + public static function update_template_settings(EE_Template_Config $CFG, $REQ) { |
|
| 146 | + if ( ! isset($CFG->EED_Ticket_Selector)) { |
|
| 147 | 147 | $CFG->EED_Ticket_Selector = new EE_Ticket_Selector_Config(); |
| 148 | 148 | } |
| 149 | 149 | try { |
| 150 | 150 | $ticket_selector_form = EED_Ticket_Selector_Caff::_ticket_selector_settings_form(); |
| 151 | 151 | |
| 152 | 152 | //check for form submission |
| 153 | - if ( $ticket_selector_form->was_submitted() ) { |
|
| 153 | + if ($ticket_selector_form->was_submitted()) { |
|
| 154 | 154 | |
| 155 | 155 | //capture form data |
| 156 | 156 | $ticket_selector_form->receive_form_submission(); |
| 157 | 157 | |
| 158 | 158 | //validate form data |
| 159 | - if ( $ticket_selector_form->is_valid() ) { |
|
| 159 | + if ($ticket_selector_form->is_valid()) { |
|
| 160 | 160 | |
| 161 | 161 | //grab validated data from form |
| 162 | 162 | $valid_data = $ticket_selector_form->valid_data(); |
@@ -165,13 +165,13 @@ discard block |
||
| 165 | 165 | $CFG->EED_Ticket_Selector->show_ticket_sale_columns = $valid_data['appearance_settings']['show_ticket_sale_columns']; |
| 166 | 166 | $CFG->EED_Ticket_Selector->show_ticket_details = $valid_data['appearance_settings']['show_ticket_details']; |
| 167 | 167 | } else { |
| 168 | - if ( $ticket_selector_form->submission_error_message() != '' ) { |
|
| 169 | - EE_Error::add_error( $ticket_selector_form->submission_error_message(), __FILE__, __FUNCTION__, __LINE__ ); |
|
| 168 | + if ($ticket_selector_form->submission_error_message() != '') { |
|
| 169 | + EE_Error::add_error($ticket_selector_form->submission_error_message(), __FILE__, __FUNCTION__, __LINE__); |
|
| 170 | 170 | } |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | } |
| 174 | - } catch( EE_Error $e ) { |
|
| 174 | + } catch (EE_Error $e) { |
|
| 175 | 175 | $e->get_error(); |
| 176 | 176 | } |
| 177 | 177 | |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | //in which case, we need to generate teh invoice num per request right here... |
| 136 | 136 | $this->setField('invoice_num', wp_generate_password(12,false));//$billing_info['_reg-page-billing-invoice-'.$this->_gateway_name]['value']); |
| 137 | 137 | //tell AIM that any duplicates sent in the next 5 minutes are to be ignored |
| 138 | - $this->setField('duplicate_window', 5 * MINUTE_IN_SECONDS ); |
|
| 138 | + $this->setField('duplicate_window', 5 * MINUTE_IN_SECONDS ); |
|
| 139 | 139 | |
| 140 | 140 | |
| 141 | 141 | if ($this->_test_transactions) { |
@@ -1,7 +1,8 @@ discard block |
||
| 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 |
@@ -107,7 +108,7 @@ discard block |
||
| 107 | 108 | foreach($total_line_item->tax_descendants() as $tax_line_item){ |
| 108 | 109 | $this->addLineItem($item_num++, $tax_line_item->name(), $tax_line_item->desc(), 1, $tax_line_item->total(), 'N'); |
| 109 | 110 | } |
| 110 | - }else{//partial payment |
|
| 111 | + } else{//partial payment |
|
| 111 | 112 | $order_description = sprintf(__("Payment of %s for %s", "event_espresso"),$payment->amount(),$primary_registrant->reg_code()); |
| 112 | 113 | } |
| 113 | 114 | |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 25 | 25 | * |
| 26 | 26 | * ------------------------------------------------------------------------ |
| 27 | 27 | */ |
| 28 | -class EEG_Aim extends EE_Onsite_Gateway{ |
|
| 28 | +class EEG_Aim extends EE_Onsite_Gateway { |
|
| 29 | 29 | protected $_login_id; |
| 30 | 30 | protected $_transaction_key; |
| 31 | 31 | protected $_currencies_supported = array( |
@@ -98,17 +98,17 @@ discard block |
||
| 98 | 98 | $primary_registrant = $transaction->primary_registration(); |
| 99 | 99 | //if we're are charging for the full amount, show the normal line items |
| 100 | 100 | //and the itemized total adds up properly |
| 101 | - if( $this->_can_easily_itemize_transaction_for( $payment ) ){ |
|
| 101 | + if ($this->_can_easily_itemize_transaction_for($payment)) { |
|
| 102 | 102 | $total_line_item = $transaction->total_line_item(); |
| 103 | 103 | foreach ($total_line_item->get_items() as $line_item) { |
| 104 | 104 | $this->addLineItem($item_num++, $line_item->name(), $line_item->desc(), $line_item->quantity(), $line_item->unit_price(), 'N'); |
| 105 | 105 | $order_description .= $line_item->desc().', '; |
| 106 | 106 | } |
| 107 | - foreach($total_line_item->tax_descendants() as $tax_line_item){ |
|
| 107 | + foreach ($total_line_item->tax_descendants() as $tax_line_item) { |
|
| 108 | 108 | $this->addLineItem($item_num++, $tax_line_item->name(), $tax_line_item->desc(), 1, $tax_line_item->total(), 'N'); |
| 109 | 109 | } |
| 110 | - }else{//partial payment |
|
| 111 | - $order_description = sprintf(__("Payment of %s for %s", "event_espresso"),$payment->amount(),$primary_registrant->reg_code()); |
|
| 110 | + } else {//partial payment |
|
| 111 | + $order_description = sprintf(__("Payment of %s for %s", "event_espresso"), $payment->amount(), $primary_registrant->reg_code()); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | //start transaction |
| 118 | 118 | $this->setField('amount', $this->format_currency($payment->amount())); |
| 119 | - $this->setField('description',substr(rtrim($order_description, ', '), 0, 255)); |
|
| 119 | + $this->setField('description', substr(rtrim($order_description, ', '), 0, 255)); |
|
| 120 | 120 | $this->setField('card_num', $billing_info['credit_card']); |
| 121 | 121 | $this->setField('exp_date', $billing_info['exp_month'].$billing_info['exp_year']); |
| 122 | 122 | $this->setField('card_code', $billing_info['cvv']); |
@@ -125,17 +125,17 @@ discard block |
||
| 125 | 125 | $this->setField('email', $billing_info['email']); |
| 126 | 126 | $this->setField('address', $billing_info['address'].' '.$billing_info['address2']); |
| 127 | 127 | $this->setField('city', $billing_info['city']); |
| 128 | - $this->setField('state', $billing_info['state'] ); |
|
| 129 | - $this->setField('country', $billing_info['country'] ); |
|
| 128 | + $this->setField('state', $billing_info['state']); |
|
| 129 | + $this->setField('country', $billing_info['country']); |
|
| 130 | 130 | $this->setField('zip', $billing_info['zip']); |
| 131 | 131 | $this->setField('cust_id', $primary_registrant->ID()); |
| 132 | 132 | $this->setField('phone', $billing_info['phone']); |
| 133 | 133 | //invoice_num would be nice to have itbe unique per SPCO page-load, taht way if users |
| 134 | 134 | //press back, they don't submit a duplicate. However, we may be keepin gthe user on teh same spco page |
| 135 | 135 | //in which case, we need to generate teh invoice num per request right here... |
| 136 | - $this->setField('invoice_num', wp_generate_password(12,false));//$billing_info['_reg-page-billing-invoice-'.$this->_gateway_name]['value']); |
|
| 136 | + $this->setField('invoice_num', wp_generate_password(12, false)); //$billing_info['_reg-page-billing-invoice-'.$this->_gateway_name]['value']); |
|
| 137 | 137 | //tell AIM that any duplicates sent in the next 5 minutes are to be ignored |
| 138 | - $this->setField('duplicate_window', 5 * MINUTE_IN_SECONDS ); |
|
| 138 | + $this->setField('duplicate_window', 5 * MINUTE_IN_SECONDS); |
|
| 139 | 139 | |
| 140 | 140 | |
| 141 | 141 | if ($this->_test_transactions) { |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | //Capture response |
| 146 | 146 | $this->type = "AUTH_CAPTURE"; |
| 147 | 147 | $response = $this->_sendRequest($payment); |
| 148 | - if (!empty($response)){ |
|
| 148 | + if ( ! empty($response)) { |
|
| 149 | 149 | if ($this->_debug_mode) { |
| 150 | 150 | $txn_id = $response->invoice_number; |
| 151 | 151 | } else { |
@@ -154,14 +154,14 @@ discard block |
||
| 154 | 154 | $payment_status = $response->approved ? $this->_pay_model->approved_status() : $this->_pay_model->declined_status(); |
| 155 | 155 | $payment->set_status($payment_status); |
| 156 | 156 | //make sure we interpret the AMT as a float, not an international string (where periods are thousand seperators) |
| 157 | - $payment->set_amount( floatval( $response->amount ) ); |
|
| 158 | - $payment->set_gateway_response(sprintf("%s (code: %s)",$response->response_reason_text,$response->response_reason_code)); |
|
| 157 | + $payment->set_amount(floatval($response->amount)); |
|
| 158 | + $payment->set_gateway_response(sprintf("%s (code: %s)", $response->response_reason_text, $response->response_reason_code)); |
|
| 159 | 159 | $payment->set_extra_accntng($primary_registrant->reg_code()); |
| 160 | - $payment->set_details(print_r($response,true)); |
|
| 160 | + $payment->set_details(print_r($response, true)); |
|
| 161 | 161 | } else { |
| 162 | 162 | $payment->set_status($this->_pay_model->failed_status()); |
| 163 | 163 | $payment->set_gateway_response(__("There was no response from Authorize.net", 'event_espresso')); |
| 164 | - $payment->set_details(print_r($response,true)); |
|
| 164 | + $payment->set_details(print_r($response, true)); |
|
| 165 | 165 | } |
| 166 | 166 | return $payment; |
| 167 | 167 | } |
@@ -212,22 +212,22 @@ discard block |
||
| 212 | 212 | $this->_x_post_fields['tran_key'] = $this->_transaction_key; |
| 213 | 213 | $x_keys = array(); |
| 214 | 214 | foreach ($this->_x_post_fields as $key => $value) { |
| 215 | - $x_keys[] = "x_$key=" . urlencode($value); |
|
| 215 | + $x_keys[] = "x_$key=".urlencode($value); |
|
| 216 | 216 | } |
| 217 | 217 | // Add line items |
| 218 | 218 | foreach ($this->_additional_line_items as $key => $value) { |
| 219 | - $x_keys[] = "x_line_item=" . urlencode($value); |
|
| 219 | + $x_keys[] = "x_line_item=".urlencode($value); |
|
| 220 | 220 | } |
| 221 | 221 | $this->_log_clean_request($x_keys, $payment); |
| 222 | 222 | $post_url = ($this->_debug_mode ? self::SANDBOX_URL : self::LIVE_URL); |
| 223 | 223 | $curl_request = curl_init($post_url); |
| 224 | - curl_setopt($curl_request, CURLOPT_POSTFIELDS, implode("&",$x_keys)); |
|
| 224 | + curl_setopt($curl_request, CURLOPT_POSTFIELDS, implode("&", $x_keys)); |
|
| 225 | 225 | curl_setopt($curl_request, CURLOPT_HEADER, 0); |
| 226 | 226 | curl_setopt($curl_request, CURLOPT_TIMEOUT, 45); |
| 227 | 227 | curl_setopt($curl_request, CURLOPT_RETURNTRANSFER, 1); |
| 228 | 228 | curl_setopt($curl_request, CURLOPT_SSL_VERIFYHOST, 2); |
| 229 | 229 | if ($this->VERIFY_PEER) { |
| 230 | - curl_setopt($curl_request, CURLOPT_CAINFO, dirname(dirname(__FILE__)) . '/ssl/cert.pem'); |
|
| 230 | + curl_setopt($curl_request, CURLOPT_CAINFO, dirname(dirname(__FILE__)).'/ssl/cert.pem'); |
|
| 231 | 231 | } else { |
| 232 | 232 | curl_setopt($curl_request, CURLOPT_SSL_VERIFYPEER, false); |
| 233 | 233 | } |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | $response = curl_exec($curl_request); |
| 240 | 240 | |
| 241 | 241 | curl_close($curl_request); |
| 242 | - $response_obj = new EE_AuthorizeNetAIM_Response($response); |
|
| 242 | + $response_obj = new EE_AuthorizeNetAIM_Response($response); |
|
| 243 | 243 | |
| 244 | 244 | return $this->_log_and_clean_response($response_obj, $payment); |
| 245 | 245 | } |
@@ -248,18 +248,18 @@ discard block |
||
| 248 | 248 | * @param array $request_array |
| 249 | 249 | * @param EEI_Payment $payment |
| 250 | 250 | */ |
| 251 | - private function _log_clean_request($request_array,$payment){ |
|
| 252 | - $keys_to_filter_out = array( 'x_card_num', 'x_card_code', 'x_exp_date' ); |
|
| 253 | - foreach($request_array as $index => $keyvaltogether ) { |
|
| 254 | - foreach( $keys_to_filter_out as $key ) { |
|
| 255 | - if( strpos( $keyvaltogether, $key ) === 0 ){ |
|
| 251 | + private function _log_clean_request($request_array, $payment) { |
|
| 252 | + $keys_to_filter_out = array('x_card_num', 'x_card_code', 'x_exp_date'); |
|
| 253 | + foreach ($request_array as $index => $keyvaltogether) { |
|
| 254 | + foreach ($keys_to_filter_out as $key) { |
|
| 255 | + if (strpos($keyvaltogether, $key) === 0) { |
|
| 256 | 256 | //found it at the first character |
| 257 | 257 | //so its one of them |
| 258 | - unset( $request_array[ $index ] ); |
|
| 258 | + unset($request_array[$index]); |
|
| 259 | 259 | } |
| 260 | 260 | } |
| 261 | 261 | } |
| 262 | - $this->log(array('AIM Request sent:'=>$request_array),$payment); |
|
| 262 | + $this->log(array('AIM Request sent:'=>$request_array), $payment); |
|
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | /** |
@@ -267,9 +267,9 @@ discard block |
||
| 267 | 267 | * @param EE_AuthorizeNetAIM_Response $response_obj |
| 268 | 268 | * @param EE_Payment $payment |
| 269 | 269 | */ |
| 270 | - private function _log_and_clean_response($response_obj,$payment){ |
|
| 270 | + private function _log_and_clean_response($response_obj, $payment) { |
|
| 271 | 271 | $response_obj->account_number = ''; |
| 272 | - $this->log(array('AIM Response received:'=>$response_obj),$payment); |
|
| 272 | + $this->log(array('AIM Response received:'=>$response_obj), $payment); |
|
| 273 | 273 | return $response_obj; |
| 274 | 274 | } |
| 275 | 275 | |
@@ -365,7 +365,7 @@ discard block |
||
| 365 | 365 | // Split Array |
| 366 | 366 | $this->response = $response; |
| 367 | 367 | if ($encap_char) { |
| 368 | - $this->_response_array = explode($encap_char . $delimiter . $encap_char, substr($response, 1, -1)); |
|
| 368 | + $this->_response_array = explode($encap_char.$delimiter.$encap_char, substr($response, 1, -1)); |
|
| 369 | 369 | } else { |
| 370 | 370 | $this->_response_array = explode($delimiter, $response); |
| 371 | 371 | } |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | $this->held = ($this->response_code == self::HELD); |
| 436 | 436 | |
| 437 | 437 | if ($this->error || $this->declined || $this->held) { |
| 438 | - $this->error_message = '<p><strong class="credit_card_failure">Attention: your transaction was declined for the following reason(s):</strong><br />' . $this->response_reason_text . '<br /><span class="response_code">Response Code: ' . $this->response_code . '<br /></span><span class="response_subcode">Response Subcode: ' . $this->response_subcode . '</span></p><p>To try again, <a href="#payment_options">please click here</a>.</p> '; |
|
| 438 | + $this->error_message = '<p><strong class="credit_card_failure">Attention: your transaction was declined for the following reason(s):</strong><br />'.$this->response_reason_text.'<br /><span class="response_code">Response Code: '.$this->response_code.'<br /></span><span class="response_subcode">Response Subcode: '.$this->response_subcode.'</span></p><p>To try again, <a href="#payment_options">please click here</a>.</p> '; |
|
| 439 | 439 | |
| 440 | 440 | |
| 441 | 441 | /* $this->error_message = "AuthorizeNet Error: |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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'), |
@@ -1,7 +1,8 @@ |
||
| 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 |
@@ -3,7 +3,7 @@ |
||
| 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> |
@@ -3,27 +3,27 @@ |
||
| 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> |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
@@ -1,7 +1,8 @@ |
||
| 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 | * |
@@ -169,14 +169,14 @@ |
||
| 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){ |
@@ -1,7 +1,8 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | |