@@ -80,11 +80,11 @@ |
||
| 80 | 80 | { |
| 81 | 81 | $params = array('secret' => $this->secret, 'response' => $this->response); |
| 82 | 82 | |
| 83 | - if (!is_null($this->remoteIp)) { |
|
| 83 | + if ( ! is_null($this->remoteIp)) { |
|
| 84 | 84 | $params['remoteip'] = $this->remoteIp; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if (!is_null($this->version)) { |
|
| 87 | + if ( ! is_null($this->version)) { |
|
| 88 | 88 | $params['version'] = $this->version; |
| 89 | 89 | } |
| 90 | 90 | |
@@ -31,73 +31,73 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | class RequestParameters |
| 33 | 33 | { |
| 34 | - /** |
|
| 35 | - * Site secret. |
|
| 36 | - * @var string |
|
| 37 | - */ |
|
| 38 | - private $secret; |
|
| 34 | + /** |
|
| 35 | + * Site secret. |
|
| 36 | + * @var string |
|
| 37 | + */ |
|
| 38 | + private $secret; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Form response. |
|
| 42 | - * @var string |
|
| 43 | - */ |
|
| 44 | - private $response; |
|
| 40 | + /** |
|
| 41 | + * Form response. |
|
| 42 | + * @var string |
|
| 43 | + */ |
|
| 44 | + private $response; |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Remote user's IP address. |
|
| 48 | - * @var string |
|
| 49 | - */ |
|
| 50 | - private $remoteIp; |
|
| 46 | + /** |
|
| 47 | + * Remote user's IP address. |
|
| 48 | + * @var string |
|
| 49 | + */ |
|
| 50 | + private $remoteIp; |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Client version. |
|
| 54 | - * @var string |
|
| 55 | - */ |
|
| 56 | - private $version; |
|
| 52 | + /** |
|
| 53 | + * Client version. |
|
| 54 | + * @var string |
|
| 55 | + */ |
|
| 56 | + private $version; |
|
| 57 | 57 | |
| 58 | - /** |
|
| 59 | - * Initialise parameters. |
|
| 60 | - * |
|
| 61 | - * @param string $secret Site secret. |
|
| 62 | - * @param string $response Value from g-captcha-response form field. |
|
| 63 | - * @param string $remoteIp User's IP address. |
|
| 64 | - * @param string $version Version of this client library. |
|
| 65 | - */ |
|
| 66 | - public function __construct($secret, $response, $remoteIp = null, $version = null) |
|
| 67 | - { |
|
| 68 | - $this->secret = $secret; |
|
| 69 | - $this->response = $response; |
|
| 70 | - $this->remoteIp = $remoteIp; |
|
| 71 | - $this->version = $version; |
|
| 72 | - } |
|
| 58 | + /** |
|
| 59 | + * Initialise parameters. |
|
| 60 | + * |
|
| 61 | + * @param string $secret Site secret. |
|
| 62 | + * @param string $response Value from g-captcha-response form field. |
|
| 63 | + * @param string $remoteIp User's IP address. |
|
| 64 | + * @param string $version Version of this client library. |
|
| 65 | + */ |
|
| 66 | + public function __construct($secret, $response, $remoteIp = null, $version = null) |
|
| 67 | + { |
|
| 68 | + $this->secret = $secret; |
|
| 69 | + $this->response = $response; |
|
| 70 | + $this->remoteIp = $remoteIp; |
|
| 71 | + $this->version = $version; |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | - /** |
|
| 75 | - * Array representation. |
|
| 76 | - * |
|
| 77 | - * @return array Array formatted parameters. |
|
| 78 | - */ |
|
| 79 | - public function toArray() |
|
| 80 | - { |
|
| 81 | - $params = array('secret' => $this->secret, 'response' => $this->response); |
|
| 74 | + /** |
|
| 75 | + * Array representation. |
|
| 76 | + * |
|
| 77 | + * @return array Array formatted parameters. |
|
| 78 | + */ |
|
| 79 | + public function toArray() |
|
| 80 | + { |
|
| 81 | + $params = array('secret' => $this->secret, 'response' => $this->response); |
|
| 82 | 82 | |
| 83 | - if (!is_null($this->remoteIp)) { |
|
| 84 | - $params['remoteip'] = $this->remoteIp; |
|
| 85 | - } |
|
| 83 | + if (!is_null($this->remoteIp)) { |
|
| 84 | + $params['remoteip'] = $this->remoteIp; |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - if (!is_null($this->version)) { |
|
| 88 | - $params['version'] = $this->version; |
|
| 89 | - } |
|
| 87 | + if (!is_null($this->version)) { |
|
| 88 | + $params['version'] = $this->version; |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | - return $params; |
|
| 92 | - } |
|
| 91 | + return $params; |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - /** |
|
| 95 | - * Query string representation for HTTP request. |
|
| 96 | - * |
|
| 97 | - * @return string Query string formatted parameters. |
|
| 98 | - */ |
|
| 99 | - public function toQueryString() |
|
| 100 | - { |
|
| 101 | - return http_build_query($this->toArray(), '', '&'); |
|
| 102 | - } |
|
| 94 | + /** |
|
| 95 | + * Query string representation for HTTP request. |
|
| 96 | + * |
|
| 97 | + * @return string Query string formatted parameters. |
|
| 98 | + */ |
|
| 99 | + public function toQueryString() |
|
| 100 | + { |
|
| 101 | + return http_build_query($this->toArray(), '', '&'); |
|
| 102 | + } |
|
| 103 | 103 | } |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | { |
| 54 | 54 | $responseData = json_decode($json, true); |
| 55 | 55 | |
| 56 | - if (!$responseData) { |
|
| 56 | + if ( ! $responseData) { |
|
| 57 | 57 | return new Response(false, array('invalid-json')); |
| 58 | 58 | } |
| 59 | 59 | |
@@ -31,72 +31,72 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | class Response |
| 33 | 33 | { |
| 34 | - /** |
|
| 35 | - * Succes or failure. |
|
| 36 | - * @var boolean |
|
| 37 | - */ |
|
| 38 | - private $success = false; |
|
| 34 | + /** |
|
| 35 | + * Succes or failure. |
|
| 36 | + * @var boolean |
|
| 37 | + */ |
|
| 38 | + private $success = false; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Error code strings. |
|
| 42 | - * @var array |
|
| 43 | - */ |
|
| 44 | - private $errorCodes = array(); |
|
| 40 | + /** |
|
| 41 | + * Error code strings. |
|
| 42 | + * @var array |
|
| 43 | + */ |
|
| 44 | + private $errorCodes = array(); |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Build the response from the expected JSON returned by the service. |
|
| 48 | - * |
|
| 49 | - * @param string $json |
|
| 50 | - * @return \ReCaptcha\Response |
|
| 51 | - */ |
|
| 52 | - public static function fromJson($json) |
|
| 53 | - { |
|
| 54 | - $responseData = json_decode($json, true); |
|
| 46 | + /** |
|
| 47 | + * Build the response from the expected JSON returned by the service. |
|
| 48 | + * |
|
| 49 | + * @param string $json |
|
| 50 | + * @return \ReCaptcha\Response |
|
| 51 | + */ |
|
| 52 | + public static function fromJson($json) |
|
| 53 | + { |
|
| 54 | + $responseData = json_decode($json, true); |
|
| 55 | 55 | |
| 56 | - if (!$responseData) { |
|
| 57 | - return new Response(false, array('invalid-json')); |
|
| 58 | - } |
|
| 56 | + if (!$responseData) { |
|
| 57 | + return new Response(false, array('invalid-json')); |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - if (isset($responseData['success']) && $responseData['success'] == true) { |
|
| 61 | - return new Response(true); |
|
| 62 | - } |
|
| 60 | + if (isset($responseData['success']) && $responseData['success'] == true) { |
|
| 61 | + return new Response(true); |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
| 65 | - return new Response(false, $responseData['error-codes']); |
|
| 66 | - } |
|
| 64 | + if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
| 65 | + return new Response(false, $responseData['error-codes']); |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - return new Response(false); |
|
| 69 | - } |
|
| 68 | + return new Response(false); |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - /** |
|
| 72 | - * Constructor. |
|
| 73 | - * |
|
| 74 | - * @param boolean $success |
|
| 75 | - * @param array $errorCodes |
|
| 76 | - */ |
|
| 77 | - public function __construct($success, array $errorCodes = array()) |
|
| 78 | - { |
|
| 79 | - $this->success = $success; |
|
| 80 | - $this->errorCodes = $errorCodes; |
|
| 81 | - } |
|
| 71 | + /** |
|
| 72 | + * Constructor. |
|
| 73 | + * |
|
| 74 | + * @param boolean $success |
|
| 75 | + * @param array $errorCodes |
|
| 76 | + */ |
|
| 77 | + public function __construct($success, array $errorCodes = array()) |
|
| 78 | + { |
|
| 79 | + $this->success = $success; |
|
| 80 | + $this->errorCodes = $errorCodes; |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - /** |
|
| 84 | - * Is success? |
|
| 85 | - * |
|
| 86 | - * @return boolean |
|
| 87 | - */ |
|
| 88 | - public function isSuccess() |
|
| 89 | - { |
|
| 90 | - return $this->success; |
|
| 91 | - } |
|
| 83 | + /** |
|
| 84 | + * Is success? |
|
| 85 | + * |
|
| 86 | + * @return boolean |
|
| 87 | + */ |
|
| 88 | + public function isSuccess() |
|
| 89 | + { |
|
| 90 | + return $this->success; |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - /** |
|
| 94 | - * Get error codes. |
|
| 95 | - * |
|
| 96 | - * @return array |
|
| 97 | - */ |
|
| 98 | - public function getErrorCodes() |
|
| 99 | - { |
|
| 100 | - return $this->errorCodes; |
|
| 101 | - } |
|
| 93 | + /** |
|
| 94 | + * Get error codes. |
|
| 95 | + * |
|
| 96 | + * @return array |
|
| 97 | + */ |
|
| 98 | + public function getErrorCodes() |
|
| 99 | + { |
|
| 100 | + return $this->errorCodes; |
|
| 101 | + } |
|
| 102 | 102 | } |
@@ -6,33 +6,33 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | spl_autoload_register(function ($class) { |
| 9 | - if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
|
| 10 | - /* If the class does not lie under the "ReCaptcha" namespace, |
|
| 9 | + if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
|
| 10 | + /* If the class does not lie under the "ReCaptcha" namespace, |
|
| 11 | 11 | * then we can exit immediately. |
| 12 | 12 | */ |
| 13 | - return; |
|
| 14 | - } |
|
| 13 | + return; |
|
| 14 | + } |
|
| 15 | 15 | |
| 16 | - /* All of the classes have names like "ReCaptcha\Foo", so we need |
|
| 16 | + /* All of the classes have names like "ReCaptcha\Foo", so we need |
|
| 17 | 17 | * to replace the backslashes with frontslashes if we want the |
| 18 | 18 | * name to map directly to a location in the filesystem. |
| 19 | 19 | */ |
| 20 | - $class = str_replace('\\', '/', $class); |
|
| 20 | + $class = str_replace('\\', '/', $class); |
|
| 21 | 21 | |
| 22 | - /* First, check under the current directory. It is important that |
|
| 22 | + /* First, check under the current directory. It is important that |
|
| 23 | 23 | * we look here first, so that we don't waste time searching for |
| 24 | 24 | * test classes in the common case. |
| 25 | 25 | */ |
| 26 | - $path = dirname(__FILE__).'/'.$class.'.php'; |
|
| 27 | - if (is_readable($path)) { |
|
| 28 | - require_once $path; |
|
| 29 | - } |
|
| 26 | + $path = dirname(__FILE__).'/'.$class.'.php'; |
|
| 27 | + if (is_readable($path)) { |
|
| 28 | + require_once $path; |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - /* If we didn't find what we're looking for already, maybe it's |
|
| 31 | + /* If we didn't find what we're looking for already, maybe it's |
|
| 32 | 32 | * a test class? |
| 33 | 33 | */ |
| 34 | - $path = dirname(__FILE__).'/../tests/'.$class.'.php'; |
|
| 35 | - if (is_readable($path)) { |
|
| 36 | - require_once $path; |
|
| 37 | - } |
|
| 34 | + $path = dirname(__FILE__).'/../tests/'.$class.'.php'; |
|
| 35 | + if (is_readable($path)) { |
|
| 36 | + require_once $path; |
|
| 37 | + } |
|
| 38 | 38 | }); |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | * classes. |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -spl_autoload_register(function ($class) { |
|
| 8 | +spl_autoload_register(function($class) { |
|
| 9 | 9 | if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
| 10 | 10 | /* If the class does not lie under the "ReCaptcha" namespace, |
| 11 | 11 | * then we can exit immediately. |
@@ -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 | * Event Espresso |
| 7 | 8 | * |
@@ -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,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_ID() && |
|
| 88 | - $primary_attendee->country_ID() && |
|
| 89 | - $primary_attendee->zip() ){ |
|
| 85 | + if ($primary_attendee->address() && |
|
| 86 | + $primary_attendee->city() && |
|
| 87 | + $primary_attendee->state_ID() && |
|
| 88 | + $primary_attendee->country_ID() && |
|
| 89 | + $primary_attendee->zip()) { |
|
| 90 | 90 | $shipping_address = array( |
| 91 | 91 | 'first_name'=>$primary_attendee->fname(), |
| 92 | 92 | 'last_name'=>$primary_attendee->lname(), |
@@ -96,53 +96,53 @@ discard block |
||
| 96 | 96 | 'zip_code' => $primary_attendee->zip(), |
| 97 | 97 | 'country' => $primary_attendee->country_ID() |
| 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[ 'shipping_address' ] = $shipping_address; |
|
| 105 | + $order['shipping_address'] = $shipping_address; |
|
| 106 | 106 | } |
| 107 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this)) ); |
|
| 107 | + do_action('AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this))); |
|
| 108 | 108 | $args = array( |
| 109 | 109 | 'headers' => array( |
| 110 | - 'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ), |
|
| 110 | + 'Authorization' => 'Basic '.base64_encode($this->_access_key.':'), |
|
| 111 | 111 | 'Accept'=>'application/json' |
| 112 | 112 | ), |
| 113 | 113 | 'body'=> json_encode($order) |
| 114 | 114 | ); |
| 115 | - $response = wp_remote_post( 'https://secure.mijireh.com/api/1/orders', $args ); |
|
| 116 | - $this->log(array('get checkout url request_args' => $args, 'response' => $response ), $payment); |
|
| 117 | - if( ! $response instanceof WP_Error ){ |
|
| 115 | + $response = wp_remote_post('https://secure.mijireh.com/api/1/orders', $args); |
|
| 116 | + $this->log(array('get checkout url request_args' => $args, 'response' => $response), $payment); |
|
| 117 | + if ( ! $response instanceof WP_Error) { |
|
| 118 | 118 | $response_body = json_decode($response['body']); |
| 119 | - if($response_body == NULL || ! isset($response_body->checkout_url)){ |
|
| 120 | - if( is_array( $response_body ) || is_object( $response_body)){ |
|
| 121 | - $response_body_as_array = (array)$response_body; |
|
| 119 | + if ($response_body == NULL || ! isset($response_body->checkout_url)) { |
|
| 120 | + if (is_array($response_body) || is_object($response_body)) { |
|
| 121 | + $response_body_as_array = (array) $response_body; |
|
| 122 | 122 | $problems_string = ''; |
| 123 | - foreach($response_body_as_array as $problem_parameter => $problems){ |
|
| 124 | - $problems_string.= sprintf(__('\nProblems with %s: %s','event_espresso'),$problem_parameter,implode(", ",$problems)); |
|
| 123 | + foreach ($response_body_as_array as $problem_parameter => $problems) { |
|
| 124 | + $problems_string .= sprintf(__('\nProblems with %s: %s', 'event_espresso'), $problem_parameter, implode(", ", $problems)); |
|
| 125 | 125 | } |
| 126 | - }else{ |
|
| 126 | + } else { |
|
| 127 | 127 | $problems_string = $response['body']; |
| 128 | 128 | } |
| 129 | - if( $problems_string == ''){ |
|
| 129 | + if ($problems_string == '') { |
|
| 130 | 130 | //no message to show? wack |
| 131 | - if( isset( $response[ 'headers' ][ 'status' ] ) ){ |
|
| 132 | - $problems_string = $response[ 'headers' ][ 'status' ]; |
|
| 133 | - }else{ |
|
| 134 | - $problems_string = __( 'No response from Mijireh', 'event_espresso' ); |
|
| 131 | + if (isset($response['headers']['status'])) { |
|
| 132 | + $problems_string = $response['headers']['status']; |
|
| 133 | + } else { |
|
| 134 | + $problems_string = __('No response from Mijireh', 'event_espresso'); |
|
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.','event_espresso'),$problems_string)); |
|
| 138 | + throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.', 'event_espresso'), $problems_string)); |
|
| 139 | 139 | } |
| 140 | 140 | $payment->set_redirect_url($response_body->checkout_url); |
| 141 | 141 | $payment->set_txn_id_chq_nmbr($response_body->order_number); |
| 142 | 142 | $payment->set_details($response['body']); |
| 143 | - }else{ |
|
| 144 | - $error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'),implode(",",$response->get_error_messages())); |
|
| 145 | - EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__ ); |
|
| 143 | + } else { |
|
| 144 | + $error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'), implode(",", $response->get_error_messages())); |
|
| 145 | + EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__); |
|
| 146 | 146 | throw new EE_Error($error_message); |
| 147 | 147 | |
| 148 | 148 | } |
@@ -155,16 +155,16 @@ discard block |
||
| 155 | 155 | * @param mixed $data |
| 156 | 156 | * @return mixed same type as $data |
| 157 | 157 | */ |
| 158 | - private function _prepare_for_mijireh( $data ){ |
|
| 159 | - if( is_array( $data ) ){ |
|
| 158 | + private function _prepare_for_mijireh($data) { |
|
| 159 | + if (is_array($data)) { |
|
| 160 | 160 | $prepared_data = array(); |
| 161 | - foreach($data as $key => $datum ){ |
|
| 162 | - $prepared_data[ $key ] = $this->_prepare_for_mijireh( $datum ); |
|
| 161 | + foreach ($data as $key => $datum) { |
|
| 162 | + $prepared_data[$key] = $this->_prepare_for_mijireh($datum); |
|
| 163 | 163 | } |
| 164 | 164 | return $prepared_data; |
| 165 | - }elseif(is_string( $data ) ){ |
|
| 166 | - return str_replace( '%', 'percent', $data ); |
|
| 167 | - }else{ |
|
| 165 | + }elseif (is_string($data)) { |
|
| 166 | + return str_replace('%', 'percent', $data); |
|
| 167 | + } else { |
|
| 168 | 168 | return $data; |
| 169 | 169 | } |
| 170 | 170 | } |
@@ -179,21 +179,21 @@ discard block |
||
| 179 | 179 | */ |
| 180 | 180 | public function handle_payment_update($update_info, $transaction) { |
| 181 | 181 | $payment = $transaction instanceof EEI_Transaction ? $transaction->last_payment() : NULL; |
| 182 | - if($payment && $payment instanceof EEI_Payment){ |
|
| 182 | + if ($payment && $payment instanceof EEI_Payment) { |
|
| 183 | 183 | $url = 'https://secure.mijireh.com/api/1/orders/'.$payment->txn_id_chq_nmbr(); |
| 184 | 184 | $request_args = array( |
| 185 | 185 | 'headers' => array( |
| 186 | - 'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ), |
|
| 186 | + 'Authorization' => 'Basic '.base64_encode($this->_access_key.':'), |
|
| 187 | 187 | 'Accept'=>'application/json' |
| 188 | 188 | ) |
| 189 | 189 | ); |
| 190 | - $response = wp_remote_get($url, $request_args ); |
|
| 190 | + $response = wp_remote_get($url, $request_args); |
|
| 191 | 191 | $this->log( |
| 192 | - array( 'get payment status request_args' => $request_args, 'response' => $response ), |
|
| 192 | + array('get payment status request_args' => $request_args, 'response' => $response), |
|
| 193 | 193 | $payment |
| 194 | 194 | ); |
| 195 | - if($response && isset($response['body']) && $response_body = json_decode($response['body'])){ |
|
| 196 | - switch($response_body->status){ |
|
| 195 | + if ($response && isset($response['body']) && $response_body = json_decode($response['body'])) { |
|
| 196 | + switch ($response_body->status) { |
|
| 197 | 197 | case 'paid': |
| 198 | 198 | $payment->set_status($this->_pay_model->approved_status()); |
| 199 | 199 | break; |
@@ -204,14 +204,14 @@ discard block |
||
| 204 | 204 | $payment->set_status($this->_pay_model->declined_status()); |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - }else{ |
|
| 208 | - $payment->set_gateway_response( __( 'Response from Mijireh could not be understood.', 'event_espresso' ) ); |
|
| 209 | - $payment->set_details( $response ); |
|
| 210 | - $payment->set_status( $this->_pay_model->failed_status() ); |
|
| 207 | + } else { |
|
| 208 | + $payment->set_gateway_response(__('Response from Mijireh could not be understood.', 'event_espresso')); |
|
| 209 | + $payment->set_details($response); |
|
| 210 | + $payment->set_status($this->_pay_model->failed_status()); |
|
| 211 | 211 | } |
| 212 | 212 | return $payment; |
| 213 | - }else{ |
|
| 214 | - throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s",'event_espresso'),$transaction->ID())); |
|
| 213 | + } else { |
|
| 214 | + throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s", 'event_espresso'), $transaction->ID())); |
|
| 215 | 215 | } |
| 216 | 216 | } |
| 217 | 217 | |
@@ -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 | } |
@@ -3,10 +3,10 @@ discard block |
||
| 3 | 3 | <?php _e('Adjust the settings for the Mijireh payment gateway.', 'event_espresso'); ?> |
| 4 | 4 | </p> |
| 5 | 5 | <p> |
| 6 | -<?php printf(__('Mijireh is basically a middle-man between Event Espresso and over 90 payment gateways. Most of the configuration occurs on %sMijireh\' website%s, where you configure your Mijireh store with the %spayment gateway of your choice%s.', 'event_espresso'),'<a href="http://www.mijireh.com/" target="_blank">','</a>','<a href="http://www.mijireh.com/docs/payment-gateways/" target="_blank">','</a>'); ?> |
|
| 6 | +<?php printf(__('Mijireh is basically a middle-man between Event Espresso and over 90 payment gateways. Most of the configuration occurs on %sMijireh\' website%s, where you configure your Mijireh store with the %spayment gateway of your choice%s.', 'event_espresso'), '<a href="http://www.mijireh.com/" target="_blank">', '</a>', '<a href="http://www.mijireh.com/docs/payment-gateways/" target="_blank">', '</a>'); ?> |
|
| 7 | 7 | </p> |
| 8 | 8 | <p> |
| 9 | -<?php _e( 'For information on what currencies you can use with Mijireh, please consult the payment gateway Mijireh is setup to use.', 'event_espresso' ) ?> |
|
| 9 | +<?php _e('For information on what currencies you can use with Mijireh, please consult the payment gateway Mijireh is setup to use.', 'event_espresso') ?> |
|
| 10 | 10 | </p> |
| 11 | 11 | <ul> |
| 12 | 12 | <li> |
@@ -20,6 +20,6 @@ discard block |
||
| 20 | 20 | </ul> |
| 21 | 21 | <h3><?php _e('Mijireh Checkout Page Design', 'event_espresso'); ?></h3> |
| 22 | 22 | <p> |
| 23 | -<?php _e("As you are probably aware, when users pay with Mijireh Payment Method, they are taken to a secure offsite page, hosted by Mijireh. This page can easily be made to have the look-and-feel of your website through a process called 'slurping', where Mijireh 'slurps' up your website's design and uses it on their checkout page.", 'event_espresso');?> |
|
| 24 | -<?php printf(__("In order to do this, we automatically create a new WordPress page which is designed to be slurped by Mijireh. You can customize the page like any other, but the page must contain Mijireh's special '{{mijireh-checkout-form}}' shortcode. Once you have finished designing the page, publish it, and %s then click the special 'slurp now' button%s. Mijireh may take several minutes to slurp the page. Once Mijireh is finished slurping, you can delete the page, or mark it as a draft.", 'event_espresso'),'<a href="http://ee-screenshots.s3.amazonaws.com/ee4/event-espresso-mijireh-slurp-page-example.jpg" target="_blank">','</a>');?> |
|
| 23 | +<?php _e("As you are probably aware, when users pay with Mijireh Payment Method, they are taken to a secure offsite page, hosted by Mijireh. This page can easily be made to have the look-and-feel of your website through a process called 'slurping', where Mijireh 'slurps' up your website's design and uses it on their checkout page.", 'event_espresso'); ?> |
|
| 24 | +<?php printf(__("In order to do this, we automatically create a new WordPress page which is designed to be slurped by Mijireh. You can customize the page like any other, but the page must contain Mijireh's special '{{mijireh-checkout-form}}' shortcode. Once you have finished designing the page, publish it, and %s then click the special 'slurp now' button%s. Mijireh may take several minutes to slurp the page. Once Mijireh is finished slurping, you can delete the page, or mark it as a draft.", 'event_espresso'), '<a href="http://ee-screenshots.s3.amazonaws.com/ee4/event-espresso-mijireh-slurp-page-example.jpg" target="_blank">', '</a>'); ?> |
|
| 25 | 25 | </p> |
| 26 | 26 | \ No newline at end of file |
@@ -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 | - * mijireh_settings_after_form |
|
| 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 | + * mijireh_settings_after_form |
|
| 20 | + * |
|
| 21 | + * @package Event Espresso |
|
| 22 | + * @subpackage |
|
| 23 | + * @author Mike Nelson |
|
| 24 | + * |
|
| 25 | + * ------------------------------------------------------------------------ |
|
| 26 | + */ |
|
| 27 | 27 | do_action('AHEE__EE_Mijireh__settings_end'); |
| 28 | 28 | ?><br/><?php |
| 29 | 29 | // End of file mijireh_settings_after_form.template.php |
| 30 | 30 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
| 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 |
@@ -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 | * |