Completed
Branch BUG-9548-transaction-completio... (b1c41e)
by
unknown
519:42 queued 503:28
created
core/interfaces/EEI_Repository.interface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * @return bool | int
31 31
 	 * @throws \EE_Error
32 32
 	 */
33
-	public function persist( $persistence_callback = '', $persistence_arguments = array() );
33
+	public function persist($persistence_callback = '', $persistence_arguments = array());
34 34
 
35 35
 
36 36
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 * @param string $persistence_callback name of method found on object that can be used for persisting it
44 44
 	 * @return bool | int
45 45
 	 */
46
-	public function persist_all( $persistence_callback = '' );
46
+	public function persist_all($persistence_callback = '');
47 47
 
48 48
 	}
49 49
 // End of file EEI_Repository.interface.php
Please login to merge, or discard this patch.
core/interfaces/line_items/EEI_Line_Item.interface.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 	exit( 'No direct script access allowed' );
4 4
 }
5 5
 /**
6
- * Class EEI_Line_Item
7
- *
8
- * @package 			Event Espresso
9
- * @subpackage 	core
10
- * @author 				Mike Nelson / Brent Christensen
11
- *
12
- */
6
+	 * Class EEI_Line_Item
7
+	 *
8
+	 * @package 			Event Espresso
9
+	 * @subpackage 	core
10
+	 * @author 				Mike Nelson / Brent Christensen
11
+	 *
12
+	 */
13 13
 interface EEI_Line_Item {
14 14
 
15 15
 	/**
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 /**
6 6
  * Class EEI_Line_Item
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 	 * @param    mixed  $field_value
19 19
 	 * @param bool      $use_default
20 20
 	 */
21
-	public function set( $field_name, $field_value, $use_default = false );
21
+	public function set($field_name, $field_value, $use_default = false);
22 22
 
23 23
 
24 24
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 * Sets quantity
57 57
 	 * @param int $quantity
58 58
 	 */
59
-	function set_quantity( $quantity );
59
+	function set_quantity($quantity);
60 60
 
61 61
 
62 62
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 * @param int $txn_id if none is provided, assumes $this->TXN_ID()
116 116
 	 * @return int count of items saved
117 117
 	 */
118
-	function save_this_and_descendants_to_txn( $txn_id = null );
118
+	function save_this_and_descendants_to_txn($txn_id = null);
119 119
 
120 120
 
121 121
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * @param bool         $set_order
143 143
 	 * @return bool true for success, false for fail
144 144
 	 */
145
-	function add_child_line_item( EEI_Line_Item $line_item, $set_order = true );
145
+	function add_child_line_item(EEI_Line_Item $line_item, $set_order = true);
146 146
 
147 147
 
148 148
 
@@ -197,14 +197,14 @@  discard block
 block discarded – undo
197 197
 	 * @param float $total
198 198
 	 * @return boolean
199 199
 	 */
200
-	function set_total( $total );
200
+	function set_total($total);
201 201
 
202 202
 	/**
203 203
 	 * Sets unit_price
204 204
 	 * @param float $unit_price
205 205
 	 * @return boolean
206 206
 	 */
207
-	function set_unit_price( $unit_price );
207
+	function set_unit_price($unit_price);
208 208
 
209 209
 	/**
210 210
 	 * If this line item has been saved to the DB, deletes its child with LIN_code == $code. If this line
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	 * @param bool $stop_search_once_found
216 216
 	 * @return int count of items deleted (or simply removed from the line item's cache, if not has not been saved to the DB yet)
217 217
 	 */
218
-	function delete_child_line_item( $code, $stop_search_once_found = true );
218
+	function delete_child_line_item($code, $stop_search_once_found = true);
219 219
 
220 220
 	/**
221 221
 	 * Forgets the cached model of the given relation Name. So the next time we request it,
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 	 * @param boolean $allow_persist
239 239
 	 * @return boolean
240 240
 	 */
241
-	function set_allow_persist( $allow_persist );
241
+	function set_allow_persist($allow_persist);
242 242
 
243 243
 
244 244
 }
Please login to merge, or discard this patch.
core/interfaces/line_items/EEI_Line_Item_Filter.interface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	 * @param \EEI_Line_Item $line_item
27 27
 	 * @return \EEI_Line_Item
28 28
 	 */
29
-	public function process( EEI_Line_Item $line_item );
29
+	public function process(EEI_Line_Item $line_item);
30 30
 
31 31
 
32 32
 
Please login to merge, or discard this patch.
core/libraries/form_sections/EE_Sample_Form.form.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@  discard block
 block discarded – undo
1 1
 <?php
2
-class EE_Sample_Form extends EE_Form_Section_Proper{
3
-	function __construct(){
2
+class EE_Sample_Form extends EE_Form_Section_Proper {
3
+	function __construct() {
4 4
 		$this->_subsections = array(
5 5
 			'h1'=>new EE_Form_Section_HTML('hello wordl'),
6
-			'name'=>new EE_Text_Input(array('required'=>true,'default'=>'your name here')),
6
+			'name'=>new EE_Text_Input(array('required'=>true, 'default'=>'your name here')),
7 7
 			'email'=>new EE_Email_Input(array('required'=>false)),
8
-			'shirt_size'=>new EE_Select_Input(array(''=>'Please select...', 's'=>  __("Small", "event_espresso"),'m'=>  __("Medium", "event_espresso"),'l'=>  __("Large", "event_espresso")),array('required'=>true,'default'=>'s')),
8
+			'shirt_size'=>new EE_Select_Input(array(''=>'Please select...', 's'=>  __("Small", "event_espresso"), 'm'=>  __("Medium", "event_espresso"), 'l'=>  __("Large", "event_espresso")), array('required'=>true, 'default'=>'s')),
9 9
 			'month_normal'=>new EE_Month_Input(),
10 10
 			'month_leading_zero'=>new EE_Month_Input(true),
11 11
 			'year_2'=>new EE_Year_Input(false, 1, 1),
12
-			'year_4'=>new EE_Year_Input(true, 0,10,array('default'=>'2017')),
12
+			'year_4'=>new EE_Year_Input(true, 0, 10, array('default'=>'2017')),
13 13
 			'yes_no'=>new EE_Yes_No_Input(array('html_label_text'=>  __("Yes or No", "event_espresso"))),
14 14
 			'credit_card'=>new EE_Credit_Card_Input(),
15 15
 			'image_1'=>new EE_Admin_File_Uploader_Input(),
16 16
 			'image_2'=>new EE_Admin_File_Uploader_Input(),
17
-			'skillz'=>new EE_Checkbox_Multi_Input(array('php'=>'PHP','mysql'=>'MYSQL'),array('default'=>array('php'))),
17
+			'skillz'=>new EE_Checkbox_Multi_Input(array('php'=>'PHP', 'mysql'=>'MYSQL'), array('default'=>array('php'))),
18 18
 			'float'=>new EE_Float_Input(),
19 19
 			'essay'=>new EE_Text_Area_Input(),
20 20
 			'amenities'=>new EE_Select_Multiple_Input(
@@ -40,16 +40,16 @@  discard block
 block discarded – undo
40 40
 	 * Extra validation for the 'name' input.
41 41
 	 * @param EE_Text_Input $form_input
42 42
 	 */
43
-	function _validate_name($form_input){
44
-		if($form_input->raw_value() != 'Mike'){
43
+	function _validate_name($form_input) {
44
+		if ($form_input->raw_value() != 'Mike') {
45 45
 			$form_input->add_validation_error(__("You are not mike. You must be brent or darren. Thats ok, I guess", 'event_espresso'), 'not-mike');
46 46
 		}
47 47
 	}
48 48
 
49
-	function _validate(){
49
+	function _validate() {
50 50
 		parent::_validate();
51
-		if($this->_subsections['shirt_size']->normalized_value() =='s'
52
-				&& $this->_subsections['year_4']->normalized_value() < 2010){
51
+		if ($this->_subsections['shirt_size']->normalized_value() == 's'
52
+				&& $this->_subsections['year_4']->normalized_value() < 2010) {
53 53
 			$this->add_validation_error(__("If you want a small shirt, you should be born after 2010. Otherwise theyre just too big", 'event_espresso'), 'too-old');
54 54
 		}
55 55
 	}
Please login to merge, or discard this patch.
core/libraries/form_sections/base/EE_Form_Section_HTML.form.php 3 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,16 +2,16 @@
 block discarded – undo
2 2
 if (!defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('No direct script access allowed');
4 4
 /**
5
- * EE_Form_Section_HTML
6
- * HTML to be laid out like a proper subsection
7
- *
8
- *
9
- * @package			Event Espresso
10
- * @subpackage
11
- * @author				Mike Nelson
12
- *
13
- * ------------------------------------------------------------------------
14
- */
5
+	 * EE_Form_Section_HTML
6
+	 * HTML to be laid out like a proper subsection
7
+	 *
8
+	 *
9
+	 * @package			Event Espresso
10
+	 * @subpackage
11
+	 * @author				Mike Nelson
12
+	 *
13
+	 * ------------------------------------------------------------------------
14
+	 */
15 15
 class EE_Form_Section_HTML extends EE_Form_Section_Base{
16 16
 
17 17
 	protected $_html = '';
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION'))
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('No direct script access allowed');
4 4
 /**
5 5
  * EE_Form_Section_HTML
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  *
13 13
  * ------------------------------------------------------------------------
14 14
  */
15
-class EE_Form_Section_HTML extends EE_Form_Section_Base{
15
+class EE_Form_Section_HTML extends EE_Form_Section_Base {
16 16
 
17 17
 	protected $_html = '';
18 18
 
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
 	 * @param string $html
23 23
 	 * @param array $options_array
24 24
 	 */
25
-	public function __construct( $html = '', $options_array = array() ) {
25
+	public function __construct($html = '', $options_array = array()) {
26 26
 		$this->_html = $html;
27
-		parent::__construct( $options_array );
27
+		parent::__construct($options_array);
28 28
 	}
29 29
 
30 30
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 /**
6 7
  * Event Espresso
7 8
  *
Please login to merge, or discard this patch.
core/libraries/form_sections/base/EE_Form_Section_Proper.form.php 3 patches
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 			if(isset($default_data[$subsection_name])){
210 210
 				if($subsection instanceof EE_Form_Input_Base){
211 211
 					$subsection->set_default($default_data[$subsection_name]);
212
-				}elseif($subsection instanceof EE_Form_Section_Proper){
212
+				} elseif($subsection instanceof EE_Form_Section_Proper){
213 213
 					$subsection->populate_defaults($default_data[$subsection_name]);
214 214
 				}
215 215
 			}
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 		foreach($this->subsections() as $subsection){
441 441
 			if( $subsection instanceof EE_Form_Input_Base ){
442 442
 				$inputs[ $subsection->html_name() ] = $subsection;
443
-			}elseif($subsection instanceof EE_Form_Section_Proper ){
443
+			} elseif($subsection instanceof EE_Form_Section_Proper ){
444 444
 				$inputs += $subsection->inputs_in_subsections();
445 445
 			}
446 446
 		}
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
 		foreach($this->get_validatable_subsections() as $subsection){
549 549
 			try{
550 550
 				$subsection->_normalize($req_data);
551
-			}catch( EE_Validation_Error $e ){
551
+			} catch( EE_Validation_Error $e ){
552 552
 				$subsection->add_validation_error( $e );
553 553
 			}
554 554
 		}
@@ -866,7 +866,7 @@  discard block
 block discarded – undo
866 866
 	public function html_name_prefix(){
867 867
 		if( $this->parent_section() instanceof EE_Form_Section_Proper ){
868 868
 			return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']';
869
-		}else{
869
+		} else{
870 870
 			return $this->name();
871 871
 		}
872 872
 	}
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
 				if( $subsection->form_data_present_in( $req_data ) ) {
919 919
 					return TRUE;
920 920
 				}
921
-			}elseif( $subsection instanceof EE_Form_Section_Proper ) {
921
+			} elseif( $subsection instanceof EE_Form_Section_Proper ) {
922 922
 				if( $subsection->form_data_present_in( $req_data ) ) {
923 923
 					return TRUE;
924 924
 				}
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
 	 * leave this as TRUE so that the inputs will be properly configured. However,
226 226
 	 * some client code may be ok with construction finalize being called later
227 227
 	 * (realizing that the subsections' html names might not be set yet, etc.)
228
-	 * @return EE_Form_Section_Base
228
+	 * @return EE_Form_Section_Validatable|null
229 229
 	 */
230 230
 	public function get_subsection($name, $require_construction_to_be_finalized = TRUE ){
231 231
 		if( $require_construction_to_be_finalized ){
Please login to merge, or discard this patch.
Spacing   +161 added lines, -161 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * before the hook wp_enqueue_scripts is called (so that the form section can enqueue its needed scripts).
8 8
  * However, you may output the form (usually by calling get_html_and_js) anywhere you like.
9 9
  */
10
-class EE_Form_Section_Proper extends EE_Form_Section_Validatable{
10
+class EE_Form_Section_Proper extends EE_Form_Section_Validatable {
11 11
 
12 12
 	/**
13 13
 	 * Subsections
@@ -68,37 +68,37 @@  discard block
 block discarded – undo
68 68
 	 * } @see EE_Form_Section_Validatable::__construct()
69 69
 	 *
70 70
 	 */
71
-	public function __construct( $options_array = array() ){
72
-		$options_array = apply_filters( 'FHEE__EE_Form_Section_Proper___construct__options_array', $options_array, $this );
71
+	public function __construct($options_array = array()) {
72
+		$options_array = apply_filters('FHEE__EE_Form_Section_Proper___construct__options_array', $options_array, $this);
73 73
 		//call parent first, as it may be setting the name
74 74
 		parent::__construct($options_array);
75 75
 		//if they've included subsections in the constructor, add them now
76
-		if( isset( $options_array['include'] )){
76
+		if (isset($options_array['include'])) {
77 77
 			//we are going to make sure we ONLY have those subsections to include
78 78
 			//AND we are going to make sure they're in that specified order
79 79
 			$reordered_subsections = array();
80
-			foreach($options_array['include'] as $input_name){
81
-				if(isset($this->_subsections[$input_name])){
80
+			foreach ($options_array['include'] as $input_name) {
81
+				if (isset($this->_subsections[$input_name])) {
82 82
 					$reordered_subsections[$input_name] = $this->_subsections[$input_name];
83 83
 				}
84 84
 			}
85 85
 			$this->_subsections = $reordered_subsections;
86 86
 		}
87
-		if(isset($options_array['exclude'])){
87
+		if (isset($options_array['exclude'])) {
88 88
 			$exclude = $options_array['exclude'];
89 89
 			$this->_subsections = array_diff_key($this->_subsections, array_flip($exclude));
90 90
 		}
91
-		if(isset($options_array['layout_strategy'])){
91
+		if (isset($options_array['layout_strategy'])) {
92 92
 			$this->_layout_strategy = $options_array['layout_strategy'];
93 93
 		}
94
-		if( ! $this->_layout_strategy){
94
+		if ( ! $this->_layout_strategy) {
95 95
 			$this->_layout_strategy = new EE_Two_Column_Layout();
96 96
 		}
97 97
 		$this->_layout_strategy->_construct_finalize($this);
98 98
 
99
-		add_action( 'wp_enqueue_scripts', array( 'EE_Form_Section_Proper', 'wp_enqueue_scripts' ));
100
-		add_action( 'admin_enqueue_scripts', array( 'EE_Form_Section_Proper', 'wp_enqueue_scripts' ));
101
-		add_action( 'wp_footer', array( $this, 'ensure_scripts_localized' ), 1 );
99
+		add_action('wp_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
100
+		add_action('admin_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
101
+		add_action('wp_footer', array($this, 'ensure_scripts_localized'), 1);
102 102
 	}
103 103
 
104 104
 
@@ -110,25 +110,25 @@  discard block
 block discarded – undo
110 110
 	 * @param string                 $name
111 111
 	 * @throws \EE_Error
112 112
 	 */
113
-	public function _construct_finalize( $parent_form_section, $name ) {
113
+	public function _construct_finalize($parent_form_section, $name) {
114 114
 		parent::_construct_finalize($parent_form_section, $name);
115 115
 		$this->_set_default_name_if_empty();
116 116
 		$this->_set_default_html_id_if_empty();
117
-		foreach( $this->_subsections as $subsection_name => $subsection ){
118
-			if ( $subsection instanceof EE_Form_Section_Base ) {
119
-				$subsection->_construct_finalize( $this, $subsection_name );
117
+		foreach ($this->_subsections as $subsection_name => $subsection) {
118
+			if ($subsection instanceof EE_Form_Section_Base) {
119
+				$subsection->_construct_finalize($this, $subsection_name);
120 120
 			} else {
121 121
 				throw new EE_Error(
122 122
 					sprintf(
123
-						__( 'Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"', 'event_espresso' ),
123
+						__('Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"', 'event_espresso'),
124 124
 						$subsection_name,
125 125
 						get_class($this),
126
-						$subsection ? get_class($subsection) : __( 'NULL', 'event_espresso' )
126
+						$subsection ? get_class($subsection) : __('NULL', 'event_espresso')
127 127
 					)
128 128
 				);
129 129
 			}
130 130
 		}
131
-		do_action( 'AHEE__EE_Form_Section_Proper___construct_finalize__end', $this, $parent_form_section, $name );
131
+		do_action('AHEE__EE_Form_Section_Proper___construct_finalize__end', $this, $parent_form_section, $name);
132 132
 	}
133 133
 
134 134
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * Gets the layout strategy for this form section
138 138
 	 * @return EE_Form_Section_Layout_Base
139 139
 	 */
140
-	public function get_layout_strategy(){
140
+	public function get_layout_strategy() {
141 141
 		return $this->_layout_strategy;
142 142
 	}
143 143
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 	 * @param EE_Form_Input_Base $input
150 150
 	 * @return string
151 151
 	 */
152
-	public function get_html_for_input($input){
152
+	public function get_html_for_input($input) {
153 153
 		return $this->_layout_strategy->layout_input($input);
154 154
 	}
155 155
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 	 * @param null $form_data
163 163
 	 * @return boolean
164 164
 	 */
165
-	public function was_submitted($form_data = NULL){
165
+	public function was_submitted($form_data = NULL) {
166 166
 		return $this->form_data_present_in($form_data);
167 167
 	}
168 168
 
@@ -187,16 +187,16 @@  discard block
 block discarded – undo
187 187
 	 *                          (eg you validated the data then stored it in the DB) you may want to skip this step.
188 188
 	 * @return void
189 189
 	 */
190
-	public function receive_form_submission($req_data = NULL, $validate = TRUE){
191
-		$req_data = apply_filters( 'FHEE__EE_Form_Section_Proper__receive_form_submission__req_data', $req_data, $this, $validate );
192
-		if( $req_data === NULL){
193
-			$req_data = array_merge( $_GET, $_POST );
190
+	public function receive_form_submission($req_data = NULL, $validate = TRUE) {
191
+		$req_data = apply_filters('FHEE__EE_Form_Section_Proper__receive_form_submission__req_data', $req_data, $this, $validate);
192
+		if ($req_data === NULL) {
193
+			$req_data = array_merge($_GET, $_POST);
194 194
 		}
195 195
 		$this->_normalize($req_data);
196
-		if( $validate ){
196
+		if ($validate) {
197 197
 			$this->_validate();
198 198
 		}
199
-		do_action( 'AHEE__EE_Form_Section_Proper__receive_form_submission__end', $req_data, $this, $validate );
199
+		do_action('AHEE__EE_Form_Section_Proper__receive_form_submission__end', $req_data, $this, $validate);
200 200
 	}
201 201
 
202 202
 
@@ -209,12 +209,12 @@  discard block
 block discarded – undo
209 209
 	 * the value being an array formatted in teh same way
210 210
 	 * @param array $default_data
211 211
 	 */
212
-	public function populate_defaults($default_data){
213
-		foreach($this->subsections() as $subsection_name => $subsection){
214
-			if(isset($default_data[$subsection_name])){
215
-				if($subsection instanceof EE_Form_Input_Base){
212
+	public function populate_defaults($default_data) {
213
+		foreach ($this->subsections() as $subsection_name => $subsection) {
214
+			if (isset($default_data[$subsection_name])) {
215
+				if ($subsection instanceof EE_Form_Input_Base) {
216 216
 					$subsection->set_default($default_data[$subsection_name]);
217
-				}elseif($subsection instanceof EE_Form_Section_Proper){
217
+				}elseif ($subsection instanceof EE_Form_Section_Proper) {
218 218
 					$subsection->populate_defaults($default_data[$subsection_name]);
219 219
 				}
220 220
 			}
@@ -232,8 +232,8 @@  discard block
 block discarded – undo
232 232
 	 * (realizing that the subsections' html names might not be set yet, etc.)
233 233
 	 * @return EE_Form_Section_Base
234 234
 	 */
235
-	public function get_subsection($name, $require_construction_to_be_finalized = TRUE ){
236
-		if( $require_construction_to_be_finalized ){
235
+	public function get_subsection($name, $require_construction_to_be_finalized = TRUE) {
236
+		if ($require_construction_to_be_finalized) {
237 237
 			$this->ensure_construct_finalized_called();
238 238
 		}
239 239
 		return isset($this->_subsections[$name]) ? $this->_subsections[$name] : NULL;
@@ -245,10 +245,10 @@  discard block
 block discarded – undo
245 245
 	 * Gets all the validatable subsections of this form section
246 246
 	 * @return EE_Form_Section_Validatable[]
247 247
 	 */
248
-	public function get_validatable_subsections(){
248
+	public function get_validatable_subsections() {
249 249
 		$validatable_subsections = array();
250
-		foreach($this->subsections() as $name=>$obj){
251
-			if($obj instanceof EE_Form_Section_Validatable){
250
+		foreach ($this->subsections() as $name=>$obj) {
251
+			if ($obj instanceof EE_Form_Section_Validatable) {
252 252
 				$validatable_subsections[$name] = $obj;
253 253
 			}
254 254
 		}
@@ -268,10 +268,10 @@  discard block
 block discarded – undo
268 268
 	 * @return EE_Form_Input_Base
269 269
 	 * @throws EE_Error
270 270
 	 */
271
-	public function get_input($name, $require_construction_to_be_finalized = TRUE ){
271
+	public function get_input($name, $require_construction_to_be_finalized = TRUE) {
272 272
 		$subsection = $this->get_subsection($name, $require_construction_to_be_finalized);
273
-		if( ! $subsection instanceof EE_Form_Input_Base){
274
-			throw new EE_Error(sprintf(__("Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", 'event_espresso'),$name, get_class($this),$subsection ? get_class($subsection) : __("NULL", 'event_espresso')));
273
+		if ( ! $subsection instanceof EE_Form_Input_Base) {
274
+			throw new EE_Error(sprintf(__("Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'", 'event_espresso'), $name, get_class($this), $subsection ? get_class($subsection) : __("NULL", 'event_espresso')));
275 275
 		}
276 276
 		return $subsection;
277 277
 	}
@@ -289,10 +289,10 @@  discard block
 block discarded – undo
289 289
 	 * @return EE_Form_Section_Proper
290 290
 	 * @throws EE_Error
291 291
 	 */
292
-	public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){
293
-		$subsection = $this->get_subsection( $name, $require_construction_to_be_finalized );
294
-		if( ! $subsection instanceof EE_Form_Section_Proper){
295
-			throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),$name, get_class($this)));
292
+	public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE) {
293
+		$subsection = $this->get_subsection($name, $require_construction_to_be_finalized);
294
+		if ( ! $subsection instanceof EE_Form_Section_Proper) {
295
+			throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'), $name, get_class($this)));
296 296
 		}
297 297
 		return $subsection;
298 298
 	}
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 	 * @param string $name
306 306
 	 * @return mixed depending on the input's type and its normalization strategy
307 307
 	 */
308
-	public function get_input_value($name){
308
+	public function get_input_value($name) {
309 309
 		$input = $this->get_input($name);
310 310
 		return $input->normalized_value();
311 311
 	}
@@ -318,16 +318,16 @@  discard block
 block discarded – undo
318 318
 	 * @return boolean
319 319
 	 */
320 320
 	public function is_valid() {
321
-		if( ! $this->has_received_submission()){
321
+		if ( ! $this->has_received_submission()) {
322 322
 			throw new EE_Error(sprintf(__("You cannot check if a form is valid before receiving the form submission using receive_form_submission", "event_espresso")));
323 323
 		}
324
-		if( ! parent::is_valid()){
324
+		if ( ! parent::is_valid()) {
325 325
 			return false;
326 326
 		}
327 327
 		//ok so no errors general to this entire form section. so let's check the subsections
328
-		foreach( $this->get_validatable_subsections() as $subsection ){
329
-			if( ! $subsection->is_valid() || $subsection->get_validation_error_string() != '' ){
330
-				$this->set_submission_error_message( $subsection->get_validation_error_string() );
328
+		foreach ($this->get_validatable_subsections() as $subsection) {
329
+			if ( ! $subsection->is_valid() || $subsection->get_validation_error_string() != '') {
330
+				$this->set_submission_error_message($subsection->get_validation_error_string());
331 331
 				return false;
332 332
 			}
333 333
 		}
@@ -340,11 +340,11 @@  discard block
 block discarded – undo
340 340
 	 * gets teh default name of this form section if none is specified
341 341
 	 * @return string
342 342
 	 */
343
-	protected function _set_default_name_if_empty(){
344
-		if( ! $this->_name ){
343
+	protected function _set_default_name_if_empty() {
344
+		if ( ! $this->_name) {
345 345
 			$classname = get_class($this);
346 346
 			$default_name = str_replace("EE_", "", $classname);
347
-			$this->_name =  $default_name;
347
+			$this->_name = $default_name;
348 348
 		}
349 349
 	}
350 350
 
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	 * Also returns the HTML for the form, except for the form opening and closing tags
356 356
 	 * (as the form section doesn't know where you necessarily want to send the information to), and except for a submit button.
357 357
 	 */
358
-	public function get_html_and_js(){
358
+	public function get_html_and_js() {
359 359
 		$this->enqueue_js();
360 360
 		return $this->get_html();
361 361
 	}
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
 	 * returns HTML for displaying this form section. recursively calls display_section() on all subsections
367 367
 	 * @return string
368 368
 	 */
369
-	public function get_html(){
369
+	public function get_html() {
370 370
 		$this->ensure_construct_finalized_called();
371 371
 		return $this->_layout_strategy->layout_form();
372 372
 	}
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
 	 * enqueues JS for the form
378 378
 	 * @return string
379 379
 	 */
380
-	public function enqueue_js(){
380
+	public function enqueue_js() {
381 381
 		$this->_enqueue_and_localize_form_js();
382 382
 	}
383 383
 
@@ -393,10 +393,10 @@  discard block
 block discarded – undo
393 393
 	 * @param boolean $init_form_validation_automatically whether or not we want the form validation to be triggered automatically or not
394 394
 	 * @return void
395 395
 	 */
396
-	public static function wp_enqueue_scripts( $init_form_validation_automatically = false ){
397
-		add_filter( 'FHEE_load_jquery_validate', '__return_true' );
398
-		wp_register_script( 'ee_form_section_validation', EE_GLOBAL_ASSETS_URL . 'scripts' . DS . 'form_section_validation.js', array( 'jquery-validate', 'jquery-ui-datepicker', 'jquery-validate-extra-methods' ), EVENT_ESPRESSO_VERSION, TRUE );
399
-		wp_localize_script( 'ee_form_section_validation', 'ee_form_section_validation_init', array( 'init' => $init_form_validation_automatically ) );
396
+	public static function wp_enqueue_scripts($init_form_validation_automatically = false) {
397
+		add_filter('FHEE_load_jquery_validate', '__return_true');
398
+		wp_register_script('ee_form_section_validation', EE_GLOBAL_ASSETS_URL.'scripts'.DS.'form_section_validation.js', array('jquery-validate', 'jquery-ui-datepicker', 'jquery-validate-extra-methods'), EVENT_ESPRESSO_VERSION, TRUE);
399
+		wp_localize_script('ee_form_section_validation', 'ee_form_section_validation_init', array('init' => $init_form_validation_automatically));
400 400
 	}
401 401
 
402 402
 
@@ -406,14 +406,14 @@  discard block
 block discarded – undo
406 406
 	 * This needs to be called AFTER we've called $this->_enqueue_jquery_validate_script,
407 407
 	 * but before the wordpress hook wp_loaded
408 408
 	 */
409
-	public function _enqueue_and_localize_form_js(){
409
+	public function _enqueue_and_localize_form_js() {
410 410
 		$this->ensure_construct_finalized_called();
411 411
 		//actually, we don't want to localize just yet. There may be other forms on the page.
412 412
 		//so we need to add our form section data to a static variable accessible by all form sections
413 413
 		//and localize it just before the footer
414 414
 		$this->localize_validation_rules();
415
-		add_action( 'wp_footer', array( 'EE_Form_Section_Proper', 'localize_script_for_all_forms' ), 2 );
416
-		add_action( 'admin_footer', array( 'EE_Form_Section_Proper', 'localize_script_for_all_forms' ) );
415
+		add_action('wp_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'), 2);
416
+		add_action('admin_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'));
417 417
 	}
418 418
 
419 419
 
@@ -423,11 +423,11 @@  discard block
 block discarded – undo
423 423
 	 * @param bool $return_for_subsection
424 424
 	 * @return void
425 425
 	 */
426
-	public function localize_validation_rules( $return_for_subsection = FALSE ){
426
+	public function localize_validation_rules($return_for_subsection = FALSE) {
427 427
 		// we only want to localize vars ONCE for the entire form, so if the form section doesn't have a parent, then it must be the top dog
428
-		if ( ! $this->parent_section() || $return_for_subsection ) {
429
-			EE_Form_Section_Proper::$_js_localization['form_data'][ $this->html_id() ] = array(
430
-				'form_section_id'=> $this->html_id( TRUE ),
428
+		if ( ! $this->parent_section() || $return_for_subsection) {
429
+			EE_Form_Section_Proper::$_js_localization['form_data'][$this->html_id()] = array(
430
+				'form_section_id'=> $this->html_id(TRUE),
431 431
 				'validation_rules'=> $this->get_jquery_validation_rules(),
432 432
 				'errors'=> $this->subsection_validation_errors_by_html_name()
433 433
 			);
@@ -442,12 +442,12 @@  discard block
 block discarded – undo
442 442
 	 * Keys are their form names, and values are the inputs themselves
443 443
 	 * @return EE_Form_Input_Base
444 444
 	 */
445
-	public function inputs_in_subsections(){
445
+	public function inputs_in_subsections() {
446 446
 		$inputs = array();
447
-		foreach($this->subsections() as $subsection){
448
-			if( $subsection instanceof EE_Form_Input_Base ){
449
-				$inputs[ $subsection->html_name() ] = $subsection;
450
-			}elseif($subsection instanceof EE_Form_Section_Proper ){
447
+		foreach ($this->subsections() as $subsection) {
448
+			if ($subsection instanceof EE_Form_Input_Base) {
449
+				$inputs[$subsection->html_name()] = $subsection;
450
+			}elseif ($subsection instanceof EE_Form_Section_Proper) {
451 451
 				$inputs += $subsection->inputs_in_subsections();
452 452
 			}
453 453
 		}
@@ -460,12 +460,12 @@  discard block
 block discarded – undo
460 460
 	 * and values are a string of all their validation errors
461 461
 	 * @return string[]
462 462
 	 */
463
-	public function subsection_validation_errors_by_html_name(){
463
+	public function subsection_validation_errors_by_html_name() {
464 464
 		$inputs = $this->inputs();
465 465
 		$errors = array();
466
-		foreach( $inputs as $form_input ){
467
-			if ( $form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors() ){
468
-				$errors[ $form_input->html_name() ] = $form_input->get_validation_error_string();
466
+		foreach ($inputs as $form_input) {
467
+			if ($form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors()) {
468
+				$errors[$form_input->html_name()] = $form_input->get_validation_error_string();
469 469
 			}
470 470
 		}
471 471
 		return $errors;
@@ -477,16 +477,16 @@  discard block
 block discarded – undo
477 477
 	 * passes all the form data required by the JS to the JS, and enqueues the few required JS files.
478 478
 	 * Should be setup by each form during the _enqueues_and_localize_form_js
479 479
 	 */
480
-	public static function localize_script_for_all_forms(){
480
+	public static function localize_script_for_all_forms() {
481 481
 		//allow inputs and stuff to hook in their JS and stuff here
482 482
 		do_action('AHEE__EE_Form_Section_Proper__localize_script_for_all_forms__begin');
483 483
 		EE_Form_Section_Proper::$_js_localization['localized_error_messages'] = EE_Form_Section_Proper::_get_localized_error_messages();
484
-		$email_validation_level = isset( EE_Registry::instance()->CFG->registration->email_validation_level )
484
+		$email_validation_level = isset(EE_Registry::instance()->CFG->registration->email_validation_level)
485 485
 			? EE_Registry::instance()->CFG->registration->email_validation_level
486 486
 			: 'wp_default';
487 487
 		EE_Form_Section_Proper::$_js_localization['email_validation_level'] = $email_validation_level;
488
-		wp_enqueue_script( 'ee_form_section_validation' );
489
-		wp_localize_script( 'ee_form_section_validation', 'ee_form_section_vars', EE_Form_Section_Proper::$_js_localization );
488
+		wp_enqueue_script('ee_form_section_validation');
489
+		wp_localize_script('ee_form_section_validation', 'ee_form_section_vars', EE_Form_Section_Proper::$_js_localization);
490 490
 	}
491 491
 
492 492
 
@@ -494,8 +494,8 @@  discard block
 block discarded – undo
494 494
 	/**
495 495
 	 * ensure_scripts_localized
496 496
 	 */
497
-	public function ensure_scripts_localized(){
498
-		if ( ! EE_Form_Section_Proper::$_scripts_localized ) {
497
+	public function ensure_scripts_localized() {
498
+		if ( ! EE_Form_Section_Proper::$_scripts_localized) {
499 499
 			$this->_enqueue_and_localize_form_js();
500 500
 		}
501 501
 	}
@@ -507,10 +507,10 @@  discard block
 block discarded – undo
507 507
 	 * is that the key here should be the same as the custom validation rule put in the JS file
508 508
 	 * @return array keys are custom validation rules, and values are internationalized strings
509 509
 	 */
510
-	private static function _get_localized_error_messages(){
510
+	private static function _get_localized_error_messages() {
511 511
 		return array(
512 512
 			'validUrl'=>  __("This is not a valid absolute URL. Eg, http://domain.com/monkey.jpg", "event_espresso"),
513
-			'regex' => __( 'Please check your input', 'event_espresso' ),
513
+			'regex' => __('Please check your input', 'event_espresso'),
514 514
 		);
515 515
 	}
516 516
 
@@ -538,10 +538,10 @@  discard block
 block discarded – undo
538 538
 	 * Gets the JS to put inside the jquery validation rules for subsection of this form section. See parent function for more...
539 539
 	 * @return array
540 540
 	 */
541
-	function get_jquery_validation_rules(){
541
+	function get_jquery_validation_rules() {
542 542
 		$jquery_validation_rules = array();
543
-		foreach($this->get_validatable_subsections() as $subsection){
544
-			$jquery_validation_rules = array_merge( $jquery_validation_rules,  $subsection->get_jquery_validation_rules() );
543
+		foreach ($this->get_validatable_subsections() as $subsection) {
544
+			$jquery_validation_rules = array_merge($jquery_validation_rules, $subsection->get_jquery_validation_rules());
545 545
 		}
546 546
 		return $jquery_validation_rules;
547 547
 	}
@@ -556,11 +556,11 @@  discard block
 block discarded – undo
556 556
 	protected function _normalize($req_data) {
557 557
 		$this->_received_submission = TRUE;
558 558
 		$this->_validation_errors = array();
559
-		foreach($this->get_validatable_subsections() as $subsection){
560
-			try{
559
+		foreach ($this->get_validatable_subsections() as $subsection) {
560
+			try {
561 561
 				$subsection->_normalize($req_data);
562
-			}catch( EE_Validation_Error $e ){
563
-				$subsection->add_validation_error( $e );
562
+			} catch (EE_Validation_Error $e) {
563
+				$subsection->add_validation_error($e);
564 564
 			}
565 565
 		}
566 566
 	}
@@ -574,9 +574,9 @@  discard block
 block discarded – undo
574 574
 	 * calling parent::_validate() first.
575 575
 	 */
576 576
 	protected function _validate() {
577
-		foreach($this->get_validatable_subsections() as $subsection_name => $subsection){
578
-			if(method_exists($this,'_validate_'.$subsection_name)){
579
-				call_user_func_array(array($this,'_validate_'.$subsection_name), array($subsection));
577
+		foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) {
578
+			if (method_exists($this, '_validate_'.$subsection_name)) {
579
+				call_user_func_array(array($this, '_validate_'.$subsection_name), array($subsection));
580 580
 			}
581 581
 			$subsection->_validate();
582 582
 		}
@@ -588,13 +588,13 @@  discard block
 block discarded – undo
588 588
 	 * Gets all the validated inputs for the form section
589 589
 	 * @return array
590 590
 	 */
591
-	public function valid_data(){
591
+	public function valid_data() {
592 592
 		$inputs = array();
593
-		foreach( $this->subsections() as $subsection_name =>$subsection ){
594
-			if ( $subsection instanceof EE_Form_Section_Proper ) {
595
-				$inputs[ $subsection_name ] = $subsection->valid_data();
596
-			} else if ( $subsection instanceof EE_Form_Input_Base ){
597
-				$inputs[ $subsection_name ] = $subsection->normalized_value();
593
+		foreach ($this->subsections() as $subsection_name =>$subsection) {
594
+			if ($subsection instanceof EE_Form_Section_Proper) {
595
+				$inputs[$subsection_name] = $subsection->valid_data();
596
+			} else if ($subsection instanceof EE_Form_Input_Base) {
597
+				$inputs[$subsection_name] = $subsection->normalized_value();
598 598
 			}
599 599
 		}
600 600
 		return $inputs;
@@ -606,11 +606,11 @@  discard block
 block discarded – undo
606 606
 	 * Gets all the inputs on this form section
607 607
 	 * @return EE_Form_Input_Base[]
608 608
 	 */
609
-	public function inputs(){
609
+	public function inputs() {
610 610
 		$inputs = array();
611
-		foreach( $this->subsections() as $subsection_name =>$subsection ){
612
-			if ( $subsection instanceof EE_Form_Input_Base ){
613
-				$inputs[ $subsection_name ] = $subsection;
611
+		foreach ($this->subsections() as $subsection_name =>$subsection) {
612
+			if ($subsection instanceof EE_Form_Input_Base) {
613
+				$inputs[$subsection_name] = $subsection;
614 614
 			}
615 615
 		}
616 616
 		return $inputs;
@@ -622,10 +622,10 @@  discard block
 block discarded – undo
622 622
 	 * Gets all the subsections which are a proper form
623 623
 	 * @return EE_Form_Section_Proper[]
624 624
 	 */
625
-	public function subforms(){
625
+	public function subforms() {
626 626
 		$form_sections = array();
627
-		foreach($this->subsections() as $name=>$obj){
628
-			if($obj instanceof EE_Form_Section_Proper){
627
+		foreach ($this->subsections() as $name=>$obj) {
628
+			if ($obj instanceof EE_Form_Section_Proper) {
629 629
 				$form_sections[$name] = $obj;
630 630
 			}
631 631
 		}
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
 	 * if you only want form inputs or proper form sections.
641 641
 	 * @return EE_Form_Section_Proper[]
642 642
 	 */
643
-	public function subsections(){
643
+	public function subsections() {
644 644
 		$this->ensure_construct_finalized_called();
645 645
 		return $this->_subsections;
646 646
 	}
@@ -658,8 +658,8 @@  discard block
 block discarded – undo
658 658
 	 * it can be a multidimensional array where keys are always subsection names and values are either the
659 659
 	 * input's normalized value, or an array like the top-level array
660 660
 	 */
661
-	public function input_values( $include_subform_inputs = false, $flatten = false ){
662
-		return $this->_input_values( false, $include_subform_inputs, $flatten );
661
+	public function input_values($include_subform_inputs = false, $flatten = false) {
662
+		return $this->_input_values(false, $include_subform_inputs, $flatten);
663 663
 	}
664 664
 
665 665
 	/**
@@ -675,8 +675,8 @@  discard block
 block discarded – undo
675 675
 	 * it can be a multidimensional array where keys are always subsection names and values are either the
676 676
 	 * input's normalized value, or an array like the top-level array
677 677
 	 */
678
-	public function input_pretty_values(  $include_subform_inputs = false, $flatten = false ){
679
-		return $this->_input_values( true, $include_subform_inputs, $flatten );
678
+	public function input_pretty_values($include_subform_inputs = false, $flatten = false) {
679
+		return $this->_input_values(true, $include_subform_inputs, $flatten);
680 680
 	}
681 681
 
682 682
 	/**
@@ -689,17 +689,17 @@  discard block
 block discarded – undo
689 689
 	 * it can be a multidimensional array where keys are always subsection names and values are either the
690 690
 	 * input's normalized value, or an array like the top-level array
691 691
 	 */
692
-	public function _input_values( $pretty = false, $include_subform_inputs = false, $flatten = false ) {
692
+	public function _input_values($pretty = false, $include_subform_inputs = false, $flatten = false) {
693 693
 		$input_values = array();
694
-		foreach( $this->subsections() as $subsection_name => $subsection ) {
695
-			if( $subsection instanceof EE_Form_Input_Base ) {
696
-				$input_values[ $subsection_name ] = $pretty ? $subsection->pretty_value() : $subsection->normalized_value();
697
-			} else if( $subsection instanceof EE_Form_Section_Proper && $include_subform_inputs ) {
698
-				$subform_input_values = $subsection->_input_values( $pretty, $include_subform_inputs, $flatten );
699
-				if( $flatten ) {
700
-					$input_values = array_merge( $input_values, $subform_input_values );
694
+		foreach ($this->subsections() as $subsection_name => $subsection) {
695
+			if ($subsection instanceof EE_Form_Input_Base) {
696
+				$input_values[$subsection_name] = $pretty ? $subsection->pretty_value() : $subsection->normalized_value();
697
+			} else if ($subsection instanceof EE_Form_Section_Proper && $include_subform_inputs) {
698
+				$subform_input_values = $subsection->_input_values($pretty, $include_subform_inputs, $flatten);
699
+				if ($flatten) {
700
+					$input_values = array_merge($input_values, $subform_input_values);
701 701
 				} else {
702
-					$input_values[ $subsection_name ] = $subform_input_values;
702
+					$input_values[$subsection_name] = $subform_input_values;
703 703
 				}
704 704
 			}
705 705
 		}
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
 	 * (ie, had receive_form_submission called on it yet)
714 714
 	 * @return boolean
715 715
 	 */
716
-	public function has_received_submission(){
716
+	public function has_received_submission() {
717 717
 		$this->ensure_construct_finalized_called();
718 718
 		return $this->_received_submission;
719 719
 	}
@@ -726,8 +726,8 @@  discard block
 block discarded – undo
726 726
 	 * @param array $inputs_to_exclude values are the input names
727 727
 	 * @return void
728 728
 	 */
729
-	public function exclude($inputs_to_exclude = array()){
730
-		foreach($inputs_to_exclude as $input_to_exclude_name){
729
+	public function exclude($inputs_to_exclude = array()) {
730
+		foreach ($inputs_to_exclude as $input_to_exclude_name) {
731 731
 			unset($this->_subsections[$input_to_exclude_name]);
732 732
 		}
733 733
 	}
@@ -737,8 +737,8 @@  discard block
 block discarded – undo
737 737
 	/**
738 738
 	 * @param array $inputs_to_hide
739 739
 	 */
740
-	public function hide($inputs_to_hide= array()){
741
-		foreach($inputs_to_hide as $input_to_hide){
740
+	public function hide($inputs_to_hide = array()) {
741
+		foreach ($inputs_to_hide as $input_to_hide) {
742 742
 			$input = $this->get_input($input_to_hide);
743 743
 
744 744
 			$input->set_display_strategy(new EE_Hidden_Display_Strategy());
@@ -763,13 +763,13 @@  discard block
 block discarded – undo
763 763
 	 * 																								or if $subsection_name_to_target is null, before or after entire subsections array
764 764
 	 * @return void
765 765
 	 */
766
-	public function add_subsections( $new_subsections, $subsection_name_to_target = NULL, $add_before = true ){
767
-		foreach($new_subsections as $subsection_name => $subsection){
768
-			if( ! $subsection instanceof EE_Form_Section_Base){
766
+	public function add_subsections($new_subsections, $subsection_name_to_target = NULL, $add_before = true) {
767
+		foreach ($new_subsections as $subsection_name => $subsection) {
768
+			if ( ! $subsection instanceof EE_Form_Section_Base) {
769 769
 				EE_Error::add_error(
770 770
 					sprintf(
771 771
 						__("Trying to add a %s as a subsection (it was named '%s') to the form section '%s'. It was removed.", "event_espresso"),
772
-						get_class( $subsection ),
772
+						get_class($subsection),
773 773
 						$subsection_name,
774 774
 						$this->name()
775 775
 					)
@@ -778,7 +778,7 @@  discard block
 block discarded – undo
778 778
 			}
779 779
 		}
780 780
 
781
-		$this->_subsections = EEH_Array::insert_into_array( $this->_subsections, $new_subsections, $subsection_name_to_target, $add_before );
781
+		$this->_subsections = EEH_Array::insert_into_array($this->_subsections, $new_subsections, $subsection_name_to_target, $add_before);
782 782
 
783 783
 		/*$subsections_before = array();
784 784
 		if( $subsection_name_to_target ){
@@ -809,8 +809,8 @@  discard block
 block discarded – undo
809 809
 				$this->_subsections = $new_subsections;
810 810
 			}
811 811
 		}*/
812
-		if( $this->_construction_finalized ){
813
-			foreach($this->_subsections as $name => $subsection){
812
+		if ($this->_construction_finalized) {
813
+			foreach ($this->_subsections as $name => $subsection) {
814 814
 				$subsection->_construct_finalize($this, $name);
815 815
 			}
816 816
 		}
@@ -821,8 +821,8 @@  discard block
 block discarded – undo
821 821
 	/**
822 822
 	 * Just gets all validatable subsections to clean their sensitive data
823 823
 	 */
824
-	public function clean_sensitive_data(){
825
-		foreach($this->get_validatable_subsections() as $subsection){
824
+	public function clean_sensitive_data() {
825
+		foreach ($this->get_validatable_subsections() as $subsection) {
826 826
 			$subsection->clean_sensitive_data();
827 827
 		}
828 828
 	}
@@ -832,8 +832,8 @@  discard block
 block discarded – undo
832 832
 	/**
833 833
 	 * @param string $form_submission_error_message
834 834
 	 */
835
-	public function set_submission_error_message( $form_submission_error_message = '' ) {
836
-		$this->_form_submission_error_message .= ! empty( $form_submission_error_message ) ? $form_submission_error_message : __( 'Form submission failed due to errors', 'event_espresso' );
835
+	public function set_submission_error_message($form_submission_error_message = '') {
836
+		$this->_form_submission_error_message .= ! empty($form_submission_error_message) ? $form_submission_error_message : __('Form submission failed due to errors', 'event_espresso');
837 837
 	}
838 838
 
839 839
 
@@ -850,8 +850,8 @@  discard block
 block discarded – undo
850 850
 	/**
851 851
 	 * @param string $form_submission_success_message
852 852
 	 */
853
-	public function set_submission_success_message( $form_submission_success_message ) {
854
-		$this->_form_submission_success_message .= ! empty( $form_submission_success_message ) ? $form_submission_success_message : __( 'Form submitted successfully', 'event_espresso' );
853
+	public function set_submission_success_message($form_submission_success_message) {
854
+		$this->_form_submission_success_message .= ! empty($form_submission_success_message) ? $form_submission_success_message : __('Form submitted successfully', 'event_espresso');
855 855
 	}
856 856
 
857 857
 
@@ -873,10 +873,10 @@  discard block
 block discarded – undo
873 873
 	 * EE_Form_Input_Base::_set_default_html_name_if_empty
874 874
 	 * @return string
875 875
 	 */
876
-	public function html_name_prefix(){
877
-		if( $this->parent_section() instanceof EE_Form_Section_Proper ){
878
-			return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']';
879
-		}else{
876
+	public function html_name_prefix() {
877
+		if ($this->parent_section() instanceof EE_Form_Section_Proper) {
878
+			return $this->parent_section()->html_name_prefix().'['.$this->name().']';
879
+		} else {
880 880
 			return $this->name();
881 881
 		}
882 882
 	}
@@ -887,7 +887,7 @@  discard block
 block discarded – undo
887 887
 	 * was set, which is probably nothing, or the classname)
888 888
 	 * @return string
889 889
 	 */
890
-	public function name(){
890
+	public function name() {
891 891
 		$this->ensure_construct_finalized_called();
892 892
 		return parent::name();
893 893
 	}
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
 	 *
897 897
 	 * @return EE_Form_Section_Proper
898 898
 	 */
899
-	public function parent_section(){
899
+	public function parent_section() {
900 900
 		$this->ensure_construct_finalized_called();
901 901
 		return parent::parent_section();
902 902
 	}
@@ -905,9 +905,9 @@  discard block
 block discarded – undo
905 905
 	 * make sure construction finalized was called, otherwise children might not be ready
906 906
 	 * @return void
907 907
 	 */
908
-	public function ensure_construct_finalized_called(){
909
-		if( ! $this->_construction_finalized ){
910
-			$this->_construct_finalize($this->_parent_section, $this->_name );
908
+	public function ensure_construct_finalized_called() {
909
+		if ( ! $this->_construction_finalized) {
910
+			$this->_construct_finalize($this->_parent_section, $this->_name);
911 911
 		}
912 912
 	}
913 913
 
@@ -919,17 +919,17 @@  discard block
 block discarded – undo
919 919
 	 * @param array $req_data
920 920
 	 * @return boolean
921 921
 	 */
922
-	public function form_data_present_in( $req_data = NULL ) {
923
-		if( $req_data === NULL){
922
+	public function form_data_present_in($req_data = NULL) {
923
+		if ($req_data === NULL) {
924 924
 			$req_data = $_POST;
925 925
 		}
926
-		foreach( $this->subsections() as $subsection ) {
927
-			if($subsection instanceof EE_Form_Input_Base ) {
928
-				if( $subsection->form_data_present_in( $req_data ) ) {
926
+		foreach ($this->subsections() as $subsection) {
927
+			if ($subsection instanceof EE_Form_Input_Base) {
928
+				if ($subsection->form_data_present_in($req_data)) {
929 929
 					return TRUE;
930 930
 				}
931
-			}elseif( $subsection instanceof EE_Form_Section_Proper ) {
932
-				if( $subsection->form_data_present_in( $req_data ) ) {
931
+			}elseif ($subsection instanceof EE_Form_Section_Proper) {
932
+				if ($subsection->form_data_present_in($req_data)) {
933 933
 					return TRUE;
934 934
 				}
935 935
 			}
@@ -946,14 +946,14 @@  discard block
 block discarded – undo
946 946
 	 */
947 947
 	public function get_validation_errors_accumulated() {
948 948
 		$validation_errors = $this->get_validation_errors();
949
-		foreach($this->get_validatable_subsections() as $subsection ) {
950
-			if( $subsection instanceof EE_Form_Section_Proper ) {
949
+		foreach ($this->get_validatable_subsections() as $subsection) {
950
+			if ($subsection instanceof EE_Form_Section_Proper) {
951 951
 				$validation_errors_on_this_subsection = $subsection->get_validation_errors_accumulated();
952 952
 			} else {
953
-				$validation_errors_on_this_subsection =  $subsection->get_validation_errors();
953
+				$validation_errors_on_this_subsection = $subsection->get_validation_errors();
954 954
 			}
955
-			if( $validation_errors_on_this_subsection ){
956
-				$validation_errors = array_merge( $validation_errors, $validation_errors_on_this_subsection );
955
+			if ($validation_errors_on_this_subsection) {
956
+				$validation_errors = array_merge($validation_errors, $validation_errors_on_this_subsection);
957 957
 			}
958 958
 		}
959 959
 		return $validation_errors;
Please login to merge, or discard this patch.
core/libraries/form_sections/base/EE_Form_Section_Validatable.form.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION'))
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('No direct script access allowed');
4 4
 
5 5
 /**
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
  *
35 35
  * ------------------------------------------------------------------------
36 36
  */
37
-abstract class EE_Form_Section_Validatable extends EE_Form_Section_Base{
37
+abstract class EE_Form_Section_Validatable extends EE_Form_Section_Base {
38 38
 
39 39
 	/**
40 40
 	 * Array of validation errors in this section. Does not contain validation errors in subsections, however.
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * called get_validation_errors_accumulated
50 50
 	 * @return EE_Validation_Error[]
51 51
 	 */
52
-	public function get_validation_errors(){
52
+	public function get_validation_errors() {
53 53
 		return $this->_validation_errors;
54 54
 	}
55 55
 	/**
@@ -57,16 +57,16 @@  discard block
 block discarded – undo
57 57
 	 * If we want this to be customizable, we may decide to create a strategy for displaying it.
58 58
 	 * @return string
59 59
 	 */
60
-	public function get_validation_error_string(){
60
+	public function get_validation_error_string() {
61 61
 		$validation_error_messages = array();
62
-		if($this->get_validation_errors()){
63
-			foreach($this->get_validation_errors() as $validation_error){
64
-				if ( $validation_error instanceof EE_Validation_Error ) {
65
-					$validation_error_messages[] =$validation_error->getMessage();
62
+		if ($this->get_validation_errors()) {
63
+			foreach ($this->get_validation_errors() as $validation_error) {
64
+				if ($validation_error instanceof EE_Validation_Error) {
65
+					$validation_error_messages[] = $validation_error->getMessage();
66 66
 				}
67 67
 			}
68 68
 		}
69
-		return implode(", ",$validation_error_messages);
69
+		return implode(", ", $validation_error_messages);
70 70
 	}
71 71
 
72 72
 
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
 	 * @return boolean
83 83
 	 */
84 84
 	public function is_valid() {
85
-		if(count($this->_validation_errors)){
85
+		if (count($this->_validation_errors)) {
86 86
 			return false;
87
-		}else{
87
+		} else {
88 88
 			return true;
89 89
 		}
90 90
 	}
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
 	 * @param Exception $previous_exception if there was an exception that caused the error, that exception
110 110
 	 * @return void
111 111
 	 */
112
-	function add_validation_error( $message_or_object, $error_code = NULL, $previous_exception = NULL ){
113
-		if($message_or_object instanceof EE_Validation_Error){
114
-			$validation_error= $message_or_object;
112
+	function add_validation_error($message_or_object, $error_code = NULL, $previous_exception = NULL) {
113
+		if ($message_or_object instanceof EE_Validation_Error) {
114
+			$validation_error = $message_or_object;
115 115
 			$validation_error->set_form_section($this);
116
-		}else{
116
+		} else {
117 117
 			$validation_error = new EE_Validation_Error($message_or_object, $error_code, $this, $previous_exception);
118 118
 		}
119 119
 		$this->_validation_errors[] = $validation_error;
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION'))
2
+if (!defined('EVENT_ESPRESSO_VERSION')) {
3 3
 	exit('No direct script access allowed');
4
+}
4 5
 
5 6
 /**
6 7
  * Event Espresso
@@ -84,7 +85,7 @@  discard block
 block discarded – undo
84 85
 	public function is_valid() {
85 86
 		if(count($this->_validation_errors)){
86 87
 			return false;
87
-		}else{
88
+		} else{
88 89
 			return true;
89 90
 		}
90 91
 	}
@@ -113,7 +114,7 @@  discard block
 block discarded – undo
113 114
 		if($message_or_object instanceof EE_Validation_Error){
114 115
 			$validation_error= $message_or_object;
115 116
 			$validation_error->set_form_section($this);
116
-		}else{
117
+		} else{
117 118
 			$validation_error = new EE_Validation_Error($message_or_object, $error_code, $this, $previous_exception);
118 119
 		}
119 120
 		$this->_validation_errors[] = $validation_error;
Please login to merge, or discard this patch.
core/libraries/form_sections/helpers/EE_Validation_Error.error.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-class EE_Validation_Error extends Exception{
3
+class EE_Validation_Error extends Exception {
4 4
 	/**
5 5
 	 * Form Section from which this error originated.
6 6
 	 * @var EE_Form_Section
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 	 * @param EE_Form_Section_Validatable $form_section
21 21
 	 * @param Exception $previous if there was an exception that caused this exception
22 22
 	 */
23
-	function __construct( $message = null, $string_code = null,$form_section = null, $previous = null){
23
+	function __construct($message = null, $string_code = null, $form_section = null, $previous = null) {
24 24
 		$this->_form_section = $form_section;
25 25
 		$this->_string_code = $string_code;
26 26
 		parent::__construct($message, 500, $previous);
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * returns teh form section which caused the error.
31 31
 	 * @return EE_Form_Section_Validatable
32 32
 	 */
33
-	public function get_form_section(){
33
+	public function get_form_section() {
34 34
 		return $this->_form_section;
35 35
 	}
36 36
 	/**
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	 * @param EE_Form_Section_Validatable $form_section
39 39
 	 * @return void
40 40
 	 */
41
-	public function set_form_section($form_section){
41
+	public function set_form_section($form_section) {
42 42
 		$this->_form_section = $form_section;
43 43
 	}
44 44
 
Please login to merge, or discard this patch.
core/libraries/form_sections/inputs/EE_Admin_File_Uploader_Input.input.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,15 +8,15 @@
 block discarded – undo
8 8
  * @since                4.6
9 9
  *
10 10
  */
11
-class EE_Admin_File_Uploader_Input extends EE_Form_Input_Base{
11
+class EE_Admin_File_Uploader_Input extends EE_Form_Input_Base {
12 12
 
13 13
 	/**
14 14
 	 * @param array $input_settings
15 15
 	 */
16
-	function __construct($input_settings = array()){
16
+	function __construct($input_settings = array()) {
17 17
 		$this->_set_display_strategy(new EE_Admin_File_Uploader_Display_Strategy());
18 18
 		$this->_set_normalization_strategy(new EE_Text_Normalization());
19
-		$this->_add_validation_strategy(new EE_URL_Validation_Strategy( isset( $input_settings[ 'validation_error_message' ] ) ? $input_settings[ 'validation_error_message' ] : NULL ) );
19
+		$this->_add_validation_strategy(new EE_URL_Validation_Strategy(isset($input_settings['validation_error_message']) ? $input_settings['validation_error_message'] : NULL));
20 20
 		parent::__construct($input_settings);
21 21
 	}
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.