@@ -10,14 +10,14 @@ discard block |
||
| 10 | 10 | * @subpackage |
| 11 | 11 | * @author Mike Nelson |
| 12 | 12 | */ |
| 13 | -class EE_Boolean_Normalization extends EE_Normalization_Strategy_Base{ |
|
| 13 | +class EE_Boolean_Normalization extends EE_Normalization_Strategy_Base { |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * @param string | int | bool $value_to_normalize |
| 17 | 17 | * @return boolean |
| 18 | 18 | */ |
| 19 | - public function normalize( $value_to_normalize ) { |
|
| 20 | - return filter_var( $value_to_normalize, FILTER_VALIDATE_BOOLEAN ); |
|
| 19 | + public function normalize($value_to_normalize) { |
|
| 20 | + return filter_var($value_to_normalize, FILTER_VALIDATE_BOOLEAN); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | * @param boolean $normalized_value |
| 28 | 28 | * @return string |
| 29 | 29 | */ |
| 30 | - public function unnormalize( $normalized_value ) { |
|
| 31 | - if( $normalized_value ){ |
|
| 30 | + public function unnormalize($normalized_value) { |
|
| 31 | + if ($normalized_value) { |
|
| 32 | 32 | return '1'; |
| 33 | - }else{ |
|
| 33 | + } else { |
|
| 34 | 34 | return '0'; |
| 35 | 35 | } |
| 36 | 36 | } |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | //so in case teh IPN is arriving later, let's try to process an IPN! |
| 91 | 91 | if($_SERVER['REQUEST_METHOD'] == 'POST'){ |
| 92 | 92 | return $this->handle_ipn($_POST, $transaction ); |
| 93 | - }else{ |
|
| 93 | + } else{ |
|
| 94 | 94 | return parent::finalize_payment_for( $transaction ); |
| 95 | 95 | } |
| 96 | 96 | } |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @subpackage |
| 7 | 7 | * @author Mike Nelson |
| 8 | 8 | */ |
| 9 | -class EE_Credit_Card_Normalization extends EE_Text_Normalization{ |
|
| 9 | +class EE_Credit_Card_Normalization extends EE_Text_Normalization { |
|
| 10 | 10 | |
| 11 | 11 | /** |
| 12 | 12 | * @param string $value_to_normalize |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * @subpackage |
| 8 | 8 | * @author Mike Nelson |
| 9 | 9 | */ |
| 10 | -class EE_Float_Normalization extends EE_Normalization_Strategy_Base{ |
|
| 10 | +class EE_Float_Normalization extends EE_Normalization_Strategy_Base { |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @param string $value_to_normalize |
@@ -15,34 +15,34 @@ discard block |
||
| 15 | 15 | * @throws \EE_Validation_Error |
| 16 | 16 | */ |
| 17 | 17 | public function normalize($value_to_normalize) { |
| 18 | - if($value_to_normalize === NULL){ |
|
| 18 | + if ($value_to_normalize === NULL) { |
|
| 19 | 19 | return 0.00; |
| 20 | 20 | } |
| 21 | 21 | $normalized_value = ''; |
| 22 | - if(is_string($value_to_normalize)){ |
|
| 23 | - $normalized_value = str_replace(array(" ",EE_Config::instance()->currency->thsnds),"",$value_to_normalize); |
|
| 22 | + if (is_string($value_to_normalize)) { |
|
| 23 | + $normalized_value = str_replace(array(" ", EE_Config::instance()->currency->thsnds), "", $value_to_normalize); |
|
| 24 | 24 | //normalize it so periods are decimal marks (we don't care where you're from: we're talking PHP now) |
| 25 | - $normalized_value = str_replace( EE_Config::instance()->currency->dec_mrk, ".", $normalized_value) ; |
|
| 25 | + $normalized_value = str_replace(EE_Config::instance()->currency->dec_mrk, ".", $normalized_value); |
|
| 26 | 26 | //double-check there's absolutely nothing left on this string besides numbers |
| 27 | - $normalized_value = preg_replace( "/[^0-9,. ]/", "", $normalized_value); |
|
| 27 | + $normalized_value = preg_replace("/[^0-9,. ]/", "", $normalized_value); |
|
| 28 | 28 | } |
| 29 | - if(strlen($value_to_normalize) > strlen($normalized_value)){ |
|
| 29 | + if (strlen($value_to_normalize) > strlen($normalized_value)) { |
|
| 30 | 30 | //find if this input has a float validation strategy |
| 31 | 31 | //in which case, use its message |
| 32 | 32 | $validation_error_message = NULL; |
| 33 | - foreach( $this->_input->get_validation_strategies() as $validation_strategy ){ |
|
| 34 | - if( $validation_strategy instanceof EE_Float_Validation_Strategy ){ |
|
| 33 | + foreach ($this->_input->get_validation_strategies() as $validation_strategy) { |
|
| 34 | + if ($validation_strategy instanceof EE_Float_Validation_Strategy) { |
|
| 35 | 35 | $validation_error_message = $validation_strategy->get_validation_error_message(); |
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | //this really shouldn't ever happen because fields with a float normalization strategy |
| 39 | 39 | //should also have a float validation strategy, but in case it doesnt use the default |
| 40 | - if( ! $validation_error_message ){ |
|
| 40 | + if ( ! $validation_error_message) { |
|
| 41 | 41 | $default_validation_strategy = new EE_Float_Validation_Strategy(); |
| 42 | 42 | $validation_error_message = $default_validation_strategy->get_validation_error_message(); |
| 43 | 43 | } |
| 44 | - throw new EE_Validation_Error( $validation_error_message, 'float_only' ); |
|
| 45 | - }else{ |
|
| 44 | + throw new EE_Validation_Error($validation_error_message, 'float_only'); |
|
| 45 | + } else { |
|
| 46 | 46 | return floatval($normalized_value); |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -53,9 +53,9 @@ discard block |
||
| 53 | 53 | * @return string |
| 54 | 54 | */ |
| 55 | 55 | public function unnormalize($normalized_value) { |
| 56 | - if( empty( $normalized_value ) ){ |
|
| 56 | + if (empty($normalized_value)) { |
|
| 57 | 57 | return '0.00'; |
| 58 | - }else{ |
|
| 58 | + } else { |
|
| 59 | 59 | return "$normalized_value"; |
| 60 | 60 | } |
| 61 | 61 | } |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $validation_error_message = $default_validation_strategy->get_validation_error_message(); |
| 43 | 43 | } |
| 44 | 44 | throw new EE_Validation_Error( $validation_error_message, 'float_only' ); |
| 45 | - }else{ |
|
| 45 | + } else{ |
|
| 46 | 46 | return floatval($normalized_value); |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | public function unnormalize($normalized_value) { |
| 56 | 56 | if( empty( $normalized_value ) ){ |
| 57 | 57 | return '0.00'; |
| 58 | - }else{ |
|
| 58 | + } else{ |
|
| 59 | 59 | return "$normalized_value"; |
| 60 | 60 | } |
| 61 | 61 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * @subpackage |
| 7 | 7 | * @author Mike Nelson |
| 8 | 8 | */ |
| 9 | -abstract class EE_Normalization_Strategy_Base extends EE_Form_Input_Strategy_Base{ |
|
| 9 | +abstract class EE_Normalization_Strategy_Base extends EE_Form_Input_Strategy_Base { |
|
| 10 | 10 | /** |
| 11 | 11 | * Takes the sanitized value for the input and casts it into the correct PHP type. |
| 12 | 12 | * Eg, turns it into an int, float, string, boolean, datetime, etc. The validation |
@@ -29,8 +29,8 @@ discard block |
||
| 29 | 29 | * @param string $individual_item_to_normalize |
| 30 | 30 | * @return mixed |
| 31 | 31 | */ |
| 32 | - public function normalize_one( $individual_item_to_normalize ){ |
|
| 33 | - return $this->normalize( $individual_item_to_normalize ); |
|
| 32 | + public function normalize_one($individual_item_to_normalize) { |
|
| 33 | + return $this->normalize($individual_item_to_normalize); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | * @param $normalized_value |
| 43 | 43 | * @return array|string the 'raw' value as used in the form, usually a string or array of strings. |
| 44 | 44 | */ |
| 45 | - abstract function unnormalize( $normalized_value ); |
|
| 45 | + abstract function unnormalize($normalized_value); |
|
| 46 | 46 | |
| 47 | 47 | /** |
| 48 | 48 | * Normally the same as unnormalize, except it CANNOT be passed an array and |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | * @param mixed $individual_item_to_unnormalize NOT an array |
| 51 | 51 | * @return string |
| 52 | 52 | */ |
| 53 | - public function unnormalize_one( $individual_item_to_unnormalize ) { |
|
| 54 | - return $this->unnormalize( $individual_item_to_unnormalize ); |
|
| 53 | + public function unnormalize_one($individual_item_to_unnormalize) { |
|
| 54 | + return $this->unnormalize($individual_item_to_unnormalize); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | * the value you would use in the html form (for a Yes_No_Input this could be '1' or '0'). |
| 41 | 41 | * |
| 42 | 42 | * @param $normalized_value |
| 43 | - * @return array|string the 'raw' value as used in the form, usually a string or array of strings. |
|
| 43 | + * @return string the 'raw' value as used in the form, usually a string or array of strings. |
|
| 44 | 44 | */ |
| 45 | 45 | abstract function unnormalize( $normalized_value ); |
| 46 | 46 | |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * @subpackage |
| 8 | 8 | * @author Mike Nelson |
| 9 | 9 | */ |
| 10 | -class EE_Slug_Normalization extends EE_Normalization_Strategy_Base{ |
|
| 10 | +class EE_Slug_Normalization extends EE_Normalization_Strategy_Base { |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @param string $value_to_normalize |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | * @param string $normalized_value |
| 23 | 23 | * @return string |
| 24 | 24 | */ |
| 25 | - public function unnormalize( $normalized_value ) { |
|
| 26 | - return str_replace( "-", " ", $normalized_value ); |
|
| 25 | + public function unnormalize($normalized_value) { |
|
| 26 | + return str_replace("-", " ", $normalized_value); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | } |
@@ -7,16 +7,16 @@ discard block |
||
| 7 | 7 | * @subpackage |
| 8 | 8 | * @author Mike Nelson |
| 9 | 9 | */ |
| 10 | -class EE_Text_Normalization extends EE_Normalization_Strategy_Base{ |
|
| 10 | +class EE_Text_Normalization extends EE_Normalization_Strategy_Base { |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @param string $value_to_normalize |
| 14 | 14 | * @return array|mixed|string |
| 15 | 15 | */ |
| 16 | 16 | public function normalize($value_to_normalize) { |
| 17 | - if(is_array($value_to_normalize)){ |
|
| 17 | + if (is_array($value_to_normalize)) { |
|
| 18 | 18 | return array_shift($value_to_normalize); |
| 19 | - }else{ |
|
| 19 | + } else { |
|
| 20 | 20 | return $value_to_normalize; |
| 21 | 21 | } |
| 22 | 22 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * @param string $normalized_value |
| 26 | 26 | * @return string |
| 27 | 27 | */ |
| 28 | - public function unnormalize( $normalized_value ){ |
|
| 28 | + public function unnormalize($normalized_value) { |
|
| 29 | 29 | return $normalized_value; |
| 30 | 30 | } |
| 31 | 31 | } |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | //so in case teh IPN is arriving later, let's try to process an IPN! |
| 91 | 91 | if($_SERVER['REQUEST_METHOD'] == 'POST'){ |
| 92 | 92 | return $this->handle_ipn($_POST, $transaction ); |
| 93 | - }else{ |
|
| 93 | + } else{ |
|
| 94 | 94 | return parent::finalize_payment_for( $transaction ); |
| 95 | 95 | } |
| 96 | 96 | } |
@@ -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,9 +25,9 @@ discard block |
||
| 25 | 25 | * |
| 26 | 26 | * ------------------------------------------------------------------------ |
| 27 | 27 | */ |
| 28 | -class EE_All_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base{ |
|
| 28 | +class EE_All_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base { |
|
| 29 | 29 | public function remove_sensitive_data($normalized_value) { |
| 30 | - switch(gettype($normalized_value)){ |
|
| 30 | + switch (gettype($normalized_value)) { |
|
| 31 | 31 | case "boolean": |
| 32 | 32 | return false; |
| 33 | 33 | case "integer": |
@@ -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 | * |
@@ -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,13 +25,13 @@ discard block |
||
| 25 | 25 | * |
| 26 | 26 | * ------------------------------------------------------------------------ |
| 27 | 27 | */ |
| 28 | -class EE_CCV_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base{ |
|
| 29 | - public function remove_sensitive_data($normalized_value){ |
|
| 28 | +class EE_CCV_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base { |
|
| 29 | + public function remove_sensitive_data($normalized_value) { |
|
| 30 | 30 | // Get the ccv Length |
| 31 | 31 | $ccv_lenght = strlen($normalized_value); |
| 32 | 32 | // Replace all characters of credit card except the last four and dashes |
| 33 | - for($i=0; $i<$ccv_lenght; $i++){ |
|
| 34 | - if($normalized_value[$i] == '-'){continue;} |
|
| 33 | + for ($i = 0; $i < $ccv_lenght; $i++) { |
|
| 34 | + if ($normalized_value[$i] == '-') {continue; } |
|
| 35 | 35 | $normalized_value[$i] = 'X'; |
| 36 | 36 | } |
| 37 | 37 | // Return the masked Credit Card # |
@@ -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 | * |
@@ -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,13 +25,13 @@ discard block |
||
| 25 | 25 | * |
| 26 | 26 | * ------------------------------------------------------------------------ |
| 27 | 27 | */ |
| 28 | -class EE_Credit_Card_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base{ |
|
| 29 | - public function remove_sensitive_data($normalized_value){ |
|
| 28 | +class EE_Credit_Card_Sensitive_Data_Removal extends EE_Sensitive_Data_Removal_Base { |
|
| 29 | + public function remove_sensitive_data($normalized_value) { |
|
| 30 | 30 | // Get the cc Length |
| 31 | 31 | $cc_length = strlen($normalized_value); |
| 32 | 32 | // Replace all characters of credit card except the last four and dashes |
| 33 | - for($i=0; $i<$cc_length-4; $i++){ |
|
| 34 | - if($normalized_value[$i] == '-'){continue;} |
|
| 33 | + for ($i = 0; $i < $cc_length - 4; $i++) { |
|
| 34 | + if ($normalized_value[$i] == '-') {continue; } |
|
| 35 | 35 | $normalized_value[$i] = 'X'; |
| 36 | 36 | } |
| 37 | 37 | // Return the masked Credit Card # |
@@ -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 | * |