@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy{ |
12 | 12 | |
13 | 13 | /** |
14 | - * @param null $validation_error_message |
|
15 | - */ |
|
14 | + * @param null $validation_error_message |
|
15 | + */ |
|
16 | 16 | public function __construct( $validation_error_message = NULL ) { |
17 | 17 | if( ! $validation_error_message ){ |
18 | 18 | $validation_error_message = __("Please enter a valid email address.", "event_espresso"); |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | |
39 | 39 | |
40 | 40 | /** |
41 | - * @return array |
|
42 | - */ |
|
41 | + * @return array |
|
42 | + */ |
|
43 | 43 | function get_jquery_validation_rule_array(){ |
44 | 44 | return array( 'email'=>true, 'messages' => array( 'email' => $this->get_validation_error_message() ) ); |
45 | 45 | } |
@@ -59,56 +59,56 @@ discard block |
||
59 | 59 | $atIndex = strrpos($email, "@"); |
60 | 60 | if (is_bool($atIndex) && !$atIndex) |
61 | 61 | { |
62 | - $isValid = false; |
|
62 | + $isValid = false; |
|
63 | 63 | } |
64 | 64 | else |
65 | 65 | { |
66 | - $domain = substr($email, $atIndex+1); |
|
67 | - $local = substr($email, 0, $atIndex); |
|
68 | - $localLen = strlen($local); |
|
69 | - $domainLen = strlen($domain); |
|
70 | - if ($localLen < 1 || $localLen > 64) |
|
71 | - { |
|
72 | - // local part length exceeded |
|
73 | - $isValid = false; |
|
74 | - } |
|
75 | - else if ($domainLen < 1 || $domainLen > 255) |
|
76 | - { |
|
77 | - // domain part length exceeded |
|
78 | - $isValid = false; |
|
79 | - } |
|
80 | - else if ($local[0] == '.' || $local[$localLen-1] == '.') |
|
81 | - { |
|
82 | - // local part starts or ends with '.' |
|
83 | - $isValid = false; |
|
84 | - } |
|
85 | - else if (preg_match('/\\.\\./', $local)) |
|
86 | - { |
|
87 | - // local part has two consecutive dots |
|
88 | - $isValid = false; |
|
89 | - } |
|
90 | - else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
91 | - { |
|
92 | - // character not valid in domain part |
|
93 | - $isValid = false; |
|
94 | - } |
|
95 | - else if (preg_match('/\\.\\./', $domain)) |
|
96 | - { |
|
97 | - // domain part has two consecutive dots |
|
98 | - $isValid = false; |
|
99 | - } |
|
100 | - else if |
|
66 | + $domain = substr($email, $atIndex+1); |
|
67 | + $local = substr($email, 0, $atIndex); |
|
68 | + $localLen = strlen($local); |
|
69 | + $domainLen = strlen($domain); |
|
70 | + if ($localLen < 1 || $localLen > 64) |
|
71 | + { |
|
72 | + // local part length exceeded |
|
73 | + $isValid = false; |
|
74 | + } |
|
75 | + else if ($domainLen < 1 || $domainLen > 255) |
|
76 | + { |
|
77 | + // domain part length exceeded |
|
78 | + $isValid = false; |
|
79 | + } |
|
80 | + else if ($local[0] == '.' || $local[$localLen-1] == '.') |
|
81 | + { |
|
82 | + // local part starts or ends with '.' |
|
83 | + $isValid = false; |
|
84 | + } |
|
85 | + else if (preg_match('/\\.\\./', $local)) |
|
86 | + { |
|
87 | + // local part has two consecutive dots |
|
88 | + $isValid = false; |
|
89 | + } |
|
90 | + else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
91 | + { |
|
92 | + // character not valid in domain part |
|
93 | + $isValid = false; |
|
94 | + } |
|
95 | + else if (preg_match('/\\.\\./', $domain)) |
|
96 | + { |
|
97 | + // domain part has two consecutive dots |
|
98 | + $isValid = false; |
|
99 | + } |
|
100 | + else if |
|
101 | 101 | (!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', |
102 | - str_replace("\\\\","",$local))) |
|
103 | - { |
|
104 | - // character not valid in local part unless |
|
105 | - // local part is quoted |
|
106 | - if (!preg_match('/^"(\\\\"|[^"])+"$/', |
|
107 | - str_replace("\\\\","",$local))) |
|
108 | - { |
|
109 | - $isValid = false; |
|
110 | - } |
|
111 | - } |
|
102 | + str_replace("\\\\","",$local))) |
|
103 | + { |
|
104 | + // character not valid in local part unless |
|
105 | + // local part is quoted |
|
106 | + if (!preg_match('/^"(\\\\"|[^"])+"$/', |
|
107 | + str_replace("\\\\","",$local))) |
|
108 | + { |
|
109 | + $isValid = false; |
|
110 | + } |
|
111 | + } |
|
112 | 112 | //don't check the DNS records... just personal preference |
113 | 113 | // if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A"))) |
114 | 114 | // { |
@@ -8,16 +8,16 @@ discard block |
||
8 | 8 | * @since 4.6 |
9 | 9 | * |
10 | 10 | */ |
11 | -class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy{ |
|
11 | +class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @param null $validation_error_message |
15 | 15 | */ |
16 | - public function __construct( $validation_error_message = NULL ) { |
|
17 | - if( ! $validation_error_message ){ |
|
16 | + public function __construct($validation_error_message = NULL) { |
|
17 | + if ( ! $validation_error_message) { |
|
18 | 18 | $validation_error_message = __("Please enter a valid email address.", "event_espresso"); |
19 | 19 | } |
20 | - parent::__construct( $validation_error_message ); |
|
20 | + parent::__construct($validation_error_message); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | * @throws \EE_Validation_Error |
31 | 31 | */ |
32 | 32 | function validate($normalized_value) { |
33 | - if( $normalized_value && ! $this->_validate_email($normalized_value) ){ |
|
34 | - throw new EE_Validation_Error( $this->get_validation_error_message(), 'required'); |
|
33 | + if ($normalized_value && ! $this->_validate_email($normalized_value)) { |
|
34 | + throw new EE_Validation_Error($this->get_validation_error_message(), 'required'); |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
@@ -40,8 +40,8 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * @return array |
42 | 42 | */ |
43 | - function get_jquery_validation_rule_array(){ |
|
44 | - return array( 'email'=>true, 'messages' => array( 'email' => $this->get_validation_error_message() ) ); |
|
43 | + function get_jquery_validation_rule_array() { |
|
44 | + return array('email'=>true, 'messages' => array('email' => $this->get_validation_error_message())); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -57,13 +57,13 @@ discard block |
||
57 | 57 | { |
58 | 58 | $isValid = true; |
59 | 59 | $atIndex = strrpos($email, "@"); |
60 | - if (is_bool($atIndex) && !$atIndex) |
|
60 | + if (is_bool($atIndex) && ! $atIndex) |
|
61 | 61 | { |
62 | 62 | $isValid = false; |
63 | 63 | } |
64 | 64 | else |
65 | 65 | { |
66 | - $domain = substr($email, $atIndex+1); |
|
66 | + $domain = substr($email, $atIndex + 1); |
|
67 | 67 | $local = substr($email, 0, $atIndex); |
68 | 68 | $localLen = strlen($local); |
69 | 69 | $domainLen = strlen($domain); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | // domain part length exceeded |
78 | 78 | $isValid = false; |
79 | 79 | } |
80 | - else if ($local[0] == '.' || $local[$localLen-1] == '.') |
|
80 | + else if ($local[0] == '.' || $local[$localLen - 1] == '.') |
|
81 | 81 | { |
82 | 82 | // local part starts or ends with '.' |
83 | 83 | $isValid = false; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | // local part has two consecutive dots |
88 | 88 | $isValid = false; |
89 | 89 | } |
90 | - else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
90 | + else if ( ! preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
91 | 91 | { |
92 | 92 | // character not valid in domain part |
93 | 93 | $isValid = false; |
@@ -97,14 +97,13 @@ discard block |
||
97 | 97 | // domain part has two consecutive dots |
98 | 98 | $isValid = false; |
99 | 99 | } |
100 | - else if |
|
101 | -(!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', |
|
102 | - str_replace("\\\\","",$local))) |
|
100 | + else if ( ! preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', |
|
101 | + str_replace("\\\\", "", $local))) |
|
103 | 102 | { |
104 | 103 | // character not valid in local part unless |
105 | 104 | // local part is quoted |
106 | - if (!preg_match('/^"(\\\\"|[^"])+"$/', |
|
107 | - str_replace("\\\\","",$local))) |
|
105 | + if ( ! preg_match('/^"(\\\\"|[^"])+"$/', |
|
106 | + str_replace("\\\\", "", $local))) |
|
108 | 107 | { |
109 | 108 | $isValid = false; |
110 | 109 | } |
@@ -60,8 +60,7 @@ discard block |
||
60 | 60 | if (is_bool($atIndex) && !$atIndex) |
61 | 61 | { |
62 | 62 | $isValid = false; |
63 | - } |
|
64 | - else |
|
63 | + } else |
|
65 | 64 | { |
66 | 65 | $domain = substr($email, $atIndex+1); |
67 | 66 | $local = substr($email, 0, $atIndex); |
@@ -71,33 +70,27 @@ discard block |
||
71 | 70 | { |
72 | 71 | // local part length exceeded |
73 | 72 | $isValid = false; |
74 | - } |
|
75 | - else if ($domainLen < 1 || $domainLen > 255) |
|
73 | + } else if ($domainLen < 1 || $domainLen > 255) |
|
76 | 74 | { |
77 | 75 | // domain part length exceeded |
78 | 76 | $isValid = false; |
79 | - } |
|
80 | - else if ($local[0] == '.' || $local[$localLen-1] == '.') |
|
77 | + } else if ($local[0] == '.' || $local[$localLen-1] == '.') |
|
81 | 78 | { |
82 | 79 | // local part starts or ends with '.' |
83 | 80 | $isValid = false; |
84 | - } |
|
85 | - else if (preg_match('/\\.\\./', $local)) |
|
81 | + } else if (preg_match('/\\.\\./', $local)) |
|
86 | 82 | { |
87 | 83 | // local part has two consecutive dots |
88 | 84 | $isValid = false; |
89 | - } |
|
90 | - else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
85 | + } else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain)) |
|
91 | 86 | { |
92 | 87 | // character not valid in domain part |
93 | 88 | $isValid = false; |
94 | - } |
|
95 | - else if (preg_match('/\\.\\./', $domain)) |
|
89 | + } else if (preg_match('/\\.\\./', $domain)) |
|
96 | 90 | { |
97 | 91 | // domain part has two consecutive dots |
98 | 92 | $isValid = false; |
99 | - } |
|
100 | - else if |
|
93 | + } else if |
|
101 | 94 | (!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/', |
102 | 95 | str_replace("\\\\","",$local))) |
103 | 96 | { |
@@ -19,20 +19,20 @@ discard block |
||
19 | 19 | */ |
20 | 20 | function validate($normalized_value) { |
21 | 21 | parent::validate($normalized_value); |
22 | - if( ! $this->_input instanceof EE_Form_Input_With_Options_Base){ |
|
22 | + if ( ! $this->_input instanceof EE_Form_Input_With_Options_Base) { |
|
23 | 23 | throw new EE_Error(sprintf(__("Cannot use Enum Validation Strategy with an input that doesn't have options", "event_espresso"))); |
24 | 24 | } |
25 | 25 | $enum_options = $this->_input->flat_options(); |
26 | - if( $normalized_value === TRUE){ |
|
26 | + if ($normalized_value === TRUE) { |
|
27 | 27 | $normalized_value = 1; |
28 | - }elseif( $normalized_value === FALSE){ |
|
28 | + }elseif ($normalized_value === FALSE) { |
|
29 | 29 | $normalized_value = 0; |
30 | 30 | } |
31 | - if( $normalized_value !== NULL && ! array_key_exists( $normalized_value, $enum_options )){ |
|
32 | - throw new EE_Validation_Error( $this->get_validation_error_message(), |
|
31 | + if ($normalized_value !== NULL && ! array_key_exists($normalized_value, $enum_options)) { |
|
32 | + throw new EE_Validation_Error($this->get_validation_error_message(), |
|
33 | 33 | 'invalid_enum_value' |
34 | 34 | ); |
35 | - }else{ |
|
35 | + } else { |
|
36 | 36 | return true; |
37 | 37 | } |
38 | 38 | } |
@@ -42,15 +42,15 @@ discard block |
||
42 | 42 | * on the allowed options. |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - public function get_validation_error_message(){ |
|
45 | + public function get_validation_error_message() { |
|
46 | 46 | $parent_validation_error_message = parent::get_validation_error_message(); |
47 | - if( ! $parent_validation_error_message ) { |
|
47 | + if ( ! $parent_validation_error_message) { |
|
48 | 48 | $enum_options = $this->_input instanceof EE_Form_Input_With_Options_Base ? $this->_input->flat_options() : ''; |
49 | 49 | return sprintf( |
50 | 50 | __("This is not allowed option. Allowed options are %s.", "event_espresso"), |
51 | - implode( ', ', $enum_options ) |
|
51 | + implode(', ', $enum_options) |
|
52 | 52 | ); |
53 | - }else{ |
|
53 | + } else { |
|
54 | 54 | return $parent_validation_error_message; |
55 | 55 | } |
56 | 56 | } |
@@ -25,14 +25,14 @@ discard block |
||
25 | 25 | $enum_options = $this->_input->flat_options(); |
26 | 26 | if( $normalized_value === TRUE){ |
27 | 27 | $normalized_value = 1; |
28 | - }elseif( $normalized_value === FALSE){ |
|
28 | + } elseif( $normalized_value === FALSE){ |
|
29 | 29 | $normalized_value = 0; |
30 | 30 | } |
31 | 31 | if( $normalized_value !== NULL && ! array_key_exists( $normalized_value, $enum_options )){ |
32 | 32 | throw new EE_Validation_Error( $this->get_validation_error_message(), |
33 | 33 | 'invalid_enum_value' |
34 | 34 | ); |
35 | - }else{ |
|
35 | + } else{ |
|
36 | 36 | return true; |
37 | 37 | } |
38 | 38 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | __("This is not allowed option. Allowed options are %s.", "event_espresso"), |
51 | 51 | implode( ', ', $enum_options ) |
52 | 52 | ); |
53 | - }else{ |
|
53 | + } else{ |
|
54 | 54 | return $parent_validation_error_message; |
55 | 55 | } |
56 | 56 | } |
@@ -8,16 +8,16 @@ discard block |
||
8 | 8 | * @since 4.6 |
9 | 9 | * |
10 | 10 | */ |
11 | -class EE_Float_Validation_Strategy extends EE_Validation_Strategy_Base{ |
|
11 | +class EE_Float_Validation_Strategy extends EE_Validation_Strategy_Base { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @param null $validation_error_message |
15 | 15 | */ |
16 | - public function __construct( $validation_error_message = NULL ) { |
|
17 | - if( ! $validation_error_message ){ |
|
16 | + public function __construct($validation_error_message = NULL) { |
|
17 | + if ( ! $validation_error_message) { |
|
18 | 18 | $validation_error_message = sprintf(__("Only numeric characters, commas, periods, and spaces, please!", "event_espresso")); |
19 | 19 | } |
20 | - parent::__construct( $validation_error_message ); |
|
20 | + parent::__construct($validation_error_message); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | /** |
37 | 37 | * @return array |
38 | 38 | */ |
39 | - function get_jquery_validation_rule_array(){ |
|
40 | - return array('number'=>true, 'messages' => array( 'number' => $this->get_validation_error_message() ) ); |
|
39 | + function get_jquery_validation_rule_array() { |
|
40 | + return array('number'=>true, 'messages' => array('number' => $this->get_validation_error_message())); |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 |
@@ -6,16 +6,16 @@ discard block |
||
6 | 6 | * @subpackage Expression package is undefined on line 19, column 19 in Templates/Scripting/PHPClass.php. |
7 | 7 | * @author Mike Nelson |
8 | 8 | */ |
9 | -class EE_Int_Validation_Strategy extends EE_Validation_Strategy_Base{ |
|
9 | +class EE_Int_Validation_Strategy extends EE_Validation_Strategy_Base { |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * @param null $validation_error_message |
13 | 13 | */ |
14 | - public function __construct( $validation_error_message = NULL ) { |
|
15 | - if( ! $validation_error_message ){ |
|
14 | + public function __construct($validation_error_message = NULL) { |
|
15 | + if ( ! $validation_error_message) { |
|
16 | 16 | $validation_error_message = __("Only digits are allowed.", "event_espresso"); |
17 | 17 | } |
18 | - parent::__construct( $validation_error_message ); |
|
18 | + parent::__construct($validation_error_message); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @return array |
34 | 34 | */ |
35 | - function get_jquery_validation_rule_array(){ |
|
36 | - return array('digits'=>true, 'messages' => array( 'digits' => $this->get_validation_error_message() ) ); |
|
35 | + function get_jquery_validation_rule_array() { |
|
36 | + return array('digits'=>true, 'messages' => array('digits' => $this->get_validation_error_message())); |
|
37 | 37 | } |
38 | 38 | } |
39 | 39 |
@@ -11,14 +11,14 @@ discard block |
||
11 | 11 | * @since 4.6 |
12 | 12 | * |
13 | 13 | */ |
14 | -class EE_Many_Valued_Validation_Strategy extends EE_Validation_Strategy_Base{ |
|
14 | +class EE_Many_Valued_Validation_Strategy extends EE_Validation_Strategy_Base { |
|
15 | 15 | protected $_individual_item_validation_strategies = array(); |
16 | 16 | /** |
17 | 17 | * |
18 | 18 | * @param EE_Validation_Strategy_Base[] $individual_item_validation_strategies (or a single EE_Validation_Strategy_Base) |
19 | 19 | */ |
20 | 20 | public function __construct($individual_item_validation_strategies) { |
21 | - if( ! is_array($individual_item_validation_strategies)){ |
|
21 | + if ( ! is_array($individual_item_validation_strategies)) { |
|
22 | 22 | $individual_item_validation_strategies = array($individual_item_validation_strategies); |
23 | 23 | } |
24 | 24 | $this->_individual_item_validation_strategies = $individual_item_validation_strategies; |
@@ -30,14 +30,14 @@ discard block |
||
30 | 30 | * @return boolean |
31 | 31 | */ |
32 | 32 | function validate($normalized_value) { |
33 | - if( is_array($normalized_value)){ |
|
33 | + if (is_array($normalized_value)) { |
|
34 | 34 | $items_to_validate = $normalized_value; |
35 | - }else{ |
|
35 | + } else { |
|
36 | 36 | $items_to_validate = array($normalized_value); |
37 | 37 | } |
38 | - foreach($items_to_validate as $individual_item){ |
|
39 | - foreach($this->_individual_item_validation_strategies as $validation_strategy){ |
|
40 | - if ( $validation_strategy instanceof EE_Validation_Strategy_Base ) { |
|
38 | + foreach ($items_to_validate as $individual_item) { |
|
39 | + foreach ($this->_individual_item_validation_strategies as $validation_strategy) { |
|
40 | + if ($validation_strategy instanceof EE_Validation_Strategy_Base) { |
|
41 | 41 | $validation_strategy->validate($individual_item); |
42 | 42 | } |
43 | 43 | } |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | */ |
51 | 51 | function _construct_finalize(\EE_Form_Input_Base $form_input) { |
52 | 52 | parent::_construct_finalize($form_input); |
53 | - foreach($this->_individual_item_validation_strategies as $item_validation_strategy){ |
|
54 | - if ( $item_validation_strategy instanceof EE_Validation_Strategy_Base ) { |
|
53 | + foreach ($this->_individual_item_validation_strategies as $item_validation_strategy) { |
|
54 | + if ($item_validation_strategy instanceof EE_Validation_Strategy_Base) { |
|
55 | 55 | $item_validation_strategy->_construct_finalize($form_input); |
56 | 56 | } |
57 | 57 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | function validate($normalized_value) { |
33 | 33 | if( is_array($normalized_value)){ |
34 | 34 | $items_to_validate = $normalized_value; |
35 | - }else{ |
|
35 | + } else{ |
|
36 | 36 | $items_to_validate = array($normalized_value); |
37 | 37 | } |
38 | 38 | foreach($items_to_validate as $individual_item){ |
@@ -8,16 +8,16 @@ discard block |
||
8 | 8 | * @since 4.6 |
9 | 9 | * |
10 | 10 | */ |
11 | -class EE_Required_Validation_Strategy extends EE_Validation_Strategy_Base{ |
|
11 | +class EE_Required_Validation_Strategy extends EE_Validation_Strategy_Base { |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @param null $validation_error_message |
15 | 15 | */ |
16 | - public function __construct( $validation_error_message = NULL ) { |
|
17 | - if( ! $validation_error_message ){ |
|
16 | + public function __construct($validation_error_message = NULL) { |
|
17 | + if ( ! $validation_error_message) { |
|
18 | 18 | $validation_error_message = __("This field is required.", "event_espresso"); |
19 | 19 | } |
20 | - parent::__construct( $validation_error_message ); |
|
20 | + parent::__construct($validation_error_message); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | * @throws \EE_Validation_Error |
31 | 31 | */ |
32 | 32 | function validate($normalized_value) { |
33 | - if( $normalized_value === '' || $normalized_value === NULL || $normalized_value === array()){ |
|
34 | - throw new EE_Validation_Error( $this->get_validation_error_message(), 'required'); |
|
35 | - }else{ |
|
33 | + if ($normalized_value === '' || $normalized_value === NULL || $normalized_value === array()) { |
|
34 | + throw new EE_Validation_Error($this->get_validation_error_message(), 'required'); |
|
35 | + } else { |
|
36 | 36 | return true; |
37 | 37 | } |
38 | 38 | } |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | /** |
43 | 43 | * @return array |
44 | 44 | */ |
45 | - function get_jquery_validation_rule_array(){ |
|
46 | - return array( 'required'=>true, 'messages' => array( 'required' => $this->get_validation_error_message() ) ); |
|
45 | + function get_jquery_validation_rule_array() { |
|
46 | + return array('required'=>true, 'messages' => array('required' => $this->get_validation_error_message())); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | function validate($normalized_value) { |
33 | 33 | if( $normalized_value === '' || $normalized_value === NULL || $normalized_value === array()){ |
34 | 34 | throw new EE_Validation_Error( $this->get_validation_error_message(), 'required'); |
35 | - }else{ |
|
35 | + } else{ |
|
36 | 36 | return true; |
37 | 37 | } |
38 | 38 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @since 4.6 |
9 | 9 | * |
10 | 10 | */ |
11 | -abstract class EE_Validation_Strategy_Base extends EE_Form_Input_Strategy_Base{ |
|
11 | +abstract class EE_Validation_Strategy_Base extends EE_Form_Input_Strategy_Base { |
|
12 | 12 | |
13 | 13 | |
14 | 14 | protected $_validation_error_message = ''; |
@@ -18,8 +18,8 @@ discard block |
||
18 | 18 | /** |
19 | 19 | * @param null $validation_error_message |
20 | 20 | */ |
21 | - public function __construct( $validation_error_message = NULL ) { |
|
22 | - $this->_validation_error_message = $validation_error_message === NULL ? __( 'Input invalid', 'event_espresso' ) : $validation_error_message ; |
|
21 | + public function __construct($validation_error_message = NULL) { |
|
22 | + $this->_validation_error_message = $validation_error_message === NULL ? __('Input invalid', 'event_espresso') : $validation_error_message; |
|
23 | 23 | parent::__construct(); |
24 | 24 | } |
25 | 25 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @param mixed $normalized_value ready for validation. May very well be NULL (which, unless |
35 | 35 | * this validation strategy is the 'required' validation strategy, most should be OK with a null, empty string, etc) |
36 | 36 | */ |
37 | - function validate($normalized_value){ |
|
37 | + function validate($normalized_value) { |
|
38 | 38 | //by default, the validation strategy does no validation. this should be implemented |
39 | 39 | } |
40 | 40 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @return array |
60 | 60 | */ |
61 | - function get_jquery_validation_rule_array(){ |
|
61 | + function get_jquery_validation_rule_array() { |
|
62 | 62 | return array(); |
63 | 63 | } |
64 | 64 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * the input is invalid. Used for both frontend and backend validation. |
68 | 68 | * @return string |
69 | 69 | */ |
70 | - function get_validation_error_message(){ |
|
70 | + function get_validation_error_message() { |
|
71 | 71 | return $this->_validation_error_message; |
72 | 72 | } |
73 | 73 | } |
74 | 74 | \ No newline at end of file |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_Invoice_Line_Item_Display_Strategy |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since $VID:$ |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_Invoice_Line_Item_Display_Strategy |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since $VID:$ |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | class EE_Invoice_Line_Item_Display_Strategy implements EEI_Line_Item_Display { |
15 | 15 | |
16 | 16 | /** |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | * @param array $options |
19 | 19 | * @return mixed |
20 | 20 | */ |
21 | - public function display_line_item( EE_Line_Item $line_item, $options = array() ) { |
|
21 | + public function display_line_item(EE_Line_Item $line_item, $options = array()) { |
|
22 | 22 | |
23 | - EE_Registry::instance()->load_helper( 'HTML' ); |
|
23 | + EE_Registry::instance()->load_helper('HTML'); |
|
24 | 24 | |
25 | 25 | $html = ''; |
26 | 26 | // set some default options and merge with incoming |
@@ -28,58 +28,58 @@ discard block |
||
28 | 28 | 'show_desc' => TRUE, |
29 | 29 | 'odd' => FALSE |
30 | 30 | ); |
31 | - $options = array_merge( $default_options, (array)$options ); |
|
31 | + $options = array_merge($default_options, (array) $options); |
|
32 | 32 | |
33 | - switch( $line_item->type() ) { |
|
33 | + switch ($line_item->type()) { |
|
34 | 34 | |
35 | 35 | case EEM_Line_Item::type_total: |
36 | 36 | // loop thru children |
37 | - foreach( $line_item->children() as $child_line_item ) { |
|
37 | + foreach ($line_item->children() as $child_line_item) { |
|
38 | 38 | // recursively feed children back into this method |
39 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
39 | + $html .= $this->display_line_item($child_line_item, $options); |
|
40 | 40 | } |
41 | - $html .= $this->_separator_row( $options ); |
|
42 | - $html .= $this->_total_row( $line_item, __('Total', 'event_espresso'), $options ); |
|
41 | + $html .= $this->_separator_row($options); |
|
42 | + $html .= $this->_total_row($line_item, __('Total', 'event_espresso'), $options); |
|
43 | 43 | break; |
44 | 44 | |
45 | 45 | |
46 | 46 | case EEM_Line_Item::type_sub_total: |
47 | 47 | // loop thru children |
48 | - foreach( $line_item->children() as $child_line_item ) { |
|
48 | + foreach ($line_item->children() as $child_line_item) { |
|
49 | 49 | // recursively feed children back into this method |
50 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
50 | + $html .= $this->display_line_item($child_line_item, $options); |
|
51 | 51 | } |
52 | - $html .= $this->_total_row( $line_item, __('Sub-Total', 'event_espresso'), $options ); |
|
52 | + $html .= $this->_total_row($line_item, __('Sub-Total', 'event_espresso'), $options); |
|
53 | 53 | break; |
54 | 54 | |
55 | 55 | |
56 | 56 | case EEM_Line_Item::type_tax_sub_total: |
57 | 57 | // loop thru children |
58 | - foreach( $line_item->children() as $child_line_item ) { |
|
58 | + foreach ($line_item->children() as $child_line_item) { |
|
59 | 59 | // recursively feed children back into this method |
60 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
60 | + $html .= $this->display_line_item($child_line_item, $options); |
|
61 | 61 | } |
62 | - $html .= $this->_total_row( $line_item, __('Tax Total', 'event_espresso'), $options ); |
|
62 | + $html .= $this->_total_row($line_item, __('Tax Total', 'event_espresso'), $options); |
|
63 | 63 | break; |
64 | 64 | |
65 | 65 | |
66 | 66 | case EEM_Line_Item::type_line_item: |
67 | 67 | // item row |
68 | - $html .= $this->_item_row( $line_item, $options ); |
|
68 | + $html .= $this->_item_row($line_item, $options); |
|
69 | 69 | // got any kids? |
70 | - foreach( $line_item->children() as $child_line_item ) { |
|
71 | - $this->display_line_item( $child_line_item, $options ); |
|
70 | + foreach ($line_item->children() as $child_line_item) { |
|
71 | + $this->display_line_item($child_line_item, $options); |
|
72 | 72 | } |
73 | 73 | break; |
74 | 74 | |
75 | 75 | |
76 | 76 | case EEM_Line_Item::type_sub_line_item: |
77 | - $html .= $this->_sub_item_row( $line_item, $options ); |
|
77 | + $html .= $this->_sub_item_row($line_item, $options); |
|
78 | 78 | break; |
79 | 79 | |
80 | 80 | |
81 | 81 | case EEM_Line_Item::type_tax: |
82 | - $html .= $this->_tax_row( $line_item, $options ); |
|
82 | + $html .= $this->_tax_row($line_item, $options); |
|
83 | 83 | break; |
84 | 84 | |
85 | 85 | } |
@@ -96,21 +96,21 @@ discard block |
||
96 | 96 | * @param array $options |
97 | 97 | * @return mixed |
98 | 98 | */ |
99 | - private function _item_row( EE_Line_Item $line_item, $options = array() ) { |
|
99 | + private function _item_row(EE_Line_Item $line_item, $options = array()) { |
|
100 | 100 | // start of row |
101 | 101 | $row_class = $options['odd'] ? 'item odd' : 'item'; |
102 | - $html = EEH_HTML::tr( '', $row_class ); |
|
102 | + $html = EEH_HTML::tr('', $row_class); |
|
103 | 103 | // name td |
104 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l' ); |
|
104 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l'); |
|
105 | 105 | // desc td |
106 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
106 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
107 | 107 | // quantity td |
108 | - $html .= EEH_HTML::td( $line_item->quantity(), '', 'item_l' ); |
|
108 | + $html .= EEH_HTML::td($line_item->quantity(), '', 'item_l'); |
|
109 | 109 | // price td |
110 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c' ); |
|
110 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c'); |
|
111 | 111 | // total td |
112 | - $total = $line_item->is_taxable() ? $line_item->total_no_code() . '*' : $line_item->total_no_code(); |
|
113 | - $html .= EEH_HTML::td( $total, '', 'item_r' ); |
|
112 | + $total = $line_item->is_taxable() ? $line_item->total_no_code().'*' : $line_item->total_no_code(); |
|
113 | + $html .= EEH_HTML::td($total, '', 'item_r'); |
|
114 | 114 | // end of row |
115 | 115 | $html .= EEH_HTML::trx(); |
116 | 116 | return $html; |
@@ -125,22 +125,22 @@ discard block |
||
125 | 125 | * @param array $options |
126 | 126 | * @return mixed |
127 | 127 | */ |
128 | - private function _sub_item_row( EE_Line_Item $line_item, $options = array() ) { |
|
128 | + private function _sub_item_row(EE_Line_Item $line_item, $options = array()) { |
|
129 | 129 | // start of row |
130 | - $html = EEH_HTML::tr( '', 'item sub-item-row' ); |
|
130 | + $html = EEH_HTML::tr('', 'item sub-item-row'); |
|
131 | 131 | // name td |
132 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l sub-item' ); |
|
132 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l sub-item'); |
|
133 | 133 | // desc td |
134 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
135 | - $html .= EEH_HTML::td() . EEH_HTML::tdx(); |
|
134 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
135 | + $html .= EEH_HTML::td().EEH_HTML::tdx(); |
|
136 | 136 | // discount/surcharge td |
137 | - if ( $line_item->is_percent() ) { |
|
138 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', 'item_c' ); |
|
137 | + if ($line_item->is_percent()) { |
|
138 | + $html .= EEH_HTML::td($line_item->percent().'%', '', 'item_c'); |
|
139 | 139 | } else { |
140 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c' ); |
|
140 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c'); |
|
141 | 141 | } |
142 | 142 | // total td |
143 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'item_r' ); |
|
143 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'item_r'); |
|
144 | 144 | // end of row |
145 | 145 | $html .= EEH_HTML::trx(); |
146 | 146 | return $html; |
@@ -155,17 +155,17 @@ discard block |
||
155 | 155 | * @param array $options |
156 | 156 | * @return mixed |
157 | 157 | */ |
158 | - private function _tax_row( EE_Line_Item $line_item, $options = array() ) { |
|
158 | + private function _tax_row(EE_Line_Item $line_item, $options = array()) { |
|
159 | 159 | // start of row |
160 | - $html = EEH_HTML::tr( '', 'item sub-item tax-total' ); |
|
160 | + $html = EEH_HTML::tr('', 'item sub-item tax-total'); |
|
161 | 161 | // name td |
162 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l sub-item' ); |
|
162 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l sub-item'); |
|
163 | 163 | // desc td |
164 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
164 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
165 | 165 | // percent td |
166 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', 'item_c', '', ' colspan="2"' ); |
|
166 | + $html .= EEH_HTML::td($line_item->percent().'%', '', 'item_c', '', ' colspan="2"'); |
|
167 | 167 | // total td |
168 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'item_r' ); |
|
168 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'item_r'); |
|
169 | 169 | // end of row |
170 | 170 | $html .= EEH_HTML::trx(); |
171 | 171 | return $html; |
@@ -181,17 +181,17 @@ discard block |
||
181 | 181 | * @param array $options |
182 | 182 | * @return mixed |
183 | 183 | */ |
184 | - private function _total_row( EE_Line_Item $line_item, $text = '', $options = array() ) { |
|
184 | + private function _total_row(EE_Line_Item $line_item, $text = '', $options = array()) { |
|
185 | 185 | // colspan |
186 | 186 | $colspan = $options['show_desc'] ? ' colspan="2"' : ''; |
187 | 187 | // start of row |
188 | - $html = EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
188 | + $html = EEH_HTML::tr('', '', 'total_tr odd'); |
|
189 | 189 | // empty td |
190 | - $html .= EEH_HTML::td( EEH_HTML::nbsp(), '', '', '', $colspan ); |
|
190 | + $html .= EEH_HTML::td(EEH_HTML::nbsp(), '', '', '', $colspan); |
|
191 | 191 | // total td |
192 | - $html .= EEH_HTML::td( $text, '', 'total_currency total', '', $colspan ); |
|
192 | + $html .= EEH_HTML::td($text, '', 'total_currency total', '', $colspan); |
|
193 | 193 | // total td |
194 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'total' ); |
|
194 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'total'); |
|
195 | 195 | // end of row |
196 | 196 | $html .= EEH_HTML::trx(); |
197 | 197 | return $html; |
@@ -205,11 +205,11 @@ discard block |
||
205 | 205 | * @param array $options |
206 | 206 | * @return mixed |
207 | 207 | */ |
208 | - private function _separator_row( $options = array() ) { |
|
208 | + private function _separator_row($options = array()) { |
|
209 | 209 | // colspan |
210 | 210 | $colspan = $options['show_desc'] ? ' colspan="5"' : ' colspan="4"'; |
211 | 211 | // start of row |
212 | - $html = EEH_HTML::tr( EEH_HTML::td( '<hr>', '', '', '', $colspan )); |
|
212 | + $html = EEH_HTML::tr(EEH_HTML::td('<hr>', '', '', '', $colspan)); |
|
213 | 213 | // // separator td |
214 | 214 | // $html .= EEH_HTML::td( '<hr>', '', '', '', $colspan ); |
215 | 215 | // // end of row |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_Line_Item_Display |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since $VID:$ |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_Line_Item_Display |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since $VID:$ |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | class EE_Line_Item_Display { |
15 | 15 | |
16 | 16 | private $strategy = NULL; |
@@ -18,9 +18,9 @@ discard block |
||
18 | 18 | /** |
19 | 19 | * @param $context - where/how the line items are being displayed |
20 | 20 | */ |
21 | - public function __construct( $context ) { |
|
22 | - $context = strtolower( $context ); |
|
23 | - switch ( $context ) { |
|
21 | + public function __construct($context) { |
|
22 | + $context = strtolower($context); |
|
23 | + switch ($context) { |
|
24 | 24 | case 'invoice' : |
25 | 25 | $this->strategy = new EE_Invoice_Line_Item_Display_Strategy(); |
26 | 26 | break; |
@@ -40,8 +40,8 @@ discard block |
||
40 | 40 | * @param array $options |
41 | 41 | * @return mixed |
42 | 42 | */ |
43 | - public function display_line_item( EE_Line_Item $line_item, $options = array() ) { |
|
44 | - return $this->strategy->display_line_item( $line_item, $options ); |
|
43 | + public function display_line_item(EE_Line_Item $line_item, $options = array()) { |
|
44 | + return $this->strategy->display_line_item($line_item, $options); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @param array $options |
59 | 59 | * @return mixed |
60 | 60 | */ |
61 | - public function display_line_item( EE_Line_Item $line_item, $options = array() ); |
|
61 | + public function display_line_item(EE_Line_Item $line_item, $options = array()); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | // End of file EE_Line_Item_Display.class.php |