Completed
Branch FEAT-7553-PayPal-Express-PM (ff03cf)
by
unknown
77:21 queued 61:39
created
EE_Admin_Table_Registration_Line_Item_Display_Strategy.strategy.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  *
11 11
  */
12 12
 
13
-class EE_Admin_Table_Registration_Line_Item_Display_Strategy extends EE_Admin_Table_Line_Item_Display_Strategy  {
13
+class EE_Admin_Table_Registration_Line_Item_Display_Strategy extends EE_Admin_Table_Line_Item_Display_Strategy {
14 14
 
15 15
 	/**
16 16
 	 * Table header for display.
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 	 * @param array $options
19 19
 	 * @return string
20 20
 	 */
21
-	protected function _table_header( $options ) {
22
-		$html = EEH_HTML::table( '','', $options['table_css_class'] );
21
+	protected function _table_header($options) {
22
+		$html = EEH_HTML::table('', '', $options['table_css_class']);
23 23
 		$html .= EEH_HTML::thead();
24 24
 		$html .= EEH_HTML::tr();
25
-		$html .= EEH_HTML::th( __( 'Name', 'event_espresso' ), '', 'jst-left' );
26
-		$html .= EEH_HTML::th( __( 'Type', 'event_espresso'), '', 'jst-left' );
27
-		$html .= EEH_HTML::th( __( 'Date(s)', 'event_espresso' ), '', 'jst-left' );
28
-		$html .= EEH_HTML::th( __( 'Amount', 'event_espresso' ), '', 'jst-cntr' );
25
+		$html .= EEH_HTML::th(__('Name', 'event_espresso'), '', 'jst-left');
26
+		$html .= EEH_HTML::th(__('Type', 'event_espresso'), '', 'jst-left');
27
+		$html .= EEH_HTML::th(__('Date(s)', 'event_espresso'), '', 'jst-left');
28
+		$html .= EEH_HTML::th(__('Amount', 'event_espresso'), '', 'jst-cntr');
29 29
 		$html .= EEH_HTML::tbody();
30 30
 		return $html;
31 31
 	}
@@ -41,14 +41,14 @@  discard block
 block discarded – undo
41 41
 	 * @param array        $options
42 42
 	 * @return mixed
43 43
 	 */
44
-	protected function _item_row( EE_Line_Item $line_item, $options = array() ) {
44
+	protected function _item_row(EE_Line_Item $line_item, $options = array()) {
45 45
 		$line_item_related_object = $line_item->get_object();
46 46
 		$parent_line_item_related_object = $line_item->parent() instanceof EE_Line_Item
47 47
 			? $line_item->parent()->get_object()
48 48
 			: null;
49 49
 		// start of row
50 50
 		$row_class = $options['odd'] ? 'item odd' : 'item';
51
-		$html = EEH_HTML::tr( '', '', $row_class );
51
+		$html = EEH_HTML::tr('', '', $row_class);
52 52
 
53 53
 
54 54
 		//Name Column
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 		$parent_related_object_name = $parent_line_item_related_object instanceof EEI_Line_Item_Object
59 59
 			? $parent_line_item_related_object->name()
60 60
 			: '';
61
-		$parent_related_object_name = empty( $parent_related_object_name ) && $line_item->parent() instanceof EE_Line_Item
61
+		$parent_related_object_name = empty($parent_related_object_name) && $line_item->parent() instanceof EE_Line_Item
62 62
 			? $line_item->parent()->name()
63 63
 			: $parent_related_object_name;
64 64
 		$parent_related_object_link = $parent_line_item_related_object instanceof EEI_Admin_Links
@@ -68,51 +68,51 @@  discard block
 block discarded – undo
68 68
 
69 69
 		$name_html = $line_item_related_object instanceof EEI_Line_Item_Object
70 70
 			? $line_item_related_object->name() : $line_item->name();
71
-		$name_html = $name_link ? '<a href="' . $name_link . '">' . $name_html . '</a>'
71
+		$name_html = $name_link ? '<a href="'.$name_link.'">'.$name_html.'</a>'
72 72
 			: $name_html;
73 73
 		$name_html .= $line_item->is_taxable() ? ' *' : '';
74 74
 		//maybe preface with icon?
75 75
 		$name_html = $line_item_related_object instanceof EEI_Has_Icon
76
-			? $line_item_related_object->get_icon() . $name_html
76
+			? $line_item_related_object->get_icon().$name_html
77 77
 			: $name_html;
78
-		$name_html = '<span class="ee-line-item-name linked">' . $name_html . '</span><br>';
79
-		$name_html .=  sprintf(
80
-			_x( '%1$sfor the %2$s: %3$s%4$s', 'eg. "for the Event: My Cool Event"', 'event_espresso'),
78
+		$name_html = '<span class="ee-line-item-name linked">'.$name_html.'</span><br>';
79
+		$name_html .= sprintf(
80
+			_x('%1$sfor the %2$s: %3$s%4$s', 'eg. "for the Event: My Cool Event"', 'event_espresso'),
81 81
 			'<span class="ee-line-item-related-parent-object">',
82 82
 			$line_item->parent() instanceof EE_Line_Item
83 83
 				? $line_item->parent()->OBJ_type_i18n()
84
-				: __( 'Item:', 'event_espresso' ),
84
+				: __('Item:', 'event_espresso'),
85 85
 			$parent_related_object_link
86
-				? '<a href="' . $parent_related_object_link . '">' . $parent_related_object_name . '</a>'
86
+				? '<a href="'.$parent_related_object_link.'">'.$parent_related_object_name.'</a>'
87 87
 				: $parent_related_object_name,
88 88
 			'</span>'
89 89
 		);
90
-		$html .= EEH_HTML::td( $name_html, '', 'jst-left' );
90
+		$html .= EEH_HTML::td($name_html, '', 'jst-left');
91 91
 		//Type Column
92 92
 		$type_html = $line_item->OBJ_type() ? $line_item->OBJ_type_i18n() : '';
93
-		$type_html .= $this->_get_cancellations( $line_item );
93
+		$type_html .= $this->_get_cancellations($line_item);
94 94
 		$type_html .= $line_item->OBJ_type() ? '<br />' : '';
95 95
 		$code = $line_item_related_object instanceof EEI_Has_Code ? $line_item_related_object->code() : '';
96
-		$type_html .= ! empty( $code ) ? '<span class="ee-line-item-id">' . sprintf( __( 'Code: %s', 'event_espresso' ), $code ) . '</span>' : '';
97
-		$html .= EEH_HTML::td( $type_html, '', 'jst-left' );
96
+		$type_html .= ! empty($code) ? '<span class="ee-line-item-id">'.sprintf(__('Code: %s', 'event_espresso'), $code).'</span>' : '';
97
+		$html .= EEH_HTML::td($type_html, '', 'jst-left');
98 98
 
99 99
 		//Date column
100 100
 		$datetime_content = '';
101
-		if ( $line_item_related_object instanceof EE_Ticket ) {
101
+		if ($line_item_related_object instanceof EE_Ticket) {
102 102
 			$datetimes = $line_item_related_object->datetimes();
103
-			foreach ( $datetimes as $datetime ) {
104
-				if ( $datetime instanceof EE_Datetime ) {
105
-					$datetime_content .= $datetime->get_dtt_display_name() . '<br>';
103
+			foreach ($datetimes as $datetime) {
104
+				if ($datetime instanceof EE_Datetime) {
105
+					$datetime_content .= $datetime->get_dtt_display_name().'<br>';
106 106
 				}
107 107
 			}
108 108
 		}
109
-		$html .= EEH_HTML::td( $datetime_content, '', 'jst-left' );
109
+		$html .= EEH_HTML::td($datetime_content, '', 'jst-left');
110 110
 
111 111
 		//Amount Column
112
-		if ( $line_item->is_percent() ) {
113
-			$html .= EEH_HTML::td( $line_item->percent() . '%', '', 'jst-rght' );
112
+		if ($line_item->is_percent()) {
113
+			$html .= EEH_HTML::td($line_item->percent().'%', '', 'jst-rght');
114 114
 		} else {
115
-			$html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'jst-rght' );
115
+			$html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'jst-rght');
116 116
 		}
117 117
 
118 118
 
@@ -130,13 +130,13 @@  discard block
 block discarded – undo
130 130
 	 * @param array        $options
131 131
 	 * @return mixed
132 132
 	 */
133
-	protected function _tax_row( EE_Line_Item $line_item, $options = array() ) {
133
+	protected function _tax_row(EE_Line_Item $line_item, $options = array()) {
134 134
 		// start of row
135
-		$html = EEH_HTML::tr( '', 'admin-primary-mbox-taxes-tr' );
135
+		$html = EEH_HTML::tr('', 'admin-primary-mbox-taxes-tr');
136 136
 		// name th
137
-		$html .= EEH_HTML::th(  $line_item->name() . '(' . $line_item->get_pretty( 'LIN_percent' ) . '%)', '',  'jst-rght', '', ' colspan="3"' );
137
+		$html .= EEH_HTML::th($line_item->name().'('.$line_item->get_pretty('LIN_percent').'%)', '', 'jst-rght', '', ' colspan="3"');
138 138
 		// total th
139
-		$html .= EEH_HTML::th( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'jst-rght' );
139
+		$html .= EEH_HTML::th(EEH_Template::format_currency($line_item->total(), false, false), '', 'jst-rght');
140 140
 		// end of row
141 141
 		$html .= EEH_HTML::trx();
142 142
 		return $html;
@@ -153,9 +153,9 @@  discard block
 block discarded – undo
153 153
 	 * @param array        $options
154 154
 	 * @return mixed
155 155
 	 */
156
-	protected function _total_row( EE_Line_Item $line_item, $options = array() ) {
156
+	protected function _total_row(EE_Line_Item $line_item, $options = array()) {
157 157
 
158
-		$registration = isset( $options['EE_Registration'] ) ? $options['EE_Registration'] : null;
158
+		$registration = isset($options['EE_Registration']) ? $options['EE_Registration'] : null;
159 159
 		$registration_total = $registration instanceof EE_Registration ? $registration->pretty_final_price() : 0;
160 160
 		//if no valid registration object then we're not going to show the approximate text.
161 161
 		$total_match = $registration instanceof EE_Registration
@@ -163,26 +163,26 @@  discard block
 block discarded – undo
163 163
 			: true;
164 164
 
165 165
 		// start of row
166
-		$html = EEH_HTML::tr( '', '', 'admin-primary-mbox-total-tr' );
166
+		$html = EEH_HTML::tr('', '', 'admin-primary-mbox-total-tr');
167 167
 		// Total th label
168
-		if ( $total_match ) {
169
-			$total_label = sprintf( __( 'This registration\'s total %s:', 'event_espresso' ), '(' . EE_Registry::instance()->CFG->currency->code . ')' );
168
+		if ($total_match) {
169
+			$total_label = sprintf(__('This registration\'s total %s:', 'event_espresso'), '('.EE_Registry::instance()->CFG->currency->code.')');
170 170
 		} else {
171
-			$total_label = sprintf( __( 'This registration\'s approximate total %s', 'event_espresso' ), '(' . EE_Registry::instance()->CFG->currency->code . ')' );
171
+			$total_label = sprintf(__('This registration\'s approximate total %s', 'event_espresso'), '('.EE_Registry::instance()->CFG->currency->code.')');
172 172
 			$total_label .= '<br>';
173 173
 			$total_label .= '<p class="ee-footnote-text">'
174 174
 			                . sprintf(
175
-				                __( 'The registrations\' share of the transaction total is approximate because it might not be possible to evenly divide the transaction total among each registration, and so some registrations may need to pay a penny more than others.  This registration\'s final share is actually %1$s%2$s%3$s.', 'event_espresso' ),
175
+				                __('The registrations\' share of the transaction total is approximate because it might not be possible to evenly divide the transaction total among each registration, and so some registrations may need to pay a penny more than others.  This registration\'s final share is actually %1$s%2$s%3$s.', 'event_espresso'),
176 176
 				                '<strong>',
177 177
 				                $registration_total,
178 178
 				                '</strong>'
179 179
 			                )
180 180
 			                . '</p>';
181 181
 		}
182
-		$html .= EEH_HTML::th( $total_label, '',  'jst-rght',  '',  ' colspan="3"' );
182
+		$html .= EEH_HTML::th($total_label, '', 'jst-rght', '', ' colspan="3"');
183 183
 		// total th
184 184
 
185
-		$html .= EEH_HTML::th( EEH_Template::format_currency( $line_item->total(), false, false ), '',  'jst-rght' );
185
+		$html .= EEH_HTML::th(EEH_Template::format_currency($line_item->total(), false, false), '', 'jst-rght');
186 186
 		// end of row
187 187
 		$html .= EEH_HTML::trx();
188 188
 		return $html;
Please login to merge, or discard this patch.
line_item_display/EE_Admin_Table_Line_Item_Display_Strategy.strategy.php 1 patch
Spacing   +61 added lines, -61 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * @param array        $options
50 50
 	 * @return mixed
51 51
 	 */
52
-	public function display_line_item( EE_Line_Item $line_item, $options = array() ) {
52
+	public function display_line_item(EE_Line_Item $line_item, $options = array()) {
53 53
 
54 54
 		$html = '';
55 55
 		// set some default options and merge with incoming
@@ -60,43 +60,43 @@  discard block
 block discarded – undo
60 60
 			'taxes_tr_css_class' => 'admin-primary-mbox-taxes-tr',
61 61
 			'total_tr_css_class' => 'admin-primary-mbox-total-tr'
62 62
 		);
63
-		$options = array_merge( $default_options, (array)$options );
63
+		$options = array_merge($default_options, (array) $options);
64 64
 
65
-		switch( $line_item->type() ) {
65
+		switch ($line_item->type()) {
66 66
 
67 67
 			case EEM_Line_Item::type_line_item:
68 68
 				// item row
69
-				$html .= $this->_item_row( $line_item, $options );
69
+				$html .= $this->_item_row($line_item, $options);
70 70
 				break;
71 71
 
72 72
 			case EEM_Line_Item::type_sub_line_item:
73
-				$html .= $this->_sub_item_row( $line_item, $options );
73
+				$html .= $this->_sub_item_row($line_item, $options);
74 74
 				break;
75 75
 
76 76
 			case EEM_Line_Item::type_sub_total:
77
-				if ( $line_item->quantity() === 0 ) {
77
+				if ($line_item->quantity() === 0) {
78 78
 					return $html;
79 79
 				}
80 80
 				//loop through children
81 81
 				$child_line_items = $line_item->children();
82 82
 				//loop through children
83
-				foreach ( $child_line_items as $child_line_item ) {
83
+				foreach ($child_line_items as $child_line_item) {
84 84
 					//recursively feed children back into this method
85
-					$html .= $this->display_line_item( $child_line_item, $options );
85
+					$html .= $this->display_line_item($child_line_item, $options);
86 86
 				}
87
-				$html .= $this->_sub_total_row( $line_item, $options );
87
+				$html .= $this->_sub_total_row($line_item, $options);
88 88
 				break;
89 89
 
90 90
 			case EEM_Line_Item::type_tax:
91
-				if ( $this->_show_taxes ) {
92
-					$this->_taxes_html .= $this->_tax_row( $line_item, $options );
91
+				if ($this->_show_taxes) {
92
+					$this->_taxes_html .= $this->_tax_row($line_item, $options);
93 93
 				}
94 94
 				break;
95 95
 
96 96
 			case EEM_Line_Item::type_tax_sub_total:
97
-				foreach( $line_item->children() as $child_line_item ) {
98
-					if ( $child_line_item->type() == EEM_Line_Item::type_tax ) {
99
-						$this->display_line_item( $child_line_item, $options );
97
+				foreach ($line_item->children() as $child_line_item) {
98
+					if ($child_line_item->type() == EEM_Line_Item::type_tax) {
99
+						$this->display_line_item($child_line_item, $options);
100 100
 					}
101 101
 				}
102 102
 				break;
@@ -108,14 +108,14 @@  discard block
 block discarded – undo
108 108
 				$children = $line_item->children();
109 109
 
110 110
 				// loop thru all non-tax child line items
111
-				foreach( $children as $child_line_item ) {
112
-						$html .= $this->display_line_item( $child_line_item, $options );
111
+				foreach ($children as $child_line_item) {
112
+						$html .= $this->display_line_item($child_line_item, $options);
113 113
 				}
114 114
 
115 115
 				$html .= $this->_taxes_html;
116
-				$html .= $this->_total_row( $line_item, $options );
117
-				if ( $options['use_table_wrapper'] ) {
118
-					$html = $this->_table_header( $options ) . $html . $this->_table_footer( $options );
116
+				$html .= $this->_total_row($line_item, $options);
117
+				if ($options['use_table_wrapper']) {
118
+					$html = $this->_table_header($options).$html.$this->_table_footer($options);
119 119
 				}
120 120
 				break;
121 121
 
@@ -132,15 +132,15 @@  discard block
 block discarded – undo
132 132
 	 * @param array $options
133 133
 	 * @return string
134 134
 	 */
135
-	protected function _table_header( $options ) {
136
-		$html = EEH_HTML::table( '','', $options['table_css_class'] );
135
+	protected function _table_header($options) {
136
+		$html = EEH_HTML::table('', '', $options['table_css_class']);
137 137
 		$html .= EEH_HTML::thead();
138 138
 		$html .= EEH_HTML::tr();
139
-		$html .= EEH_HTML::th( __( 'Name', 'event_espresso' ), '', 'jst-left' );
140
-		$html .= EEH_HTML::th( __( 'Type', 'event_espresso'), '', 'jst-left' );
141
-		$html .= EEH_HTML::th( __( 'Amount', 'event_espresso' ), '', 'jst-cntr' );
142
-		$html .= EEH_HTML::th( __( 'Qty', 'event_espresso' ), '', 'jst-cntr' );
143
-		$html .= EEH_HTML::th( __( 'Line Total', 'event_espresso'), '', 'jst-cntr' );
139
+		$html .= EEH_HTML::th(__('Name', 'event_espresso'), '', 'jst-left');
140
+		$html .= EEH_HTML::th(__('Type', 'event_espresso'), '', 'jst-left');
141
+		$html .= EEH_HTML::th(__('Amount', 'event_espresso'), '', 'jst-cntr');
142
+		$html .= EEH_HTML::th(__('Qty', 'event_espresso'), '', 'jst-cntr');
143
+		$html .= EEH_HTML::th(__('Line Total', 'event_espresso'), '', 'jst-cntr');
144 144
 		$html .= EEH_HTML::tbody();
145 145
 		return $html;
146 146
 	}
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @param array $options array of options for the table.
153 153
 	 * @return string
154 154
 	 */
155
-	protected function _table_footer( $options ) {
156
-		return EEH_HTML::tbodyx() .  EEH_HTML::tablex();
155
+	protected function _table_footer($options) {
156
+		return EEH_HTML::tbodyx().EEH_HTML::tablex();
157 157
 	}
158 158
 
159 159
 
@@ -165,12 +165,12 @@  discard block
 block discarded – undo
165 165
 	 * @param array        $options
166 166
 	 * @return mixed
167 167
 	 */
168
-	protected function _item_row( EE_Line_Item $line_item, $options = array() ) {
168
+	protected function _item_row(EE_Line_Item $line_item, $options = array()) {
169 169
 		$line_item_related_object = $line_item->get_object();
170 170
 		$parent_line_item_related_object = $line_item->parent() instanceof EE_Line_Item ? $line_item->parent()->get_object() : null;
171 171
 		// start of row
172 172
 		$row_class = $options['odd'] ? 'item odd' : 'item';
173
-		$html = EEH_HTML::tr( '', '', $row_class );
173
+		$html = EEH_HTML::tr('', '', $row_class);
174 174
 
175 175
 
176 176
 		//Name Column
@@ -178,45 +178,45 @@  discard block
 block discarded – undo
178 178
 
179 179
 		//related object scope.
180 180
 		$parent_related_object_name = $parent_line_item_related_object instanceof EEI_Line_Item_Object ? $parent_line_item_related_object->name() : '';
181
-		$parent_related_object_name = empty( $parent_related_object_name ) && $line_item->parent() instanceof EE_Line_Item ? $line_item->parent()->name() : $parent_related_object_name;
181
+		$parent_related_object_name = empty($parent_related_object_name) && $line_item->parent() instanceof EE_Line_Item ? $line_item->parent()->name() : $parent_related_object_name;
182 182
 		$parent_related_object_link = $parent_line_item_related_object instanceof EEI_Admin_Links ? $parent_line_item_related_object->get_admin_details_link() : '';
183 183
 
184 184
 
185 185
 		$name_html = $line_item_related_object instanceof EEI_Line_Item_Object ? $line_item_related_object->name() : $line_item->name();
186
-		$name_html = $name_link ? '<a href="' . $name_link . '">' . $name_html . '</a>' : $name_html;
186
+		$name_html = $name_link ? '<a href="'.$name_link.'">'.$name_html.'</a>' : $name_html;
187 187
 		$name_html .= $line_item->is_taxable() ? ' *' : '';
188 188
 		//maybe preface with icon?
189
-		$name_html = $line_item_related_object instanceof EEI_Has_Icon ? $line_item_related_object->get_icon() . $name_html : $name_html;
190
-		$name_html = '<span class="ee-line-item-name linked">' . $name_html . '</span><br>';
191
-		$name_html .=  sprintf(
192
-			_x( '%1$sfor the %2$s: %3$s%4$s', 'eg. "for the Event: My Cool Event"', 'event_espresso'),
189
+		$name_html = $line_item_related_object instanceof EEI_Has_Icon ? $line_item_related_object->get_icon().$name_html : $name_html;
190
+		$name_html = '<span class="ee-line-item-name linked">'.$name_html.'</span><br>';
191
+		$name_html .= sprintf(
192
+			_x('%1$sfor the %2$s: %3$s%4$s', 'eg. "for the Event: My Cool Event"', 'event_espresso'),
193 193
 			'<span class="ee-line-item-related-parent-object">',
194
-			$line_item->parent() instanceof EE_Line_Item ? $line_item->parent()->OBJ_type_i18n() : __( 'Item:', 'event_espresso' ),
195
-			$parent_related_object_link ? '<a href="' . $parent_related_object_link . '">' . $parent_related_object_name . '</a>' : $parent_related_object_name,
194
+			$line_item->parent() instanceof EE_Line_Item ? $line_item->parent()->OBJ_type_i18n() : __('Item:', 'event_espresso'),
195
+			$parent_related_object_link ? '<a href="'.$parent_related_object_link.'">'.$parent_related_object_name.'</a>' : $parent_related_object_name,
196 196
 			'</span>'
197 197
 		);
198
-		$html .= EEH_HTML::td( $name_html, '', 'jst-left' );
198
+		$html .= EEH_HTML::td($name_html, '', 'jst-left');
199 199
 		//Type Column
200 200
 		$type_html = $line_item->OBJ_type() ? $line_item->OBJ_type_i18n() : '';
201
-		$type_html .= $this->_get_cancellations( $line_item );
201
+		$type_html .= $this->_get_cancellations($line_item);
202 202
 		$type_html .= $line_item->OBJ_type() ? '<br />' : '';
203 203
 		$code = $line_item_related_object instanceof EEI_Has_Code ? $line_item_related_object->code() : '';
204
-		$type_html .= ! empty( $code ) ? '<span class="ee-line-item-id">' . sprintf( __( 'Code: %s', 'event_espresso' ), $code ) . '</span>' : '';
205
-		$html .= EEH_HTML::td( $type_html, '', 'jst-left' );
204
+		$type_html .= ! empty($code) ? '<span class="ee-line-item-id">'.sprintf(__('Code: %s', 'event_espresso'), $code).'</span>' : '';
205
+		$html .= EEH_HTML::td($type_html, '', 'jst-left');
206 206
 
207 207
 
208 208
 		//Amount Column
209
-		if ( $line_item->is_percent() ) {
210
-			$html .= EEH_HTML::td( $line_item->percent() . '%', '', 'jst-rght' );
209
+		if ($line_item->is_percent()) {
210
+			$html .= EEH_HTML::td($line_item->percent().'%', '', 'jst-rght');
211 211
 		} else {
212
-			$html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'jst-rght' );
212
+			$html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'jst-rght');
213 213
 		}
214 214
 
215 215
 		//QTY column
216
-		$html .= EEH_HTML::td( $line_item->quantity(), '', 'jst-rght' );
216
+		$html .= EEH_HTML::td($line_item->quantity(), '', 'jst-rght');
217 217
 
218 218
 		//total column
219
-		$html .= EEH_HTML::td( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'jst-rght' );
219
+		$html .= EEH_HTML::td(EEH_Template::format_currency($line_item->total(), false, false), '', 'jst-rght');
220 220
 
221 221
 		//finish things off and return
222 222
 		$html .= EEH_HTML::trx();
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
 	 * @param EE_Line_Item $line_item
232 232
 	 * @return string
233 233
 	 */
234
-	protected function _get_cancellations( EE_Line_Item $line_item ) {
234
+	protected function _get_cancellations(EE_Line_Item $line_item) {
235 235
 		$html = '';
236 236
 		$cancellations = $line_item->get_cancellations();
237
-		$cancellation = reset( $cancellations );
237
+		$cancellation = reset($cancellations);
238 238
 		// \EEH_Debug_Tools::printr( $cancellation, '$cancellation', __FILE__, __LINE__ );
239
-		if ( $cancellation instanceof EE_Line_Item ) {
239
+		if ($cancellation instanceof EE_Line_Item) {
240 240
 			$html .= ' <span class="ee-line-item-id">';
241 241
 			$html .= sprintf(
242 242
 				_n(
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 	 * @param array        $options
262 262
 	 * @return mixed
263 263
 	 */
264
-	protected function _sub_item_row( EE_Line_Item $line_item, $options = array() ) {
264
+	protected function _sub_item_row(EE_Line_Item $line_item, $options = array()) {
265 265
 		//for now we're not showing sub-items
266 266
 		return '';
267 267
 	}
@@ -275,13 +275,13 @@  discard block
 block discarded – undo
275 275
 	 * @param array        $options
276 276
 	 * @return mixed
277 277
 	 */
278
-	protected function _tax_row( EE_Line_Item $line_item, $options = array() ) {
278
+	protected function _tax_row(EE_Line_Item $line_item, $options = array()) {
279 279
 		// start of row
280
-		$html = EEH_HTML::tr( '', 'admin-primary-mbox-taxes-tr' );
280
+		$html = EEH_HTML::tr('', 'admin-primary-mbox-taxes-tr');
281 281
 		// name th
282
-		$html .= EEH_HTML::th(  $line_item->name() . '(' . $line_item->get_pretty( 'LIN_percent' ) . '%)', '',  'jst-rght', '', ' colspan="4"' );
282
+		$html .= EEH_HTML::th($line_item->name().'('.$line_item->get_pretty('LIN_percent').'%)', '', 'jst-rght', '', ' colspan="4"');
283 283
 		// total th
284
-		$html .= EEH_HTML::th( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'jst-rght' );
284
+		$html .= EEH_HTML::th(EEH_Template::format_currency($line_item->total(), false, false), '', 'jst-rght');
285 285
 		// end of row
286 286
 		$html .= EEH_HTML::trx();
287 287
 		return $html;
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
 	 * @param array        $options
299 299
 	 * @return mixed
300 300
 	 */
301
-	protected function _sub_total_row( EE_Line_Item $line_item, $text = '', $options = array() ) {
301
+	protected function _sub_total_row(EE_Line_Item $line_item, $text = '', $options = array()) {
302 302
 		//currently not showing subtotal row
303 303
 		return '';
304 304
 	}
@@ -312,15 +312,15 @@  discard block
 block discarded – undo
312 312
 	 * @param array        $options
313 313
 	 * @return mixed
314 314
 	 */
315
-	protected function _total_row( EE_Line_Item $line_item, $options = array() ) {
315
+	protected function _total_row(EE_Line_Item $line_item, $options = array()) {
316 316
 		// start of row
317
-		$html = EEH_HTML::tr( '', '', 'admin-primary-mbox-total-tr' );
317
+		$html = EEH_HTML::tr('', '', 'admin-primary-mbox-total-tr');
318 318
 		// Total th label
319
-		$total_label = sprintf( __( 'Transaction Total %s', 'event_espresso' ),  '(' . EE_Registry::instance()->CFG->currency->code . ')' );
320
-		$html .= EEH_HTML::th( $total_label, '',  'jst-rght',  '',  ' colspan="4"' );
319
+		$total_label = sprintf(__('Transaction Total %s', 'event_espresso'), '('.EE_Registry::instance()->CFG->currency->code.')');
320
+		$html .= EEH_HTML::th($total_label, '', 'jst-rght', '', ' colspan="4"');
321 321
 		// total th
322 322
 
323
-		$html .= EEH_HTML::th( EEH_Template::format_currency( $line_item->total(), false, false ), '',  'jst-rght' );
323
+		$html .= EEH_HTML::th(EEH_Template::format_currency($line_item->total(), false, false), '', 'jst-rght');
324 324
 		// end of row
325 325
 		$html .= EEH_HTML::trx();
326 326
 		return $html;
Please login to merge, or discard this patch.
core/domain/services/registration/CancelRegistrationService.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 use EventEspresso\core\domain\services\ticket\CancelTicketLineItemService;
5 5
 
6 6
 if ( ! defined('EVENT_ESPRESSO_VERSION')) {
7
-    exit('No direct script access allowed');
7
+	exit('No direct script access allowed');
8 8
 }
9 9
 
10 10
 
@@ -21,22 +21,22 @@  discard block
 block discarded – undo
21 21
 class CancelRegistrationService
22 22
 {
23 23
 
24
-    /**
25
-     * @var CancelTicketLineItemService $cancel_ticket_line_item_service
26
-     */
27
-    private $cancel_ticket_line_item_service;
24
+	/**
25
+	 * @var CancelTicketLineItemService $cancel_ticket_line_item_service
26
+	 */
27
+	private $cancel_ticket_line_item_service;
28 28
 
29 29
 
30 30
 
31
-    /**
32
-     * Command constructor
33
-     *
34
-     * @param CancelTicketLineItemService $cancel_ticket_line_item_service
35
-     */
36
-    public function __construct(CancelTicketLineItemService $cancel_ticket_line_item_service)
37
-    {
38
-        $this->cancel_ticket_line_item_service = $cancel_ticket_line_item_service;
39
-    }
31
+	/**
32
+	 * Command constructor
33
+	 *
34
+	 * @param CancelTicketLineItemService $cancel_ticket_line_item_service
35
+	 */
36
+	public function __construct(CancelTicketLineItemService $cancel_ticket_line_item_service)
37
+	{
38
+		$this->cancel_ticket_line_item_service = $cancel_ticket_line_item_service;
39
+	}
40 40
 
41 41
 
42 42
 
@@ -44,27 +44,27 @@  discard block
 block discarded – undo
44 44
 	 * @param \EE_Registration $registration
45 45
 	 * @param bool             $cancel_ticket_line_item
46 46
 	 */
47
-    public function cancelRegistrationAndTicketLineItem(\EE_Registration $registration, $cancel_ticket_line_item = true)
48
-    {
49
-        // first cancel the original line item for the registration's ticket
50
-	    if ( $cancel_ticket_line_item ) {
51
-		    $this->cancel_ticket_line_item_service->forRegistration( $registration );
52
-	    }
53
-        $this->cancelRegistrationOnly($registration);
54
-    }
55
-
56
-
57
-
58
-    /**
59
-     * @param \EE_Registration $registration
60
-     * @throws \EE_Error
61
-     */
62
-    public function cancelRegistrationOnly(\EE_Registration $registration)
63
-    {
64
-        // now cancel the registration itself
65
-        $registration->set_status(\EEM_Registration::status_id_cancelled);
66
-        $registration->save();
67
-    }
47
+	public function cancelRegistrationAndTicketLineItem(\EE_Registration $registration, $cancel_ticket_line_item = true)
48
+	{
49
+		// first cancel the original line item for the registration's ticket
50
+		if ( $cancel_ticket_line_item ) {
51
+			$this->cancel_ticket_line_item_service->forRegistration( $registration );
52
+		}
53
+		$this->cancelRegistrationOnly($registration);
54
+	}
55
+
56
+
57
+
58
+	/**
59
+	 * @param \EE_Registration $registration
60
+	 * @throws \EE_Error
61
+	 */
62
+	public function cancelRegistrationOnly(\EE_Registration $registration)
63
+	{
64
+		// now cancel the registration itself
65
+		$registration->set_status(\EEM_Registration::status_id_cancelled);
66
+		$registration->save();
67
+	}
68 68
 
69 69
 
70 70
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
     public function cancelRegistrationAndTicketLineItem(\EE_Registration $registration, $cancel_ticket_line_item = true)
48 48
     {
49 49
         // first cancel the original line item for the registration's ticket
50
-	    if ( $cancel_ticket_line_item ) {
51
-		    $this->cancel_ticket_line_item_service->forRegistration( $registration );
50
+	    if ($cancel_ticket_line_item) {
51
+		    $this->cancel_ticket_line_item_service->forRegistration($registration);
52 52
 	    }
53 53
         $this->cancelRegistrationOnly($registration);
54 54
     }
Please login to merge, or discard this patch.
admin_pages/registrations/templates/reg_admin_details_header.template.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <div style="float:right">
2
-	<?php printf( __( 'View %1$sRegistrations%4$s /  %2$sTransactions%4$s for this %3$sevent%4$s.', 'event_espresso' ), '<a href="' . $filtered_registrations_link . '">', '<a href="' . $filtered_transactions_link . '">', '<a href="' . $event_link . '">', '</a>' );?>
2
+	<?php printf(__('View %1$sRegistrations%4$s /  %2$sTransactions%4$s for this %3$sevent%4$s.', 'event_espresso'), '<a href="'.$filtered_registrations_link.'">', '<a href="'.$filtered_transactions_link.'">', '<a href="'.$event_link.'">', '</a>'); ?>
3 3
 </div>
4
-<h3 id="reg-admin-reg-details-reg-nmbr-hdr"><?php echo $previous_registration . '&nbsp;'; echo __( 'Registration # ', 'event_espresso' ) . $reg_nmbr['value']; echo '&nbsp;' . $next_registration; ?></h3>
5
-<h2 id="reg-admin-reg-details-reg-date-hdr"><?php echo $reg_datetime['value'];?></h2>
4
+<h3 id="reg-admin-reg-details-reg-nmbr-hdr"><?php echo $previous_registration.'&nbsp;'; echo __('Registration # ', 'event_espresso').$reg_nmbr['value']; echo '&nbsp;'.$next_registration; ?></h3>
5
+<h2 id="reg-admin-reg-details-reg-date-hdr"><?php echo $reg_datetime['value']; ?></h2>
6 6
 
7
-<?php if ( $registration->group_size() > 1 ) : ?>
8
-	<a id="scroll-to-other-attendees" class="scroll-to" href="#other-attendees"><?php echo __( 'Scroll to Other Registrations in the Same Transaction', 'event_espresso' );?></a>
7
+<?php if ($registration->group_size() > 1) : ?>
8
+	<a id="scroll-to-other-attendees" class="scroll-to" href="#other-attendees"><?php echo __('Scroll to Other Registrations in the Same Transaction', 'event_espresso'); ?></a>
9 9
 <?php endif; ?>
10 10
 
11
-<?php do_action( 'AHEE__reg_status_change_buttons__after_header', $REG_ID ); ?>
11
+<?php do_action('AHEE__reg_status_change_buttons__after_header', $REG_ID); ?>
12 12
 
Please login to merge, or discard this patch.
modules/single_page_checkout/EED_Single_Page_Checkout.module.php 1 patch
Spacing   +261 added lines, -261 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php use EventEspresso\core\domain\services\capabilities\PublicCapabilities;
2 2
 use EventEspresso\core\exceptions\InvalidEntityException;
3 3
 
4
-if ( ! defined( 'EVENT_ESPRESSO_VERSION')) {exit('No direct script access allowed');}
4
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {exit('No direct script access allowed'); }
5 5
 /**
6 6
  * Single Page Checkout (SPCO)
7 7
  *
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 	 * @return EED_Single_Page_Checkout
51 51
 	 */
52 52
 	public static function instance() {
53
-		add_filter( 'EED_Single_Page_Checkout__SPCO_active', '__return_true' );
54
-		return parent::get_instance( __CLASS__ );
53
+		add_filter('EED_Single_Page_Checkout__SPCO_active', '__return_true');
54
+		return parent::get_instance(__CLASS__);
55 55
 	}
56 56
 
57 57
 
@@ -96,22 +96,22 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	public static function set_hooks_admin() {
98 98
 		EED_Single_Page_Checkout::set_definitions();
99
-		if ( defined( 'DOING_AJAX' )) {
99
+		if (defined('DOING_AJAX')) {
100 100
 			// going to start an output buffer in case anything gets accidentally output that might disrupt our JSON response
101 101
 			ob_start();
102 102
 			EED_Single_Page_Checkout::load_request_handler();
103 103
 			EED_Single_Page_Checkout::load_reg_steps();
104 104
 		} else {
105 105
 			// hook into the top of pre_get_posts to set the reg step routing, which gives other modules or plugins a chance to modify the reg steps, but just before the routes get called
106
-			add_action( 'pre_get_posts', array( 'EED_Single_Page_Checkout', 'load_reg_steps' ), 1 );
106
+			add_action('pre_get_posts', array('EED_Single_Page_Checkout', 'load_reg_steps'), 1);
107 107
 		}
108 108
 		// set ajax hooks
109
-		add_action( 'wp_ajax_process_reg_step', array( 'EED_Single_Page_Checkout', 'process_reg_step' ));
110
-		add_action( 'wp_ajax_nopriv_process_reg_step', array( 'EED_Single_Page_Checkout', 'process_reg_step' ));
111
-		add_action( 'wp_ajax_display_spco_reg_step', array( 'EED_Single_Page_Checkout', 'display_reg_step' ));
112
-		add_action( 'wp_ajax_nopriv_display_spco_reg_step', array( 'EED_Single_Page_Checkout', 'display_reg_step' ));
113
-		add_action( 'wp_ajax_update_reg_step', array( 'EED_Single_Page_Checkout', 'update_reg_step' ));
114
-		add_action( 'wp_ajax_nopriv_update_reg_step', array( 'EED_Single_Page_Checkout', 'update_reg_step' ));
109
+		add_action('wp_ajax_process_reg_step', array('EED_Single_Page_Checkout', 'process_reg_step'));
110
+		add_action('wp_ajax_nopriv_process_reg_step', array('EED_Single_Page_Checkout', 'process_reg_step'));
111
+		add_action('wp_ajax_display_spco_reg_step', array('EED_Single_Page_Checkout', 'display_reg_step'));
112
+		add_action('wp_ajax_nopriv_display_spco_reg_step', array('EED_Single_Page_Checkout', 'display_reg_step'));
113
+		add_action('wp_ajax_update_reg_step', array('EED_Single_Page_Checkout', 'update_reg_step'));
114
+		add_action('wp_ajax_nopriv_update_reg_step', array('EED_Single_Page_Checkout', 'update_reg_step'));
115 115
 	}
116 116
 
117 117
 
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
 	 * @param string $ajax_action
123 123
 	 * @throws \EE_Error
124 124
 	 */
125
-	public static function process_ajax_request( $ajax_action ) {
126
-		EE_Registry::instance()->REQ->set( 'action', $ajax_action );
125
+	public static function process_ajax_request($ajax_action) {
126
+		EE_Registry::instance()->REQ->set('action', $ajax_action);
127 127
 		EED_Single_Page_Checkout::instance()->_initialize();
128 128
 	}
129 129
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 	 * @throws \EE_Error
136 136
 	 */
137 137
 	public static function display_reg_step() {
138
-		EED_Single_Page_Checkout::process_ajax_request( 'display_spco_reg_step' );
138
+		EED_Single_Page_Checkout::process_ajax_request('display_spco_reg_step');
139 139
 	}
140 140
 
141 141
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	 * @throws \EE_Error
147 147
 	 */
148 148
 	public static function process_reg_step() {
149
-		EED_Single_Page_Checkout::process_ajax_request( 'process_reg_step' );
149
+		EED_Single_Page_Checkout::process_ajax_request('process_reg_step');
150 150
 	}
151 151
 
152 152
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 * @throws \EE_Error
158 158
 	 */
159 159
 	public static function update_reg_step() {
160
-		EED_Single_Page_Checkout::process_ajax_request( 'update_reg_step' );
160
+		EED_Single_Page_Checkout::process_ajax_request('update_reg_step');
161 161
 	}
162 162
 
163 163
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	 * @throws \EE_Error
171 171
 	 */
172 172
 	public static function update_checkout() {
173
-		EED_Single_Page_Checkout::process_ajax_request( 'update_checkout' );
173
+		EED_Single_Page_Checkout::process_ajax_request('update_checkout');
174 174
 	}
175 175
 
176 176
 
@@ -183,8 +183,8 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	public static function load_request_handler() {
185 185
 		// load core Request_Handler class
186
-		if ( ! isset( EE_Registry::instance()->REQ )) {
187
-			EE_Registry::instance()->load_core( 'Request_Handler' );
186
+		if ( ! isset(EE_Registry::instance()->REQ)) {
187
+			EE_Registry::instance()->load_core('Request_Handler');
188 188
 		}
189 189
 	}
190 190
 
@@ -198,14 +198,14 @@  discard block
 block discarded – undo
198 198
 	 * @throws \EE_Error
199 199
 	 */
200 200
 	public static function set_definitions() {
201
-		define( 'SPCO_BASE_PATH', rtrim( str_replace( array( '\\', '/' ), DS, plugin_dir_path( __FILE__ )), DS ) . DS );
202
-		define( 'SPCO_CSS_URL', plugin_dir_url( __FILE__ ) . 'css' . DS );
203
-		define( 'SPCO_IMG_URL', plugin_dir_url( __FILE__ ) . 'img' . DS );
204
-		define( 'SPCO_JS_URL', plugin_dir_url( __FILE__ ) . 'js' . DS );
205
-		define( 'SPCO_INC_PATH', SPCO_BASE_PATH . 'inc' . DS );
206
-		define( 'SPCO_REG_STEPS_PATH', SPCO_BASE_PATH . 'reg_steps' . DS );
207
-		define( 'SPCO_TEMPLATES_PATH', SPCO_BASE_PATH . 'templates' . DS );
208
-		EEH_Autoloader::register_autoloaders_for_each_file_in_folder( SPCO_BASE_PATH, TRUE );
201
+		define('SPCO_BASE_PATH', rtrim(str_replace(array('\\', '/'), DS, plugin_dir_path(__FILE__)), DS).DS);
202
+		define('SPCO_CSS_URL', plugin_dir_url(__FILE__).'css'.DS);
203
+		define('SPCO_IMG_URL', plugin_dir_url(__FILE__).'img'.DS);
204
+		define('SPCO_JS_URL', plugin_dir_url(__FILE__).'js'.DS);
205
+		define('SPCO_INC_PATH', SPCO_BASE_PATH.'inc'.DS);
206
+		define('SPCO_REG_STEPS_PATH', SPCO_BASE_PATH.'reg_steps'.DS);
207
+		define('SPCO_TEMPLATES_PATH', SPCO_BASE_PATH.'templates'.DS);
208
+		EEH_Autoloader::register_autoloaders_for_each_file_in_folder(SPCO_BASE_PATH, TRUE);
209 209
 	}
210 210
 
211 211
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	public static function load_reg_steps() {
222 222
 		static $reg_steps_loaded = FALSE;
223
-		if ( $reg_steps_loaded ) {
223
+		if ($reg_steps_loaded) {
224 224
 			return;
225 225
 		}
226 226
 		// filter list of reg_steps
@@ -229,24 +229,24 @@  discard block
 block discarded – undo
229 229
 			EED_Single_Page_Checkout::get_reg_steps()
230 230
 		);
231 231
 		// sort by key (order)
232
-		ksort( $reg_steps_to_load );
232
+		ksort($reg_steps_to_load);
233 233
 		// loop through folders
234
-		foreach ( $reg_steps_to_load as $order => $reg_step ) {
234
+		foreach ($reg_steps_to_load as $order => $reg_step) {
235 235
 			// we need a
236
-			if ( isset( $reg_step['file_path'], $reg_step['class_name'], $reg_step['slug'] )) {
236
+			if (isset($reg_step['file_path'], $reg_step['class_name'], $reg_step['slug'])) {
237 237
 				// copy over to the reg_steps_array
238
-				EED_Single_Page_Checkout::$_reg_steps_array[ $order ] = $reg_step;
238
+				EED_Single_Page_Checkout::$_reg_steps_array[$order] = $reg_step;
239 239
 				// register custom key route for each reg step
240 240
 				// ie: step=>"slug" - this is the entire reason we load the reg steps array now
241
-				EE_Config::register_route( $reg_step['slug'], 'EED_Single_Page_Checkout', 'run', 'step' );
241
+				EE_Config::register_route($reg_step['slug'], 'EED_Single_Page_Checkout', 'run', 'step');
242 242
 				// add AJAX or other hooks
243
-				if ( isset( $reg_step['has_hooks'] ) && $reg_step['has_hooks'] ) {
243
+				if (isset($reg_step['has_hooks']) && $reg_step['has_hooks']) {
244 244
 					// setup autoloaders if necessary
245
-					if ( ! class_exists( $reg_step['class_name'] )) {
246
-						EEH_Autoloader::register_autoloaders_for_each_file_in_folder( $reg_step['file_path'], TRUE );
245
+					if ( ! class_exists($reg_step['class_name'])) {
246
+						EEH_Autoloader::register_autoloaders_for_each_file_in_folder($reg_step['file_path'], TRUE);
247 247
 					}
248
-					if ( is_callable( $reg_step['class_name'], 'set_hooks' )) {
249
-						call_user_func( array( $reg_step['class_name'], 'set_hooks' ));
248
+					if (is_callable($reg_step['class_name'], 'set_hooks')) {
249
+						call_user_func(array($reg_step['class_name'], 'set_hooks'));
250 250
 					}
251 251
 				}
252 252
 			}
@@ -265,28 +265,28 @@  discard block
 block discarded – undo
265 265
 	 */
266 266
 	public static function get_reg_steps() {
267 267
 		$reg_steps = EE_Registry::instance()->CFG->registration->reg_steps;
268
-		if ( empty( $reg_steps )) {
268
+		if (empty($reg_steps)) {
269 269
 			$reg_steps = array(
270 270
 				10 => array(
271
-					'file_path' => SPCO_REG_STEPS_PATH . 'attendee_information',
271
+					'file_path' => SPCO_REG_STEPS_PATH.'attendee_information',
272 272
 					'class_name' => 'EE_SPCO_Reg_Step_Attendee_Information',
273 273
 					'slug' => 'attendee_information',
274 274
 					'has_hooks' => FALSE
275 275
 				),
276 276
 				20 => array(
277
-					'file_path' => SPCO_REG_STEPS_PATH . 'registration_confirmation',
277
+					'file_path' => SPCO_REG_STEPS_PATH.'registration_confirmation',
278 278
 					'class_name' => 'EE_SPCO_Reg_Step_Registration_Confirmation',
279 279
 					'slug' => 'registration_confirmation',
280 280
 					'has_hooks' => FALSE
281 281
 				),
282 282
 				30 => array(
283
-					'file_path' => SPCO_REG_STEPS_PATH . 'payment_options',
283
+					'file_path' => SPCO_REG_STEPS_PATH.'payment_options',
284 284
 					'class_name' => 'EE_SPCO_Reg_Step_Payment_Options',
285 285
 					'slug' => 'payment_options',
286 286
 					'has_hooks' => TRUE
287 287
 				),
288 288
 				999 => array(
289
-					'file_path' => SPCO_REG_STEPS_PATH . 'finalize_registration',
289
+					'file_path' => SPCO_REG_STEPS_PATH.'finalize_registration',
290 290
 					'class_name' => 'EE_SPCO_Reg_Step_Finalize_Registration',
291 291
 					'slug' => 'finalize_registration',
292 292
 					'has_hooks' => FALSE
@@ -307,9 +307,9 @@  discard block
 block discarded – undo
307 307
 	 */
308 308
 	public static function registration_checkout_for_admin() {
309 309
 		EED_Single_Page_Checkout::load_reg_steps();
310
-		EE_Registry::instance()->REQ->set( 'step', 'attendee_information' );
311
-		EE_Registry::instance()->REQ->set( 'action', 'display_spco_reg_step' );
312
-		EE_Registry::instance()->REQ->set( 'process_form_submission', false );
310
+		EE_Registry::instance()->REQ->set('step', 'attendee_information');
311
+		EE_Registry::instance()->REQ->set('action', 'display_spco_reg_step');
312
+		EE_Registry::instance()->REQ->set('process_form_submission', false);
313 313
 		EED_Single_Page_Checkout::instance()->_initialize();
314 314
 		EED_Single_Page_Checkout::instance()->_display_spco_reg_form();
315 315
 		return EE_Registry::instance()->REQ->get_output();
@@ -326,15 +326,15 @@  discard block
 block discarded – undo
326 326
 	 */
327 327
 	public static function process_registration_from_admin() {
328 328
 		EED_Single_Page_Checkout::load_reg_steps();
329
-		EE_Registry::instance()->REQ->set( 'step', 'attendee_information' );
330
-		EE_Registry::instance()->REQ->set( 'action', 'process_reg_step' );
331
-		EE_Registry::instance()->REQ->set( 'process_form_submission', true );
329
+		EE_Registry::instance()->REQ->set('step', 'attendee_information');
330
+		EE_Registry::instance()->REQ->set('action', 'process_reg_step');
331
+		EE_Registry::instance()->REQ->set('process_form_submission', true);
332 332
 		EED_Single_Page_Checkout::instance()->_initialize();
333
-		if ( EED_Single_Page_Checkout::instance()->checkout->current_step->completed() ) {
334
-			$final_reg_step = end( EED_Single_Page_Checkout::instance()->checkout->reg_steps );
335
-			if ( $final_reg_step instanceof EE_SPCO_Reg_Step_Finalize_Registration ) {
336
-				EED_Single_Page_Checkout::instance()->checkout->set_reg_step_initiated( $final_reg_step );
337
-				if ( $final_reg_step->process_reg_step() ) {
333
+		if (EED_Single_Page_Checkout::instance()->checkout->current_step->completed()) {
334
+			$final_reg_step = end(EED_Single_Page_Checkout::instance()->checkout->reg_steps);
335
+			if ($final_reg_step instanceof EE_SPCO_Reg_Step_Finalize_Registration) {
336
+				EED_Single_Page_Checkout::instance()->checkout->set_reg_step_initiated($final_reg_step);
337
+				if ($final_reg_step->process_reg_step()) {
338 338
 					$final_reg_step->set_completed();
339 339
 					EED_Single_Page_Checkout::instance()->checkout->update_txn_reg_steps_array();
340 340
 					return EED_Single_Page_Checkout::instance()->checkout->transaction;
@@ -354,11 +354,11 @@  discard block
 block discarded – undo
354 354
 	 * @return    void
355 355
 	 * @throws \EE_Error
356 356
 	 */
357
-	public function run( $WP_Query ) {
357
+	public function run($WP_Query) {
358 358
 		if (
359 359
 			$WP_Query instanceof WP_Query
360 360
 			&& $WP_Query->is_main_query()
361
-			&& apply_filters( 'FHEE__EED_Single_Page_Checkout__run', true )
361
+			&& apply_filters('FHEE__EED_Single_Page_Checkout__run', true)
362 362
 		) {
363 363
 			$this->_initialize();
364 364
 		}
@@ -374,8 +374,8 @@  discard block
 block discarded – undo
374 374
 	 * @return    void
375 375
 	 * @throws \EE_Error
376 376
 	 */
377
-	public static function init( $WP_Query ) {
378
-		EED_Single_Page_Checkout::instance()->run( $WP_Query );
377
+	public static function init($WP_Query) {
378
+		EED_Single_Page_Checkout::instance()->run($WP_Query);
379 379
 	}
380 380
 
381 381
 
@@ -389,34 +389,34 @@  discard block
 block discarded – undo
389 389
 	 */
390 390
 	private function _initialize() {
391 391
 		// ensure SPCO doesn't run twice
392
-		if ( EED_Single_Page_Checkout::$_initialized ) {
392
+		if (EED_Single_Page_Checkout::$_initialized) {
393 393
 			return;
394 394
 		}
395 395
 		try {
396 396
 			// setup the EE_Checkout object
397 397
 			$this->checkout = $this->_initialize_checkout();
398 398
 			// filter checkout
399
-			$this->checkout = apply_filters( 'FHEE__EED_Single_Page_Checkout___initialize__checkout', $this->checkout );
399
+			$this->checkout = apply_filters('FHEE__EED_Single_Page_Checkout___initialize__checkout', $this->checkout);
400 400
 			// get the $_GET
401 401
 			$this->_get_request_vars();
402 402
 			// filter continue_reg
403
-			$this->checkout->continue_reg = apply_filters( 'FHEE__EED_Single_Page_Checkout__init___continue_reg', TRUE, $this->checkout );
403
+			$this->checkout->continue_reg = apply_filters('FHEE__EED_Single_Page_Checkout__init___continue_reg', TRUE, $this->checkout);
404 404
 			// load the reg steps array
405
-			if ( ! $this->_load_and_instantiate_reg_steps() ) {
405
+			if ( ! $this->_load_and_instantiate_reg_steps()) {
406 406
 				EED_Single_Page_Checkout::$_initialized = true;
407 407
 				return;
408 408
 			}
409 409
 			// set the current step
410
-			$this->checkout->set_current_step( $this->checkout->step );
410
+			$this->checkout->set_current_step($this->checkout->step);
411 411
 			// and the next step
412 412
 			$this->checkout->set_next_step();
413 413
 			// was there already a valid transaction in the checkout from the session ?
414
-			if ( ! $this->checkout->transaction instanceof EE_Transaction ) {
414
+			if ( ! $this->checkout->transaction instanceof EE_Transaction) {
415 415
 				// get transaction from db or session
416 416
 				$this->checkout->transaction = $this->checkout->reg_url_link && ! is_admin()
417 417
 					? $this->_get_transaction_and_cart_for_previous_visit()
418 418
 					: $this->_get_cart_for_current_session_and_setup_new_transaction();
419
-				if ( ! $this->checkout->transaction instanceof EE_Transaction ) {
419
+				if ( ! $this->checkout->transaction instanceof EE_Transaction) {
420 420
 					// add some style and make it dance
421 421
 					$this->checkout->transaction = EE_Transaction::new_instance();
422 422
 					$this->add_styles_and_scripts();
@@ -424,10 +424,10 @@  discard block
 block discarded – undo
424 424
 					return;
425 425
 				}
426 426
 				// and the registrations for the transaction
427
-				$this->_get_registrations( $this->checkout->transaction );
427
+				$this->_get_registrations($this->checkout->transaction);
428 428
 			}
429 429
 			// verify that everything has been setup correctly
430
-			if ( ! $this->_final_verifications() ) {
430
+			if ( ! $this->_final_verifications()) {
431 431
 				EED_Single_Page_Checkout::$_initialized = true;
432 432
 				return;
433 433
 			}
@@ -452,9 +452,9 @@  discard block
 block discarded – undo
452 452
 			// set no cache headers and constants
453 453
 			EE_System::do_not_cache();
454 454
 			// add anchor
455
-			add_action( 'loop_start', array( $this, 'set_checkout_anchor' ), 1 );
456
-		} catch ( Exception $e ) {
457
-			EE_Error::add_error( $e->getMessage(), __FILE__, __FUNCTION__, __LINE__ );
455
+			add_action('loop_start', array($this, 'set_checkout_anchor'), 1);
456
+		} catch (Exception $e) {
457
+			EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
458 458
 		}
459 459
 	}
460 460
 
@@ -472,20 +472,20 @@  discard block
 block discarded – undo
472 472
 		// look in session for existing checkout
473 473
 		$checkout = EE_Registry::instance()->SSN->checkout();
474 474
 		// verify
475
-		if ( ! $checkout instanceof EE_Checkout ) {
475
+		if ( ! $checkout instanceof EE_Checkout) {
476 476
 			// instantiate EE_Checkout object for handling the properties of the current checkout process
477
-			$checkout = EE_Registry::instance()->load_file( SPCO_INC_PATH, 'EE_Checkout', 'class', array(), FALSE  );
477
+			$checkout = EE_Registry::instance()->load_file(SPCO_INC_PATH, 'EE_Checkout', 'class', array(), FALSE);
478 478
 		} else {
479
-			if ( $checkout->current_step->is_final_step() && $checkout->exit_spco() === true )  {
479
+			if ($checkout->current_step->is_final_step() && $checkout->exit_spco() === true) {
480 480
 				$this->unlock_transaction();
481
-				wp_safe_redirect( $checkout->redirect_url );
481
+				wp_safe_redirect($checkout->redirect_url);
482 482
 				exit();
483 483
 			}
484 484
 		}
485
-		$checkout = apply_filters( 'FHEE__EED_Single_Page_Checkout___initialize_checkout__checkout', $checkout );
485
+		$checkout = apply_filters('FHEE__EED_Single_Page_Checkout___initialize_checkout__checkout', $checkout);
486 486
 		// verify again
487
-		if ( ! $checkout instanceof EE_Checkout ) {
488
-			throw new EE_Error( __( 'The EE_Checkout class could not be loaded.', 'event_espresso' ) );
487
+		if ( ! $checkout instanceof EE_Checkout) {
488
+			throw new EE_Error(__('The EE_Checkout class could not be loaded.', 'event_espresso'));
489 489
 		}
490 490
 		// reset anything that needs a clean slate for each request
491 491
 		$checkout->reset_for_current_request();
@@ -505,24 +505,24 @@  discard block
 block discarded – undo
505 505
 		// load classes
506 506
 		EED_Single_Page_Checkout::load_request_handler();
507 507
 		//make sure this request is marked as belonging to EE
508
-		EE_Registry::instance()->REQ->set_espresso_page( TRUE );
508
+		EE_Registry::instance()->REQ->set_espresso_page(TRUE);
509 509
 		// which step is being requested ?
510
-		$this->checkout->step = EE_Registry::instance()->REQ->get( 'step', $this->_get_first_step() );
510
+		$this->checkout->step = EE_Registry::instance()->REQ->get('step', $this->_get_first_step());
511 511
 		// which step is being edited ?
512
-		$this->checkout->edit_step = EE_Registry::instance()->REQ->get( 'edit_step', '' );
512
+		$this->checkout->edit_step = EE_Registry::instance()->REQ->get('edit_step', '');
513 513
 		// and what we're doing on the current step
514
-		$this->checkout->action = EE_Registry::instance()->REQ->get( 'action', 'display_spco_reg_step' );
514
+		$this->checkout->action = EE_Registry::instance()->REQ->get('action', 'display_spco_reg_step');
515 515
 		// returning to edit ?
516
-		$this->checkout->reg_url_link = EE_Registry::instance()->REQ->get( 'e_reg_url_link', '' );
516
+		$this->checkout->reg_url_link = EE_Registry::instance()->REQ->get('e_reg_url_link', '');
517 517
 		// or some other kind of revisit ?
518
-		$this->checkout->revisit = EE_Registry::instance()->REQ->get( 'revisit', FALSE );
518
+		$this->checkout->revisit = EE_Registry::instance()->REQ->get('revisit', FALSE);
519 519
 		// and whether or not to generate a reg form for this request
520
-		$this->checkout->generate_reg_form = EE_Registry::instance()->REQ->get( 'generate_reg_form', TRUE ); 		// TRUE 	FALSE
520
+		$this->checkout->generate_reg_form = EE_Registry::instance()->REQ->get('generate_reg_form', TRUE); // TRUE 	FALSE
521 521
 		// and whether or not to process a reg form submission for this request
522
-		$this->checkout->process_form_submission = EE_Registry::instance()->REQ->get( 'process_form_submission', FALSE ); 		// TRUE 	FALSE
522
+		$this->checkout->process_form_submission = EE_Registry::instance()->REQ->get('process_form_submission', FALSE); // TRUE 	FALSE
523 523
 		$this->checkout->process_form_submission = $this->checkout->action !== 'display_spco_reg_step'
524 524
 			? $this->checkout->process_form_submission
525
-			: FALSE; 		// TRUE 	FALSE
525
+			: FALSE; // TRUE 	FALSE
526 526
 		// $this->_display_request_vars();
527 527
 	}
528 528
 
@@ -535,17 +535,17 @@  discard block
 block discarded – undo
535 535
 	 * @return    void
536 536
 	 */
537 537
 	protected function _display_request_vars() {
538
-		if ( ! WP_DEBUG ) {
538
+		if ( ! WP_DEBUG) {
539 539
 			return;
540 540
 		}
541
-		EEH_Debug_Tools::printr( $_REQUEST, '$_REQUEST', __FILE__, __LINE__ );
542
-		EEH_Debug_Tools::printr( $this->checkout->step, '$this->checkout->step', __FILE__, __LINE__ );
543
-		EEH_Debug_Tools::printr( $this->checkout->edit_step, '$this->checkout->edit_step', __FILE__, __LINE__ );
544
-		EEH_Debug_Tools::printr( $this->checkout->action, '$this->checkout->action', __FILE__, __LINE__ );
545
-		EEH_Debug_Tools::printr( $this->checkout->reg_url_link, '$this->checkout->reg_url_link', __FILE__, __LINE__ );
546
-		EEH_Debug_Tools::printr( $this->checkout->revisit, '$this->checkout->revisit', __FILE__, __LINE__ );
547
-		EEH_Debug_Tools::printr( $this->checkout->generate_reg_form, '$this->checkout->generate_reg_form', __FILE__, __LINE__ );
548
-		EEH_Debug_Tools::printr( $this->checkout->process_form_submission, '$this->checkout->process_form_submission', __FILE__, __LINE__ );
541
+		EEH_Debug_Tools::printr($_REQUEST, '$_REQUEST', __FILE__, __LINE__);
542
+		EEH_Debug_Tools::printr($this->checkout->step, '$this->checkout->step', __FILE__, __LINE__);
543
+		EEH_Debug_Tools::printr($this->checkout->edit_step, '$this->checkout->edit_step', __FILE__, __LINE__);
544
+		EEH_Debug_Tools::printr($this->checkout->action, '$this->checkout->action', __FILE__, __LINE__);
545
+		EEH_Debug_Tools::printr($this->checkout->reg_url_link, '$this->checkout->reg_url_link', __FILE__, __LINE__);
546
+		EEH_Debug_Tools::printr($this->checkout->revisit, '$this->checkout->revisit', __FILE__, __LINE__);
547
+		EEH_Debug_Tools::printr($this->checkout->generate_reg_form, '$this->checkout->generate_reg_form', __FILE__, __LINE__);
548
+		EEH_Debug_Tools::printr($this->checkout->process_form_submission, '$this->checkout->process_form_submission', __FILE__, __LINE__);
549 549
 	}
550 550
 
551 551
 
@@ -559,8 +559,8 @@  discard block
 block discarded – undo
559 559
 	 * @return    array
560 560
 	 */
561 561
 	private function _get_first_step() {
562
-		$first_step = reset( EED_Single_Page_Checkout::$_reg_steps_array );
563
-		return isset( $first_step['slug'] ) ? $first_step['slug'] : 'attendee_information';
562
+		$first_step = reset(EED_Single_Page_Checkout::$_reg_steps_array);
563
+		return isset($first_step['slug']) ? $first_step['slug'] : 'attendee_information';
564 564
 	}
565 565
 
566 566
 
@@ -576,27 +576,27 @@  discard block
 block discarded – undo
576 576
 	private function _load_and_instantiate_reg_steps() {
577 577
 		// have reg_steps already been instantiated ?
578 578
 		if (
579
-			empty( $this->checkout->reg_steps ) ||
580
-			apply_filters( 'FHEE__Single_Page_Checkout__load_reg_steps__reload_reg_steps', false, $this->checkout )
579
+			empty($this->checkout->reg_steps) ||
580
+			apply_filters('FHEE__Single_Page_Checkout__load_reg_steps__reload_reg_steps', false, $this->checkout)
581 581
 		) {
582 582
 			// if not, then loop through raw reg steps array
583
-			foreach ( EED_Single_Page_Checkout::$_reg_steps_array as $order => $reg_step ) {
584
-				if ( ! $this->_load_and_instantiate_reg_step( $reg_step, $order )) {
583
+			foreach (EED_Single_Page_Checkout::$_reg_steps_array as $order => $reg_step) {
584
+				if ( ! $this->_load_and_instantiate_reg_step($reg_step, $order)) {
585 585
 					return false;
586 586
 				}
587 587
 			}
588 588
 			EE_Registry::instance()->CFG->registration->skip_reg_confirmation = TRUE;
589 589
 			EE_Registry::instance()->CFG->registration->reg_confirmation_last = TRUE;
590 590
 			// skip the registration_confirmation page ?
591
-			if ( EE_Registry::instance()->CFG->registration->skip_reg_confirmation ) {
591
+			if (EE_Registry::instance()->CFG->registration->skip_reg_confirmation) {
592 592
 				// just remove it from the reg steps array
593
-				$this->checkout->remove_reg_step( 'registration_confirmation', false );
593
+				$this->checkout->remove_reg_step('registration_confirmation', false);
594 594
 			} else if (
595
-				isset( $this->checkout->reg_steps['registration_confirmation'] )
595
+				isset($this->checkout->reg_steps['registration_confirmation'])
596 596
 				&& EE_Registry::instance()->CFG->registration->reg_confirmation_last
597 597
 			) {
598 598
 				// set the order to something big like 100
599
-				$this->checkout->set_reg_step_order( 'registration_confirmation', 100 );
599
+				$this->checkout->set_reg_step_order('registration_confirmation', 100);
600 600
 			}
601 601
 			// filter the array for good luck
602 602
 			$this->checkout->reg_steps = apply_filters(
@@ -606,13 +606,13 @@  discard block
 block discarded – undo
606 606
 			// finally re-sort based on the reg step class order properties
607 607
 			$this->checkout->sort_reg_steps();
608 608
 		} else {
609
-			foreach ( $this->checkout->reg_steps as $reg_step ) {
609
+			foreach ($this->checkout->reg_steps as $reg_step) {
610 610
 				// set all current step stati to FALSE
611
-				$reg_step->set_is_current_step( FALSE );
611
+				$reg_step->set_is_current_step(FALSE);
612 612
 			}
613 613
 		}
614
-		if ( empty( $this->checkout->reg_steps )) {
615
-			EE_Error::add_error( __( 'No Reg Steps were loaded..', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__);
614
+		if (empty($this->checkout->reg_steps)) {
615
+			EE_Error::add_error(__('No Reg Steps were loaded..', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
616 616
 			return false;
617 617
 		}
618 618
 			// make reg step details available to JS
@@ -630,10 +630,10 @@  discard block
 block discarded – undo
630 630
 	 * @param int   $order
631 631
 	 * @return bool
632 632
 	 */
633
-	private function _load_and_instantiate_reg_step( $reg_step = array(), $order = 0 ) {
633
+	private function _load_and_instantiate_reg_step($reg_step = array(), $order = 0) {
634 634
 
635 635
 		// we need a file_path, class_name, and slug to add a reg step
636
-		if ( isset( $reg_step['file_path'], $reg_step['class_name'], $reg_step['slug'] )) {
636
+		if (isset($reg_step['file_path'], $reg_step['class_name'], $reg_step['slug'])) {
637 637
 			// if editing a specific step, but this is NOT that step... (and it's not the 'finalize_registration' step)
638 638
 			if (
639 639
 				$this->checkout->reg_url_link
@@ -651,26 +651,26 @@  discard block
 block discarded – undo
651 651
 				FALSE
652 652
 			);
653 653
 			// did we gets the goods ?
654
-			if ( $reg_step_obj instanceof EE_SPCO_Reg_Step ) {
654
+			if ($reg_step_obj instanceof EE_SPCO_Reg_Step) {
655 655
 				// set reg step order based on config
656
-				$reg_step_obj->set_order( $order );
656
+				$reg_step_obj->set_order($order);
657 657
 				// add instantiated reg step object to the master reg steps array
658
-				$this->checkout->add_reg_step( $reg_step_obj );
658
+				$this->checkout->add_reg_step($reg_step_obj);
659 659
 			} else {
660 660
 				EE_Error::add_error(
661
-					__( 'The current step could not be set.', 'event_espresso' ),
661
+					__('The current step could not be set.', 'event_espresso'),
662 662
 					__FILE__, __FUNCTION__, __LINE__
663 663
 				);
664 664
 				return false;
665 665
 			}
666 666
 		} else {
667
-			if ( WP_DEBUG ) {
667
+			if (WP_DEBUG) {
668 668
 				EE_Error::add_error(
669 669
 					sprintf(
670
-						__( 'A registration step could not be loaded. One or more of the following data points is invalid:%4$s%5$sFile Path: %1$s%6$s%5$sClass Name: %2$s%6$s%5$sSlug: %3$s%6$s%7$s', 'event_espresso' ),
671
-						isset( $reg_step['file_path'] ) ? $reg_step['file_path'] : '',
672
-						isset( $reg_step['class_name'] ) ? $reg_step['class_name'] : '',
673
-						isset( $reg_step['slug'] ) ? $reg_step['slug'] : '',
670
+						__('A registration step could not be loaded. One or more of the following data points is invalid:%4$s%5$sFile Path: %1$s%6$s%5$sClass Name: %2$s%6$s%5$sSlug: %3$s%6$s%7$s', 'event_espresso'),
671
+						isset($reg_step['file_path']) ? $reg_step['file_path'] : '',
672
+						isset($reg_step['class_name']) ? $reg_step['class_name'] : '',
673
+						isset($reg_step['slug']) ? $reg_step['slug'] : '',
674 674
 						'<ul>',
675 675
 						'<li>',
676 676
 						'</li>',
@@ -694,16 +694,16 @@  discard block
 block discarded – undo
694 694
 	 */
695 695
 	private function _get_transaction_and_cart_for_previous_visit() {
696 696
 		/** @var $TXN_model EEM_Transaction */
697
-		$TXN_model = EE_Registry::instance()->load_model( 'Transaction' );
697
+		$TXN_model = EE_Registry::instance()->load_model('Transaction');
698 698
 		// because the reg_url_link is present in the request, this is a return visit to SPCO, so we'll get the transaction data from the db
699
-		$transaction = $TXN_model->get_transaction_from_reg_url_link( $this->checkout->reg_url_link );
699
+		$transaction = $TXN_model->get_transaction_from_reg_url_link($this->checkout->reg_url_link);
700 700
 		// verify transaction
701
-		if ( $transaction instanceof EE_Transaction ) {
701
+		if ($transaction instanceof EE_Transaction) {
702 702
 			// and get the cart that was used for that transaction
703
-			$this->checkout->cart = $this->_get_cart_for_transaction( $transaction );
703
+			$this->checkout->cart = $this->_get_cart_for_transaction($transaction);
704 704
 			return $transaction;
705 705
 		} else {
706
-			EE_Error::add_error( __( 'Your Registration and Transaction information could not be retrieved from the db.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__);
706
+			EE_Error::add_error(__('Your Registration and Transaction information could not be retrieved from the db.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
707 707
 			return NULL;
708 708
 		}
709 709
 	}
@@ -717,8 +717,8 @@  discard block
 block discarded – undo
717 717
 	 * @param EE_Transaction $transaction
718 718
 	 * @return EE_Cart
719 719
 	 */
720
-	private function _get_cart_for_transaction( $transaction ) {
721
-		return $this->checkout->get_cart_for_transaction( $transaction );
720
+	private function _get_cart_for_transaction($transaction) {
721
+		return $this->checkout->get_cart_for_transaction($transaction);
722 722
 	}
723 723
 
724 724
 
@@ -730,8 +730,8 @@  discard block
 block discarded – undo
730 730
 	 * @param EE_Transaction $transaction
731 731
 	 * @return EE_Cart
732 732
 	 */
733
-	public function get_cart_for_transaction( EE_Transaction $transaction ) {
734
-		return $this->checkout->get_cart_for_transaction( $transaction );
733
+	public function get_cart_for_transaction(EE_Transaction $transaction) {
734
+		return $this->checkout->get_cart_for_transaction($transaction);
735 735
 	}
736 736
 
737 737
 
@@ -747,17 +747,17 @@  discard block
 block discarded – undo
747 747
 	private function _get_cart_for_current_session_and_setup_new_transaction() {
748 748
 		//  if there's no transaction, then this is the FIRST visit to SPCO
749 749
 		// so load up the cart ( passing nothing for the TXN because it doesn't exist yet )
750
-		$this->checkout->cart = $this->_get_cart_for_transaction( NULL );
750
+		$this->checkout->cart = $this->_get_cart_for_transaction(NULL);
751 751
 		// and then create a new transaction
752 752
 		$transaction = $this->_initialize_transaction();
753 753
 		// verify transaction
754
-		if ( $transaction instanceof EE_Transaction ) {
754
+		if ($transaction instanceof EE_Transaction) {
755 755
 			// save it so that we have an ID for other objects to use
756 756
 			$transaction->save();
757 757
 			// and save TXN data to the cart
758
-			$this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn( $transaction->ID() );
758
+			$this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn($transaction->ID());
759 759
 		} else {
760
-			EE_Error::add_error( __( 'A Valid Transaction could not be initialized.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
760
+			EE_Error::add_error(__('A Valid Transaction could not be initialized.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
761 761
 		}
762 762
 		return $transaction;
763 763
 	}
@@ -785,8 +785,8 @@  discard block
 block discarded – undo
785 785
 					'STS_ID'        => EEM_Transaction::failed_status_code,
786 786
 				)
787 787
 			);
788
-		} catch( Exception $e ) {
789
-			EE_Error::add_error( $e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
788
+		} catch (Exception $e) {
789
+			EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__);
790 790
 		}
791 791
 		return NULL;
792 792
 	}
@@ -801,38 +801,38 @@  discard block
 block discarded – undo
801 801
 	 * @return EE_Cart
802 802
 	 * @throws \EE_Error
803 803
 	 */
804
-	private function _get_registrations( EE_Transaction $transaction ) {
804
+	private function _get_registrations(EE_Transaction $transaction) {
805 805
 		// first step: grab the registrants  { : o
806
-		$registrations = $transaction->registrations( $this->checkout->reg_cache_where_params, true );
806
+		$registrations = $transaction->registrations($this->checkout->reg_cache_where_params, true);
807 807
 		// verify registrations have been set
808
-		if ( empty( $registrations )) {
808
+		if (empty($registrations)) {
809 809
 			// if no cached registrations, then check the db
810
-			$registrations = $transaction->registrations( $this->checkout->reg_cache_where_params, false );
810
+			$registrations = $transaction->registrations($this->checkout->reg_cache_where_params, false);
811 811
 			// still nothing ? well as long as this isn't a revisit
812
-			if ( empty( $registrations ) && ! $this->checkout->revisit ) {
812
+			if (empty($registrations) && ! $this->checkout->revisit) {
813 813
 				// generate new registrations from scratch
814
-				$registrations = $this->_initialize_registrations( $transaction );
814
+				$registrations = $this->_initialize_registrations($transaction);
815 815
 			}
816 816
 		}
817 817
 		// sort by their original registration order
818
-		usort( $registrations, array( 'EED_Single_Page_Checkout', 'sort_registrations_by_REG_count' ));
818
+		usort($registrations, array('EED_Single_Page_Checkout', 'sort_registrations_by_REG_count'));
819 819
 		// then loop thru the array
820
-		foreach ( $registrations as $registration ) {
820
+		foreach ($registrations as $registration) {
821 821
 			// verify each registration
822
-			if ( $registration instanceof EE_Registration ) {
822
+			if ($registration instanceof EE_Registration) {
823 823
 				// we display all attendee info for the primary registrant
824
-				if ( $this->checkout->reg_url_link === $registration->reg_url_link()
824
+				if ($this->checkout->reg_url_link === $registration->reg_url_link()
825 825
 				     && $registration->is_primary_registrant()
826 826
 				) {
827 827
 					$this->checkout->primary_revisit = true;
828 828
 					break;
829
-				} else if ( $this->checkout->revisit
829
+				} else if ($this->checkout->revisit
830 830
 				            && $this->checkout->reg_url_link !== $registration->reg_url_link()
831 831
 				) {
832 832
 					// but hide info if it doesn't belong to you
833
-					$transaction->clear_cache( 'Registration', $registration->ID() );
833
+					$transaction->clear_cache('Registration', $registration->ID());
834 834
 				}
835
-				$this->checkout->set_reg_status_updated( $registration->ID(), false );
835
+				$this->checkout->set_reg_status_updated($registration->ID(), false);
836 836
 			}
837 837
 		}
838 838
 	}
@@ -847,17 +847,17 @@  discard block
 block discarded – undo
847 847
 	 * @return    array
848 848
 	 * @throws \EE_Error
849 849
 	 */
850
-	private function _initialize_registrations( EE_Transaction $transaction ) {
850
+	private function _initialize_registrations(EE_Transaction $transaction) {
851 851
 		$att_nmbr = 0;
852 852
 		$registrations = array();
853
-		if ( $transaction instanceof EE_Transaction ) {
853
+		if ($transaction instanceof EE_Transaction) {
854 854
 			/** @type EE_Registration_Processor $registration_processor */
855
-			$registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' );
855
+			$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
856 856
 			$this->checkout->total_ticket_count = $this->checkout->cart->all_ticket_quantity_count();
857 857
 			// now let's add the cart items to the $transaction
858
-			foreach ( $this->checkout->cart->get_tickets() as $line_item ) {
858
+			foreach ($this->checkout->cart->get_tickets() as $line_item) {
859 859
 				//do the following for each ticket of this type they selected
860
-				for ( $x = 1; $x <= $line_item->quantity(); $x++ ) {
860
+				for ($x = 1; $x <= $line_item->quantity(); $x++) {
861 861
 					$att_nmbr++;
862 862
                     /** @var EventEspresso\core\services\commands\registration\CreateRegistrationCommand $CreateRegistrationCommand */
863 863
                     $CreateRegistrationCommand = EE_Registry::instance()
@@ -873,17 +873,17 @@  discard block
 block discarded – undo
873 873
                     // override capabilities for frontend registrations
874 874
                     if ( ! is_admin()) {
875 875
                         $CreateRegistrationCommand->setCapCheck(
876
-	                        new PublicCapabilities( '', 'create_new_registration' )
876
+	                        new PublicCapabilities('', 'create_new_registration')
877 877
                         );
878 878
                     }
879
-					$registration = EE_Registry::instance()->BUS->execute( $CreateRegistrationCommand );
880
-					if ( ! $registration instanceof EE_Registration ) {
881
-						throw new InvalidEntityException( $registration, 'EE_Registration' );
879
+					$registration = EE_Registry::instance()->BUS->execute($CreateRegistrationCommand);
880
+					if ( ! $registration instanceof EE_Registration) {
881
+						throw new InvalidEntityException($registration, 'EE_Registration');
882 882
 					}
883
-					$registrations[ $registration->ID() ] = $registration;
883
+					$registrations[$registration->ID()] = $registration;
884 884
 				}
885 885
 			}
886
-			$registration_processor->fix_reg_final_price_rounding_issue( $transaction );
886
+			$registration_processor->fix_reg_final_price_rounding_issue($transaction);
887 887
 		}
888 888
 		return $registrations;
889 889
 	}
@@ -898,12 +898,12 @@  discard block
 block discarded – undo
898 898
 	 * @param EE_Registration $reg_B
899 899
 	 * @return int
900 900
 	 */
901
-	public static function sort_registrations_by_REG_count( EE_Registration $reg_A, EE_Registration $reg_B ) {
901
+	public static function sort_registrations_by_REG_count(EE_Registration $reg_A, EE_Registration $reg_B) {
902 902
 		// this shouldn't ever happen within the same TXN, but oh well
903
-		if ( $reg_A->count() === $reg_B->count() ) {
903
+		if ($reg_A->count() === $reg_B->count()) {
904 904
 			return 0;
905 905
 		}
906
-		return ( $reg_A->count() > $reg_B->count() ) ? 1 : -1;
906
+		return ($reg_A->count() > $reg_B->count()) ? 1 : -1;
907 907
 	}
908 908
 
909 909
 
@@ -918,21 +918,21 @@  discard block
 block discarded – undo
918 918
 	 */
919 919
 	private function _final_verifications() {
920 920
 		// filter checkout
921
-		$this->checkout = apply_filters( 'FHEE__EED_Single_Page_Checkout___final_verifications__checkout', $this->checkout );
921
+		$this->checkout = apply_filters('FHEE__EED_Single_Page_Checkout___final_verifications__checkout', $this->checkout);
922 922
 		//verify that current step is still set correctly
923
-		if ( ! $this->checkout->current_step instanceof EE_SPCO_Reg_Step ) {
924
-			EE_Error::add_error( __( 'We\'re sorry but the registration process can not proceed because one or more registration steps were not setup correctly. Please refresh the page and try again or contact support.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
923
+		if ( ! $this->checkout->current_step instanceof EE_SPCO_Reg_Step) {
924
+			EE_Error::add_error(__('We\'re sorry but the registration process can not proceed because one or more registration steps were not setup correctly. Please refresh the page and try again or contact support.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
925 925
 			return false;
926 926
 		}
927 927
 		// if returning to SPCO, then verify that primary registrant is set
928
-		if ( ! empty( $this->checkout->reg_url_link )) {
928
+		if ( ! empty($this->checkout->reg_url_link)) {
929 929
 			$valid_registrant = $this->checkout->transaction->primary_registration();
930
-			if ( ! $valid_registrant instanceof EE_Registration ) {
931
-				EE_Error::add_error( __( 'We\'re sorry but there appears to be an error with the "reg_url_link" or the primary registrant for this transaction. Please refresh the page and try again or contact support.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
930
+			if ( ! $valid_registrant instanceof EE_Registration) {
931
+				EE_Error::add_error(__('We\'re sorry but there appears to be an error with the "reg_url_link" or the primary registrant for this transaction. Please refresh the page and try again or contact support.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
932 932
 				return false;
933 933
 			}
934 934
 			$valid_registrant = null;
935
-			foreach ( $this->checkout->transaction->registrations( $this->checkout->reg_cache_where_params ) as $registration ) {
935
+			foreach ($this->checkout->transaction->registrations($this->checkout->reg_cache_where_params) as $registration) {
936 936
 				if (
937 937
 					$registration instanceof EE_Registration
938 938
 					&& $registration->reg_url_link() === $this->checkout->reg_url_link
@@ -940,9 +940,9 @@  discard block
 block discarded – undo
940 940
 					$valid_registrant = $registration;
941 941
 				}
942 942
 			}
943
-			if ( ! $valid_registrant instanceof EE_Registration ) {
943
+			if ( ! $valid_registrant instanceof EE_Registration) {
944 944
 				// hmmm... maybe we have the wrong session because the user is opening multiple tabs ?
945
-				if ( EED_Single_Page_Checkout::$_checkout_verified ) {
945
+				if (EED_Single_Page_Checkout::$_checkout_verified) {
946 946
 					// clear the session, mark the checkout as unverified, and try again
947 947
 					EE_Registry::instance()->SSN->clear_session();
948 948
 					EED_Single_Page_Checkout::$_initialized = false;
@@ -951,13 +951,13 @@  discard block
 block discarded – undo
951 951
 					EE_Error::reset_notices();
952 952
 					return false;
953 953
 				}
954
-				EE_Error::add_error( __( 'We\'re sorry but there appears to be an error with the "reg_url_link" or the transaction itself. Please refresh the page and try again or contact support.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
954
+				EE_Error::add_error(__('We\'re sorry but there appears to be an error with the "reg_url_link" or the transaction itself. Please refresh the page and try again or contact support.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
955 955
 				return false;
956 956
 			}
957 957
 		}
958 958
 		// now that things have been kinda sufficiently verified,
959 959
 		// let's add the checkout to the session so that's available other systems
960
-		EE_Registry::instance()->SSN->set_checkout( $this->checkout );
960
+		EE_Registry::instance()->SSN->set_checkout($this->checkout);
961 961
 		return true;
962 962
 	}
963 963
 
@@ -972,15 +972,15 @@  discard block
 block discarded – undo
972 972
 	 * @param bool $reinitializing
973 973
 	 * @throws \EE_Error
974 974
 	 */
975
-	private function _initialize_reg_steps( $reinitializing = false ) {
976
-		$this->checkout->set_reg_step_initiated( $this->checkout->current_step );
975
+	private function _initialize_reg_steps($reinitializing = false) {
976
+		$this->checkout->set_reg_step_initiated($this->checkout->current_step);
977 977
 		// loop thru all steps to call their individual "initialize" methods and set i18n strings for JS
978
-		foreach ( $this->checkout->reg_steps as $reg_step ) {
979
-			if ( ! $reg_step->initialize_reg_step() ) {
978
+		foreach ($this->checkout->reg_steps as $reg_step) {
979
+			if ( ! $reg_step->initialize_reg_step()) {
980 980
 				// if not initialized then maybe this step is being removed...
981
-				if ( ! $reinitializing && $reg_step->is_current_step() ) {
981
+				if ( ! $reinitializing && $reg_step->is_current_step()) {
982 982
 					// if it was the current step, then we need to start over here
983
-					$this->_initialize_reg_steps( true );
983
+					$this->_initialize_reg_steps(true);
984 984
 					return;
985 985
 				}
986 986
 				continue;
@@ -989,13 +989,13 @@  discard block
 block discarded – undo
989 989
 			$reg_step->enqueue_styles_and_scripts();
990 990
 			// i18n
991 991
 			$reg_step->translate_js_strings();
992
-			if ( $reg_step->is_current_step() ) {
992
+			if ($reg_step->is_current_step()) {
993 993
 				// the text that appears on the reg step form submit button
994 994
 				$reg_step->set_submit_button_text();
995 995
 			}
996 996
 		}
997 997
 		// dynamically creates hook point like: AHEE__Single_Page_Checkout___initialize_reg_step__attendee_information
998
-		do_action( "AHEE__Single_Page_Checkout___initialize_reg_step__{$this->checkout->current_step->slug()}", $this->checkout->current_step );
998
+		do_action("AHEE__Single_Page_Checkout___initialize_reg_step__{$this->checkout->current_step->slug()}", $this->checkout->current_step);
999 999
 	}
1000 1000
 
1001 1001
 
@@ -1008,43 +1008,43 @@  discard block
 block discarded – undo
1008 1008
 	 */
1009 1009
 	private function _check_form_submission() {
1010 1010
 		//does this request require the reg form to be generated ?
1011
-		if ( $this->checkout->generate_reg_form ) {
1011
+		if ($this->checkout->generate_reg_form) {
1012 1012
 			// ever heard that song by Blue Rodeo ?
1013 1013
 			try {
1014 1014
 				$this->checkout->current_step->reg_form = $this->checkout->current_step->generate_reg_form();
1015 1015
 				// if not displaying a form, then check for form submission
1016
-				if ( $this->checkout->process_form_submission && $this->checkout->current_step->reg_form->was_submitted() ) {
1016
+				if ($this->checkout->process_form_submission && $this->checkout->current_step->reg_form->was_submitted()) {
1017 1017
 					// clear out any old data in case this step is being run again
1018
-					$this->checkout->current_step->set_valid_data( array() );
1018
+					$this->checkout->current_step->set_valid_data(array());
1019 1019
 					// capture submitted form data
1020 1020
 					$this->checkout->current_step->reg_form->receive_form_submission(
1021
-						apply_filters( 'FHEE__Single_Page_Checkout___check_form_submission__request_params', EE_Registry::instance()->REQ->params(), $this->checkout )
1021
+						apply_filters('FHEE__Single_Page_Checkout___check_form_submission__request_params', EE_Registry::instance()->REQ->params(), $this->checkout)
1022 1022
 					);
1023 1023
 					// validate submitted form data
1024
-					if ( ! $this->checkout->continue_reg && ! $this->checkout->current_step->reg_form->is_valid() ) {
1024
+					if ( ! $this->checkout->continue_reg && ! $this->checkout->current_step->reg_form->is_valid()) {
1025 1025
 						// thou shall not pass !!!
1026 1026
 						$this->checkout->continue_reg = FALSE;
1027 1027
 						// any form validation errors?
1028
-						if ( $this->checkout->current_step->reg_form->submission_error_message() !== '' ) {
1028
+						if ($this->checkout->current_step->reg_form->submission_error_message() !== '') {
1029 1029
 							$submission_error_messages = array();
1030 1030
 							// bad, bad, bad registrant
1031
-							foreach( $this->checkout->current_step->reg_form->get_validation_errors_accumulated() as $validation_error ){
1032
-								if ( $validation_error instanceof EE_Validation_Error ) {
1031
+							foreach ($this->checkout->current_step->reg_form->get_validation_errors_accumulated() as $validation_error) {
1032
+								if ($validation_error instanceof EE_Validation_Error) {
1033 1033
 									$submission_error_messages[] = sprintf(
1034
-										__( '%s : %s', 'event_espresso' ),
1034
+										__('%s : %s', 'event_espresso'),
1035 1035
 										$validation_error->get_form_section()->html_label_text(),
1036 1036
 										$validation_error->getMessage()
1037 1037
 									);
1038 1038
 								}
1039 1039
 							}
1040
-							EE_Error::add_error( implode( '<br />', $submission_error_messages ), __FILE__, __FUNCTION__, __LINE__ );
1040
+							EE_Error::add_error(implode('<br />', $submission_error_messages), __FILE__, __FUNCTION__, __LINE__);
1041 1041
 						}
1042 1042
 						// well not really... what will happen is we'll just get redirected back to redo the current step
1043 1043
 						$this->go_to_next_step();
1044 1044
 						return;
1045 1045
 					}
1046 1046
 				}
1047
-			} catch( EE_Error $e ) {
1047
+			} catch (EE_Error $e) {
1048 1048
 				$e->get_error();
1049 1049
 			}
1050 1050
 		}
@@ -1061,22 +1061,22 @@  discard block
 block discarded – undo
1061 1061
 	 */
1062 1062
 	private function _process_form_action() {
1063 1063
 		// what cha wanna do?
1064
-		switch( $this->checkout->action ) {
1064
+		switch ($this->checkout->action) {
1065 1065
 			// AJAX next step reg form
1066 1066
 			case 'display_spco_reg_step' :
1067 1067
 				$this->checkout->redirect = FALSE;
1068
-				if ( EE_Registry::instance()->REQ->ajax ) {
1069
-					$this->checkout->json_response->set_reg_step_html( $this->checkout->current_step->display_reg_form() );
1068
+				if (EE_Registry::instance()->REQ->ajax) {
1069
+					$this->checkout->json_response->set_reg_step_html($this->checkout->current_step->display_reg_form());
1070 1070
 				}
1071 1071
 				break;
1072 1072
 
1073 1073
 			default :
1074 1074
 				// meh... do one of those other steps first
1075
-				if ( ! empty( $this->checkout->action ) && is_callable( array( $this->checkout->current_step, $this->checkout->action ))) {
1075
+				if ( ! empty($this->checkout->action) && is_callable(array($this->checkout->current_step, $this->checkout->action))) {
1076 1076
 					// dynamically creates hook point like: AHEE__Single_Page_Checkout__before_attendee_information__process_reg_step
1077
-					do_action( "AHEE__Single_Page_Checkout__before_{$this->checkout->current_step->slug()}__{$this->checkout->action}", $this->checkout->current_step );
1077
+					do_action("AHEE__Single_Page_Checkout__before_{$this->checkout->current_step->slug()}__{$this->checkout->action}", $this->checkout->current_step);
1078 1078
 					// call action on current step
1079
-					if ( call_user_func( array( $this->checkout->current_step, $this->checkout->action )) ) {
1079
+					if (call_user_func(array($this->checkout->current_step, $this->checkout->action))) {
1080 1080
 						// good registrant, you get to proceed
1081 1081
 						if (
1082 1082
 							$this->checkout->current_step->success_message() !== ''
@@ -1087,7 +1087,7 @@  discard block
 block discarded – undo
1087 1087
 						) {
1088 1088
 								EE_Error::add_success(
1089 1089
 									$this->checkout->current_step->success_message()
1090
-									. '<br />' . $this->checkout->next_step->_instructions()
1090
+									. '<br />'.$this->checkout->next_step->_instructions()
1091 1091
 								);
1092 1092
 
1093 1093
 						}
@@ -1095,12 +1095,12 @@  discard block
 block discarded – undo
1095 1095
 						$this->_setup_redirect();
1096 1096
 					}
1097 1097
 					// dynamically creates hook point like: AHEE__Single_Page_Checkout__after_payment_options__process_reg_step
1098
-					do_action( "AHEE__Single_Page_Checkout__after_{$this->checkout->current_step->slug()}__{$this->checkout->action}", $this->checkout->current_step );
1098
+					do_action("AHEE__Single_Page_Checkout__after_{$this->checkout->current_step->slug()}__{$this->checkout->action}", $this->checkout->current_step);
1099 1099
 
1100 1100
 				} else {
1101 1101
 					EE_Error::add_error(
1102 1102
 						sprintf(
1103
-							__( 'The requested form action "%s" does not exist for the current "%s" registration step.', 'event_espresso' ),
1103
+							__('The requested form action "%s" does not exist for the current "%s" registration step.', 'event_espresso'),
1104 1104
 							$this->checkout->action,
1105 1105
 							$this->checkout->current_step->name()
1106 1106
 						),
@@ -1126,10 +1126,10 @@  discard block
 block discarded – undo
1126 1126
 	public function add_styles_and_scripts() {
1127 1127
 		// i18n
1128 1128
 		$this->translate_js_strings();
1129
-		if ( $this->checkout->admin_request ) {
1130
-			add_action('admin_enqueue_scripts', array($this, 'enqueue_styles_and_scripts'), 10 );
1129
+		if ($this->checkout->admin_request) {
1130
+			add_action('admin_enqueue_scripts', array($this, 'enqueue_styles_and_scripts'), 10);
1131 1131
 		} else {
1132
-			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_and_scripts' ), 10 );
1132
+			add_action('wp_enqueue_scripts', array($this, 'enqueue_styles_and_scripts'), 10);
1133 1133
 		}
1134 1134
 	}
1135 1135
 
@@ -1145,42 +1145,42 @@  discard block
 block discarded – undo
1145 1145
 		EE_Registry::$i18n_js_strings['revisit'] = $this->checkout->revisit;
1146 1146
 		EE_Registry::$i18n_js_strings['e_reg_url_link'] = $this->checkout->reg_url_link;
1147 1147
 		EE_Registry::$i18n_js_strings['server_error'] = __('An unknown error occurred on the server while attempting to process your request. Please refresh the page and try again or contact support.', 'event_espresso');
1148
-		EE_Registry::$i18n_js_strings['invalid_json_response'] = __( 'An invalid response was returned from the server while attempting to process your request. Please refresh the page and try again or contact support.', 'event_espresso' );
1149
-		EE_Registry::$i18n_js_strings['validation_error'] = __( 'There appears to be a problem with the form validation configuration! Please check the admin settings or contact support.', 'event_espresso' );
1150
-		EE_Registry::$i18n_js_strings['invalid_payment_method'] = __( 'There appears to be a problem with the payment method configuration! Please refresh the page and try again or contact support.', 'event_espresso' );
1148
+		EE_Registry::$i18n_js_strings['invalid_json_response'] = __('An invalid response was returned from the server while attempting to process your request. Please refresh the page and try again or contact support.', 'event_espresso');
1149
+		EE_Registry::$i18n_js_strings['validation_error'] = __('There appears to be a problem with the form validation configuration! Please check the admin settings or contact support.', 'event_espresso');
1150
+		EE_Registry::$i18n_js_strings['invalid_payment_method'] = __('There appears to be a problem with the payment method configuration! Please refresh the page and try again or contact support.', 'event_espresso');
1151 1151
 		EE_Registry::$i18n_js_strings['reg_step_error'] = __('This registration step could not be completed. Please refresh the page and try again.', 'event_espresso');
1152 1152
 		EE_Registry::$i18n_js_strings['invalid_coupon'] = __('We\'re sorry but that coupon code does not appear to be valid. If this is incorrect, please contact the site administrator.', 'event_espresso');
1153
-		EE_Registry::$i18n_js_strings['process_registration'] = sprintf( __( 'Please wait while we process your registration.%sDo not refresh the page or navigate away while this is happening.%sThank you for your patience.', 'event_espresso' ), '<br/>', '<br/>' );
1154
-		EE_Registry::$i18n_js_strings['language'] = get_bloginfo( 'language' );
1153
+		EE_Registry::$i18n_js_strings['process_registration'] = sprintf(__('Please wait while we process your registration.%sDo not refresh the page or navigate away while this is happening.%sThank you for your patience.', 'event_espresso'), '<br/>', '<br/>');
1154
+		EE_Registry::$i18n_js_strings['language'] = get_bloginfo('language');
1155 1155
 		EE_Registry::$i18n_js_strings['EESID'] = EE_Registry::instance()->SSN->id();
1156 1156
 		EE_Registry::$i18n_js_strings['currency'] = EE_Registry::instance()->CFG->currency;
1157 1157
 		EE_Registry::$i18n_js_strings['datepicker_yearRange'] = '-150:+20';
1158
-		EE_Registry::$i18n_js_strings['timer_years'] = __( 'years', 'event_espresso' );
1159
-		EE_Registry::$i18n_js_strings['timer_months'] = __( 'months', 'event_espresso' );
1160
-		EE_Registry::$i18n_js_strings['timer_weeks'] = __( 'weeks', 'event_espresso' );
1161
-		EE_Registry::$i18n_js_strings['timer_days'] = __( 'days', 'event_espresso' );
1162
-		EE_Registry::$i18n_js_strings['timer_hours'] = __( 'hours', 'event_espresso' );
1163
-		EE_Registry::$i18n_js_strings['timer_minutes'] = __( 'minutes', 'event_espresso' );
1164
-		EE_Registry::$i18n_js_strings['timer_seconds'] = __( 'seconds', 'event_espresso' );
1165
-		EE_Registry::$i18n_js_strings['timer_year'] = __( 'year', 'event_espresso' );
1166
-		EE_Registry::$i18n_js_strings['timer_month'] = __( 'month', 'event_espresso' );
1167
-		EE_Registry::$i18n_js_strings['timer_week'] = __( 'week', 'event_espresso' );
1168
-		EE_Registry::$i18n_js_strings['timer_day'] = __( 'day', 'event_espresso' );
1169
-		EE_Registry::$i18n_js_strings['timer_hour'] = __( 'hour', 'event_espresso' );
1170
-		EE_Registry::$i18n_js_strings['timer_minute'] = __( 'minute', 'event_espresso' );
1171
-		EE_Registry::$i18n_js_strings['timer_second'] = __( 'second', 'event_espresso' );
1158
+		EE_Registry::$i18n_js_strings['timer_years'] = __('years', 'event_espresso');
1159
+		EE_Registry::$i18n_js_strings['timer_months'] = __('months', 'event_espresso');
1160
+		EE_Registry::$i18n_js_strings['timer_weeks'] = __('weeks', 'event_espresso');
1161
+		EE_Registry::$i18n_js_strings['timer_days'] = __('days', 'event_espresso');
1162
+		EE_Registry::$i18n_js_strings['timer_hours'] = __('hours', 'event_espresso');
1163
+		EE_Registry::$i18n_js_strings['timer_minutes'] = __('minutes', 'event_espresso');
1164
+		EE_Registry::$i18n_js_strings['timer_seconds'] = __('seconds', 'event_espresso');
1165
+		EE_Registry::$i18n_js_strings['timer_year'] = __('year', 'event_espresso');
1166
+		EE_Registry::$i18n_js_strings['timer_month'] = __('month', 'event_espresso');
1167
+		EE_Registry::$i18n_js_strings['timer_week'] = __('week', 'event_espresso');
1168
+		EE_Registry::$i18n_js_strings['timer_day'] = __('day', 'event_espresso');
1169
+		EE_Registry::$i18n_js_strings['timer_hour'] = __('hour', 'event_espresso');
1170
+		EE_Registry::$i18n_js_strings['timer_minute'] = __('minute', 'event_espresso');
1171
+		EE_Registry::$i18n_js_strings['timer_second'] = __('second', 'event_espresso');
1172 1172
 		EE_Registry::$i18n_js_strings['registration_expiration_notice'] = sprintf(
1173
-			__( '%1$sWe\'re sorry, but your registration time has expired.%2$s%3$s%4$sIf you still wish to complete your registration, please return to the %5$sEvent List%6$sEvent List%7$s and reselect your tickets if available. Please except our apologies for any inconvenience this may have caused.%8$s', 'event_espresso' ),
1173
+			__('%1$sWe\'re sorry, but your registration time has expired.%2$s%3$s%4$sIf you still wish to complete your registration, please return to the %5$sEvent List%6$sEvent List%7$s and reselect your tickets if available. Please except our apologies for any inconvenience this may have caused.%8$s', 'event_espresso'),
1174 1174
 			'<h4 class="important-notice">',
1175 1175
 			'</h4>',
1176 1176
 			'<br />',
1177 1177
 			'<p>',
1178
-			'<a href="'. get_post_type_archive_link( 'espresso_events' ) . '" title="',
1178
+			'<a href="'.get_post_type_archive_link('espresso_events').'" title="',
1179 1179
 			'">',
1180 1180
 			'</a>',
1181 1181
 			'</p>'
1182 1182
 		);
1183
-		EE_Registry::$i18n_js_strings[ 'ajax_submit' ] = apply_filters( 'FHEE__Single_Page_Checkout__translate_js_strings__ajax_submit', true );
1183
+		EE_Registry::$i18n_js_strings['ajax_submit'] = apply_filters('FHEE__Single_Page_Checkout__translate_js_strings__ajax_submit', true);
1184 1184
 	}
1185 1185
 
1186 1186
 
@@ -1193,25 +1193,25 @@  discard block
 block discarded – undo
1193 1193
 	 */
1194 1194
 	public function enqueue_styles_and_scripts() {
1195 1195
 		// load css
1196
-		wp_register_style( 'single_page_checkout', SPCO_CSS_URL . 'single_page_checkout.css', array(), EVENT_ESPRESSO_VERSION );
1197
-		wp_enqueue_style( 'single_page_checkout' );
1196
+		wp_register_style('single_page_checkout', SPCO_CSS_URL.'single_page_checkout.css', array(), EVENT_ESPRESSO_VERSION);
1197
+		wp_enqueue_style('single_page_checkout');
1198 1198
 		// load JS
1199
-		wp_register_script( 'jquery_plugin', EE_THIRD_PARTY_URL . 'jquery	.plugin.min.js', array( 'jquery' ), '1.0.1', TRUE );
1200
-		wp_register_script( 'jquery_countdown', EE_THIRD_PARTY_URL . 'jquery	.countdown.min.js', array( 'jquery_plugin' ), '2.0.2', TRUE );
1201
-		wp_register_script( 'single_page_checkout', SPCO_JS_URL . 'single_page_checkout.js', array( 'espresso_core', 'underscore', 'ee_form_section_validation', 'jquery_countdown' ), EVENT_ESPRESSO_VERSION, TRUE );
1202
-		wp_enqueue_script( 'single_page_checkout' );
1199
+		wp_register_script('jquery_plugin', EE_THIRD_PARTY_URL.'jquery	.plugin.min.js', array('jquery'), '1.0.1', TRUE);
1200
+		wp_register_script('jquery_countdown', EE_THIRD_PARTY_URL.'jquery	.countdown.min.js', array('jquery_plugin'), '2.0.2', TRUE);
1201
+		wp_register_script('single_page_checkout', SPCO_JS_URL.'single_page_checkout.js', array('espresso_core', 'underscore', 'ee_form_section_validation', 'jquery_countdown'), EVENT_ESPRESSO_VERSION, TRUE);
1202
+		wp_enqueue_script('single_page_checkout');
1203 1203
 
1204 1204
 		/**
1205 1205
 		 * global action hook for enqueueing styles and scripts with
1206 1206
 		 * spco calls.
1207 1207
 		 */
1208
-		do_action( 'AHEE__EED_Single_Page_Checkout__enqueue_styles_and_scripts', $this );
1208
+		do_action('AHEE__EED_Single_Page_Checkout__enqueue_styles_and_scripts', $this);
1209 1209
 
1210 1210
 		/**
1211 1211
 		 * dynamic action hook for enqueueing styles and scripts with spco calls.
1212 1212
 		 * The hook will end up being something like AHEE__EED_Single_Page_Checkout__enqueue_styles_and_scripts__attendee_information
1213 1213
 		 */
1214
-		do_action( 'AHEE__EED_Single_Page_Checkout__enqueue_styles_and_scripts__' . $this->checkout->current_step->slug(), $this );
1214
+		do_action('AHEE__EED_Single_Page_Checkout__enqueue_styles_and_scripts__'.$this->checkout->current_step->slug(), $this);
1215 1215
 
1216 1216
 	}
1217 1217
 
@@ -1226,19 +1226,19 @@  discard block
 block discarded – undo
1226 1226
 	 */
1227 1227
 	private function _display_spco_reg_form() {
1228 1228
 		// if registering via the admin, just display the reg form for the current step
1229
-		if ( $this->checkout->admin_request ) {
1230
-			EE_Registry::instance()->REQ->add_output( $this->checkout->current_step->display_reg_form() );
1229
+		if ($this->checkout->admin_request) {
1230
+			EE_Registry::instance()->REQ->add_output($this->checkout->current_step->display_reg_form());
1231 1231
 		} else {
1232 1232
 			// add powered by EE msg
1233
-			add_action( 'AHEE__SPCO__reg_form_footer', array( 'EED_Single_Page_Checkout', 'display_registration_footer' ));
1233
+			add_action('AHEE__SPCO__reg_form_footer', array('EED_Single_Page_Checkout', 'display_registration_footer'));
1234 1234
 
1235
-			$empty_cart = count( $this->checkout->transaction->registrations( $this->checkout->reg_cache_where_params ) ) < 1 ? true : false;
1235
+			$empty_cart = count($this->checkout->transaction->registrations($this->checkout->reg_cache_where_params)) < 1 ? true : false;
1236 1236
 			$cookies_not_set_msg = '';
1237
-			if ( $empty_cart && ! isset( $_COOKIE[ 'ee_cookie_test' ] ) ) {
1237
+			if ($empty_cart && ! isset($_COOKIE['ee_cookie_test'])) {
1238 1238
 				$cookies_not_set_msg = apply_filters(
1239 1239
 					'FHEE__Single_Page_Checkout__display_spco_reg_form__cookies_not_set_msg',
1240 1240
 					sprintf(
1241
-						__( '%1$s%3$sIt appears your browser is not currently set to accept Cookies%4$s%5$sIn order to register for events, you need to enable cookies.%7$sIf you require assistance, then click the following link to learn how to %8$senable cookies%9$s%6$s%2$s', 'event_espresso' ),
1241
+						__('%1$s%3$sIt appears your browser is not currently set to accept Cookies%4$s%5$sIn order to register for events, you need to enable cookies.%7$sIf you require assistance, then click the following link to learn how to %8$senable cookies%9$s%6$s%2$s', 'event_espresso'),
1242 1242
 						'<div class="ee-attention">',
1243 1243
 						'</div>',
1244 1244
 						'<h6 class="important-notice">',
@@ -1258,7 +1258,7 @@  discard block
 block discarded – undo
1258 1258
 					'layout_strategy' =>
1259 1259
 						new EE_Template_Layout(
1260 1260
 							array(
1261
-								'layout_template_file' 			=> SPCO_TEMPLATES_PATH . 'registration_page_wrapper.template.php',
1261
+								'layout_template_file' 			=> SPCO_TEMPLATES_PATH.'registration_page_wrapper.template.php',
1262 1262
 								'template_args' => array(
1263 1263
 									'empty_cart' 		=> $empty_cart,
1264 1264
 									'revisit' 				=> $this->checkout->revisit,
@@ -1267,8 +1267,8 @@  discard block
 block discarded – undo
1267 1267
 									'empty_msg' 		=> apply_filters(
1268 1268
 										'FHEE__Single_Page_Checkout__display_spco_reg_form__empty_msg',
1269 1269
 										sprintf(
1270
-											__( 'You need to %1$sReturn to Events list%2$sselect at least one event%3$s before you can proceed with the registration process.', 'event_espresso' ),
1271
-											'<a href="' . get_post_type_archive_link( 'espresso_events' ) . '" title="',
1270
+											__('You need to %1$sReturn to Events list%2$sselect at least one event%3$s before you can proceed with the registration process.', 'event_espresso'),
1271
+											'<a href="'.get_post_type_archive_link('espresso_events').'" title="',
1272 1272
 											'">',
1273 1273
 											'</a>'
1274 1274
 										)
@@ -1276,14 +1276,14 @@  discard block
 block discarded – undo
1276 1276
 									'cookies_not_set_msg' 		=> $cookies_not_set_msg,
1277 1277
 									'registration_time_limit' 	=> $this->checkout->get_registration_time_limit(),
1278 1278
 									'session_expiration' 			=>
1279
-										gmdate( 'M d, Y H:i:s', EE_Registry::instance()->SSN->expiration() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) )
1279
+										gmdate('M d, Y H:i:s', EE_Registry::instance()->SSN->expiration() + (get_option('gmt_offset') * HOUR_IN_SECONDS))
1280 1280
 							)
1281 1281
 						)
1282 1282
 					)
1283 1283
 				)
1284 1284
 			);
1285 1285
 			// load template and add to output sent that gets filtered into the_content()
1286
-			EE_Registry::instance()->REQ->add_output( $this->checkout->registration_form->get_html_and_js() );
1286
+			EE_Registry::instance()->REQ->add_output($this->checkout->registration_form->get_html_and_js());
1287 1287
 		}
1288 1288
 	}
1289 1289
 
@@ -1297,8 +1297,8 @@  discard block
 block discarded – undo
1297 1297
 	 * @internal  param string $label
1298 1298
 	 * @return        string
1299 1299
 	 */
1300
-	public function add_extra_finalize_registration_inputs( $next_step ) {
1301
-		if ( $next_step === 'finalize_registration' ) {
1300
+	public function add_extra_finalize_registration_inputs($next_step) {
1301
+		if ($next_step === 'finalize_registration') {
1302 1302
 			echo '<div id="spco-extra-finalize_registration-inputs-dv"></div>';
1303 1303
 		}
1304 1304
 	}
@@ -1320,13 +1320,13 @@  discard block
 block discarded – undo
1320 1320
 		) {
1321 1321
 			add_filter(
1322 1322
 				'FHEE__EEH_Template__powered_by_event_espresso__url',
1323
-				function( $url) {
1324
-					return apply_filters( 'FHEE__EE_Front_Controller__registration_footer__url', $url );
1323
+				function($url) {
1324
+					return apply_filters('FHEE__EE_Front_Controller__registration_footer__url', $url);
1325 1325
 				}
1326 1326
 			);
1327 1327
 			echo apply_filters(
1328 1328
 				'FHEE__EE_Front_Controller__display_registration_footer',
1329
-				\EEH_Template::powered_by_event_espresso( '', 'espresso-registration-footer-dv' )
1329
+				\EEH_Template::powered_by_event_espresso('', 'espresso-registration-footer-dv')
1330 1330
 			);
1331 1331
 		}
1332 1332
 		return '';
@@ -1342,7 +1342,7 @@  discard block
 block discarded – undo
1342 1342
 	 * @throws \EE_Error
1343 1343
 	 */
1344 1344
 	public function unlock_transaction() {
1345
-		if ( $this->checkout->transaction instanceof EE_Transaction ) {
1345
+		if ($this->checkout->transaction instanceof EE_Transaction) {
1346 1346
 			$this->checkout->transaction->unlock();
1347 1347
 		}
1348 1348
 	}
@@ -1357,12 +1357,12 @@  discard block
 block discarded – undo
1357 1357
 	 * @return 	array
1358 1358
 	 */
1359 1359
 	private function _setup_redirect() {
1360
-		if ( $this->checkout->continue_reg && $this->checkout->next_step instanceof EE_SPCO_Reg_Step ) {
1360
+		if ($this->checkout->continue_reg && $this->checkout->next_step instanceof EE_SPCO_Reg_Step) {
1361 1361
 			$this->checkout->redirect = TRUE;
1362
-			if ( empty( $this->checkout->redirect_url )) {
1362
+			if (empty($this->checkout->redirect_url)) {
1363 1363
 				$this->checkout->redirect_url = $this->checkout->next_step->reg_step_url();
1364 1364
 			}
1365
-			$this->checkout->redirect_url = apply_filters( 'FHEE__EED_Single_Page_Checkout___setup_redirect__checkout_redirect_url', $this->checkout->redirect_url, $this->checkout );
1365
+			$this->checkout->redirect_url = apply_filters('FHEE__EED_Single_Page_Checkout___setup_redirect__checkout_redirect_url', $this->checkout->redirect_url, $this->checkout);
1366 1366
 		}
1367 1367
 	}
1368 1368
 
@@ -1376,9 +1376,9 @@  discard block
 block discarded – undo
1376 1376
 	 * @throws \EE_Error
1377 1377
 	 */
1378 1378
 	public function go_to_next_step() {
1379
-		if ( EE_Registry::instance()->REQ->ajax ) {
1379
+		if (EE_Registry::instance()->REQ->ajax) {
1380 1380
 			// capture contents of output buffer we started earlier in the request, and insert into JSON response
1381
-			$this->checkout->json_response->set_unexpected_errors( ob_get_clean() );
1381
+			$this->checkout->json_response->set_unexpected_errors(ob_get_clean());
1382 1382
 		}
1383 1383
 		$this->unlock_transaction();
1384 1384
 		// just return for these conditions
@@ -1407,7 +1407,7 @@  discard block
 block discarded – undo
1407 1407
 	 */
1408 1408
 	protected function _handle_json_response() {
1409 1409
 		// if this is an ajax request
1410
-		if ( EE_Registry::instance()->REQ->ajax ) {
1410
+		if (EE_Registry::instance()->REQ->ajax) {
1411 1411
 			// DEBUG LOG
1412 1412
 			//$this->checkout->log(
1413 1413
 			//	__CLASS__, __FUNCTION__, __LINE__,
@@ -1420,7 +1420,7 @@  discard block
 block discarded – undo
1420 1420
 			$this->checkout->json_response->set_registration_time_limit(
1421 1421
 				$this->checkout->get_registration_time_limit()
1422 1422
 			);
1423
-			$this->checkout->json_response->set_payment_amount( $this->checkout->amount_owing );
1423
+			$this->checkout->json_response->set_payment_amount($this->checkout->amount_owing);
1424 1424
 			// just send the ajax (
1425 1425
 			$json_response = apply_filters(
1426 1426
 				'FHEE__EE_Single_Page_Checkout__JSON_response',
@@ -1441,9 +1441,9 @@  discard block
 block discarded – undo
1441 1441
 	 */
1442 1442
 	protected function _handle_html_redirects() {
1443 1443
 		// going somewhere ?
1444
-		if ( $this->checkout->redirect && ! empty( $this->checkout->redirect_url ) ) {
1444
+		if ($this->checkout->redirect && ! empty($this->checkout->redirect_url)) {
1445 1445
 			// store notices in a transient
1446
-			EE_Error::get_notices( false, true, true );
1446
+			EE_Error::get_notices(false, true, true);
1447 1447
 			// DEBUG LOG
1448 1448
 			//$this->checkout->log(
1449 1449
 			//	__CLASS__, __FUNCTION__, __LINE__,
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
 			//		'headers_list'    => headers_list(),
1454 1454
 			//	)
1455 1455
 			//);
1456
-			wp_safe_redirect( $this->checkout->redirect_url );
1456
+			wp_safe_redirect($this->checkout->redirect_url);
1457 1457
 			exit();
1458 1458
 		}
1459 1459
 	}
Please login to merge, or discard this patch.
modules/ticket_selector/templates/ticket_selector_chart_iframe.template.php 1 patch
Indentation   -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,6 @@
 block discarded – undo
25 25
 				
26 26
 			)
27 27
 		);
28
-
29
-
30
-
31 28
  * 
32 29
  */
33 30
 class EE_DMS_4_1_0_event_venue extends EE_Data_Migration_Script_Stage{
Please login to merge, or discard this patch.
core/admin/EE_Admin.core.php 1 patch
Spacing   +143 added lines, -143 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	public static function instance() {
42 42
 		// check if class object is instantiated
43
-		if (  ! self::$_instance instanceof EE_Admin ) {
43
+		if ( ! self::$_instance instanceof EE_Admin) {
44 44
 			self::$_instance = new self();
45 45
 		}
46 46
 		return self::$_instance;
@@ -57,30 +57,30 @@  discard block
 block discarded – undo
57 57
 		// define global EE_Admin constants
58 58
 		$this->_define_all_constants();
59 59
 		// set autoloaders for our admin page classes based on included path information
60
-		EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder( EE_ADMIN );
60
+		EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_ADMIN);
61 61
 		// admin hooks
62
-		add_filter( 'plugin_action_links', array( $this, 'filter_plugin_actions' ), 10, 2 );
62
+		add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
63 63
 		// load EE_Request_Handler early
64
-		add_action( 'AHEE__EE_System__core_loaded_and_ready', array( $this, 'get_request' ));
65
-		add_action( 'AHEE__EE_System__initialize_last', array( $this, 'init' ));
64
+		add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'get_request'));
65
+		add_action('AHEE__EE_System__initialize_last', array($this, 'init'));
66 66
 		// post shortcode tracking
67 67
 		add_action(
68 68
 			'AHEE__EE_System__initialize_last',
69
-			array( 'EventEspresso\core\admin\PostShortcodeTracking', 'set_hooks_admin' )
69
+			array('EventEspresso\core\admin\PostShortcodeTracking', 'set_hooks_admin')
70 70
 		);
71
-		add_action( 'AHEE__EE_Admin_Page__route_admin_request', array( $this, 'route_admin_request' ), 100, 2 );
72
-		add_action( 'wp_loaded', array( $this, 'wp_loaded' ), 100 );
73
-		add_action( 'admin_init', array( $this, 'admin_init' ), 100 );
74
-		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ), 20 );
75
-		add_action( 'admin_notices', array( $this, 'display_admin_notices' ), 10 );
76
-		add_action( 'network_admin_notices', array( $this, 'display_admin_notices' ), 10 );
77
-		add_filter( 'pre_update_option', array( $this, 'check_for_invalid_datetime_formats' ), 100, 2 );
78
-		add_filter('admin_footer_text', array( $this, 'espresso_admin_footer' ));
71
+		add_action('AHEE__EE_Admin_Page__route_admin_request', array($this, 'route_admin_request'), 100, 2);
72
+		add_action('wp_loaded', array($this, 'wp_loaded'), 100);
73
+		add_action('admin_init', array($this, 'admin_init'), 100);
74
+		add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_scripts'), 20);
75
+		add_action('admin_notices', array($this, 'display_admin_notices'), 10);
76
+		add_action('network_admin_notices', array($this, 'display_admin_notices'), 10);
77
+		add_filter('pre_update_option', array($this, 'check_for_invalid_datetime_formats'), 100, 2);
78
+		add_filter('admin_footer_text', array($this, 'espresso_admin_footer'));
79 79
 
80 80
 		//reset Environment config (we only do this on admin page loads);
81 81
 		EE_Registry::instance()->CFG->environment->recheck_values();
82 82
 
83
-		do_action( 'AHEE__EE_Admin__loaded' );
83
+		do_action('AHEE__EE_Admin__loaded');
84 84
 	}
85 85
 
86 86
 
@@ -95,11 +95,11 @@  discard block
 block discarded – undo
95 95
 	 * @return void
96 96
 	 */
97 97
 	private function _define_all_constants() {
98
-		define( 'EE_ADMIN_URL', EE_PLUGIN_DIR_URL . 'core/admin/' );
99
-		define( 'EE_ADMIN_PAGES_URL', EE_PLUGIN_DIR_URL . 'admin_pages/' );
100
-		define( 'EE_ADMIN_TEMPLATE', EE_ADMIN . 'templates' . DS );
101
-		define( 'WP_ADMIN_PATH', ABSPATH . 'wp-admin/' );
102
-		define( 'WP_AJAX_URL', admin_url( 'admin-ajax.php' ));
98
+		define('EE_ADMIN_URL', EE_PLUGIN_DIR_URL.'core/admin/');
99
+		define('EE_ADMIN_PAGES_URL', EE_PLUGIN_DIR_URL.'admin_pages/');
100
+		define('EE_ADMIN_TEMPLATE', EE_ADMIN.'templates'.DS);
101
+		define('WP_ADMIN_PATH', ABSPATH.'wp-admin/');
102
+		define('WP_AJAX_URL', admin_url('admin-ajax.php'));
103 103
 	}
104 104
 
105 105
 
@@ -112,23 +112,23 @@  discard block
 block discarded – undo
112 112
 	 * @param 	string 	$plugin
113 113
 	 * @return 	array
114 114
 	 */
115
-	public function filter_plugin_actions( $links, $plugin ) {
115
+	public function filter_plugin_actions($links, $plugin) {
116 116
 		// set $main_file in stone
117 117
 		static $main_file;
118 118
 		// if $main_file is not set yet
119
-		if ( ! $main_file ) {
120
-			$main_file = plugin_basename( EVENT_ESPRESSO_MAIN_FILE );
119
+		if ( ! $main_file) {
120
+			$main_file = plugin_basename(EVENT_ESPRESSO_MAIN_FILE);
121 121
 		}
122
-		 if ( $plugin === $main_file ) {
122
+		 if ($plugin === $main_file) {
123 123
 		 	// compare current plugin to this one
124
-			if ( EE_Maintenance_Mode::instance()->level() === EE_Maintenance_Mode::level_2_complete_maintenance ) {
125
-				$maintenance_link = '<a href="admin.php?page=espresso_maintenance_settings" title="Event Espresso is in maintenance mode.  Click this link to learn why.">' . __('Maintenance Mode Active', 'event_espresso' ) . '</a>';
126
-				array_unshift( $links, $maintenance_link );
124
+			if (EE_Maintenance_Mode::instance()->level() === EE_Maintenance_Mode::level_2_complete_maintenance) {
125
+				$maintenance_link = '<a href="admin.php?page=espresso_maintenance_settings" title="Event Espresso is in maintenance mode.  Click this link to learn why.">'.__('Maintenance Mode Active', 'event_espresso').'</a>';
126
+				array_unshift($links, $maintenance_link);
127 127
 			} else {
128
-				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">' . __( 'Settings', 'event_espresso' ) . '</a>';
129
-				$events_link = '<a href="admin.php?page=espresso_events">' . __( 'Events', 'event_espresso' ) . '</a>';
128
+				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">'.__('Settings', 'event_espresso').'</a>';
129
+				$events_link = '<a href="admin.php?page=espresso_events">'.__('Events', 'event_espresso').'</a>';
130 130
 				// add before other links
131
-				array_unshift( $links, $org_settings_link, $events_link );
131
+				array_unshift($links, $org_settings_link, $events_link);
132 132
 			}
133 133
 		}
134 134
 		return $links;
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
 	 *	@return void
144 144
 	 */
145 145
 	public function get_request() {
146
-		EE_Registry::instance()->load_core( 'Request_Handler' );
147
-		EE_Registry::instance()->load_core( 'CPT_Strategy' );
146
+		EE_Registry::instance()->load_core('Request_Handler');
147
+		EE_Registry::instance()->load_core('CPT_Strategy');
148 148
 	}
149 149
 
150 150
 
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
156 156
 	 * @param array $admin_page_folder_names
157 157
 	 * @return array
158 158
 	 */
159
-	public function hide_admin_pages_except_maintenance_mode( $admin_page_folder_names = array() ){
159
+	public function hide_admin_pages_except_maintenance_mode($admin_page_folder_names = array()) {
160 160
 		return array(
161
-			'maintenance' => EE_ADMIN_PAGES . 'maintenance' . DS,
162
-			'about' => EE_ADMIN_PAGES . 'about' . DS,
163
-			'support' => EE_ADMIN_PAGES . 'support' . DS
161
+			'maintenance' => EE_ADMIN_PAGES.'maintenance'.DS,
162
+			'about' => EE_ADMIN_PAGES.'about'.DS,
163
+			'support' => EE_ADMIN_PAGES.'support'.DS
164 164
 		);
165 165
 	}
166 166
 
@@ -174,31 +174,31 @@  discard block
 block discarded – undo
174 174
 	*/
175 175
 	public function init() {
176 176
 		//only enable most of the EE_Admin IF we're not in full maintenance mode
177
-		if ( EE_Maintenance_Mode::instance()->models_can_query() ){
177
+		if (EE_Maintenance_Mode::instance()->models_can_query()) {
178 178
 			//ok so we want to enable the entire admin
179
-			add_action( 'wp_ajax_dismiss_ee_nag_notice', array( $this, 'dismiss_ee_nag_notice_callback' ));
180
-			add_action( 'admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
181
-			add_action( 'network_admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
179
+			add_action('wp_ajax_dismiss_ee_nag_notice', array($this, 'dismiss_ee_nag_notice_callback'));
180
+			add_action('admin_notices', array($this, 'get_persistent_admin_notices'), 9);
181
+			add_action('network_admin_notices', array($this, 'get_persistent_admin_notices'), 9);
182 182
 			//at a glance dashboard widget
183
-			add_filter( 'dashboard_glance_items', array( $this, 'dashboard_glance_items' ), 10 );
183
+			add_filter('dashboard_glance_items', array($this, 'dashboard_glance_items'), 10);
184 184
 			//filter for get_edit_post_link used on comments for custom post types
185
-			add_filter( 'get_edit_post_link', array( $this, 'modify_edit_post_link' ), 10, 2 );
185
+			add_filter('get_edit_post_link', array($this, 'modify_edit_post_link'), 10, 2);
186 186
 		}
187 187
 		// run the admin page factory but ONLY if we are doing an ee admin ajax request
188
-		if ( !defined('DOING_AJAX') || EE_ADMIN_AJAX ) {
188
+		if ( ! defined('DOING_AJAX') || EE_ADMIN_AJAX) {
189 189
 			try {
190 190
 				//this loads the controller for the admin pages which will setup routing etc
191
-				EE_Registry::instance()->load_core( 'Admin_Page_Loader' );
192
-			} catch ( EE_Error $e ) {
191
+				EE_Registry::instance()->load_core('Admin_Page_Loader');
192
+			} catch (EE_Error $e) {
193 193
 				$e->get_error();
194 194
 			}
195 195
 		}
196
-		add_filter( 'content_save_pre', array( $this, 'its_eSpresso' ), 10, 1 );
196
+		add_filter('content_save_pre', array($this, 'its_eSpresso'), 10, 1);
197 197
 		//make sure our CPTs and custom taxonomy metaboxes get shown for first time users
198
-		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes' ), 10 );
199
-		add_action('admin_head', array( $this, 'register_custom_nav_menu_boxes' ), 10 );
198
+		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes'), 10);
199
+		add_action('admin_head', array($this, 'register_custom_nav_menu_boxes'), 10);
200 200
 		//exclude EE critical pages from all nav menus and wp_list_pages
201
-		add_filter('nav_menu_meta_box_object', array( $this, 'remove_pages_from_nav_menu'), 10 );
201
+		add_filter('nav_menu_meta_box_object', array($this, 'remove_pages_from_nav_menu'), 10);
202 202
 	}
203 203
 
204 204
 
@@ -211,9 +211,9 @@  discard block
 block discarded – undo
211 211
 	 * @param  object $post_type WP post type object
212 212
 	 * @return object            WP post type object
213 213
 	 */
214
-	public function remove_pages_from_nav_menu( $post_type ) {
214
+	public function remove_pages_from_nav_menu($post_type) {
215 215
 		//if this isn't the "pages" post type let's get out
216
-		if ( $post_type->name !== 'page' ) {
216
+		if ($post_type->name !== 'page') {
217 217
 			return $post_type;
218 218
 		}
219 219
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
@@ -233,28 +233,28 @@  discard block
 block discarded – undo
233 233
 	 */
234 234
 	public function enable_hidden_ee_nav_menu_metaboxes() {
235 235
 		global $wp_meta_boxes, $pagenow;
236
-		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php' ) {
236
+		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php') {
237 237
 			return;
238 238
 		}
239 239
 		$user = wp_get_current_user();
240 240
 		//has this been done yet?
241
-		if ( get_user_option( 'ee_nav_menu_initialized', $user->ID ) ) {
241
+		if (get_user_option('ee_nav_menu_initialized', $user->ID)) {
242 242
 			return;
243 243
 		}
244 244
 
245
-		$hidden_meta_boxes = get_user_option( 'metaboxhidden_nav-menus', $user->ID );
246
-		$initial_meta_boxes = apply_filters( 'FHEE__EE_Admin__enable_hidden_ee_nav_menu_boxes__initial_meta_boxes', array( 'nav-menu-theme-locations', 'add-page', 'add-custom-links', 'add-category', 'add-espresso_events', 'add-espresso_venues', 'add-espresso_event_categories', 'add-espresso_venue_categories', 'add-post-type-post', 'add-post-type-page' ) );
245
+		$hidden_meta_boxes = get_user_option('metaboxhidden_nav-menus', $user->ID);
246
+		$initial_meta_boxes = apply_filters('FHEE__EE_Admin__enable_hidden_ee_nav_menu_boxes__initial_meta_boxes', array('nav-menu-theme-locations', 'add-page', 'add-custom-links', 'add-category', 'add-espresso_events', 'add-espresso_venues', 'add-espresso_event_categories', 'add-espresso_venue_categories', 'add-post-type-post', 'add-post-type-page'));
247 247
 
248
-		if ( is_array( $hidden_meta_boxes ) ) {
249
-			foreach ( $hidden_meta_boxes as $key => $meta_box_id ) {
250
-				if ( in_array( $meta_box_id, $initial_meta_boxes ) ) {
251
-					unset( $hidden_meta_boxes[ $key ] );
248
+		if (is_array($hidden_meta_boxes)) {
249
+			foreach ($hidden_meta_boxes as $key => $meta_box_id) {
250
+				if (in_array($meta_box_id, $initial_meta_boxes)) {
251
+					unset($hidden_meta_boxes[$key]);
252 252
 				}
253 253
 			}
254 254
 		}
255 255
 
256
-		update_user_option( $user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true );
257
-		update_user_option( $user->ID, 'ee_nav_menu_initialized', 1, true );
256
+		update_user_option($user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true);
257
+		update_user_option($user->ID, 'ee_nav_menu_initialized', 1, true);
258 258
 	}
259 259
 
260 260
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 	 * @return void
274 274
 	 */
275 275
 	public function register_custom_nav_menu_boxes() {
276
-		add_meta_box( 'add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array( $this, 'ee_cpt_archive_pages' ), 'nav-menus', 'side', 'core' );
276
+		add_meta_box('add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array($this, 'ee_cpt_archive_pages'), 'nav-menus', 'side', 'core');
277 277
 	}
278 278
 
279 279
 
@@ -289,16 +289,16 @@  discard block
 block discarded – undo
289 289
 	 *
290 290
 	 * @return string  the (maybe) modified link
291 291
 	 */
292
-	public function modify_edit_post_link( $link, $id ) {
293
-		if ( ! $post = get_post( $id ) ){
292
+	public function modify_edit_post_link($link, $id) {
293
+		if ( ! $post = get_post($id)) {
294 294
 			return $link;
295 295
 		}
296
-		if ( $post->post_type === 'espresso_attendees' ) {
296
+		if ($post->post_type === 'espresso_attendees') {
297 297
 			$query_args = array(
298 298
 				'action' => 'edit_attendee',
299 299
 				'post' => $id
300 300
 			);
301
-			return EEH_URL::add_query_args_and_nonce( $query_args, admin_url('admin.php?page=espresso_registrations') );
301
+			return EEH_URL::add_query_args_and_nonce($query_args, admin_url('admin.php?page=espresso_registrations'));
302 302
 		}
303 303
 		return $link;
304 304
 	}
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
 		global $nav_menu_selected_id;
311 311
 
312 312
 		$db_fields = false;
313
-		$walker = new Walker_Nav_Menu_Checklist( $db_fields );
313
+		$walker = new Walker_Nav_Menu_Checklist($db_fields);
314 314
 		$current_tab = 'event-archives';
315 315
 
316 316
 		/*if ( ! empty( $_REQUEST['quick-search-posttype-' . $post_type_name] ) ) {
@@ -329,9 +329,9 @@  discard block
 block discarded – undo
329 329
 		?>
330 330
 		<div id="posttype-extra-nav-menu-pages" class="posttypediv">
331 331
 			<ul id="posttype-extra-nav-menu-pages-tabs" class="posttype-tabs add-menu-item-tabs">
332
-				<li <?php echo ( 'event-archives' === $current_tab ? ' class="tabs"' : '' ); ?>>
333
-					<a class="nav-tab-link" data-type="tabs-panel-posttype-extra-nav-menu-pages-event-archives" href="<?php if ( $nav_menu_selected_id ) {echo esc_url(add_query_arg('extra-nav-menu-pages-tab', 'event-archives', remove_query_arg($removed_args)));} ?>#tabs-panel-posttype-extra-nav-menu-pages-event-archives">
334
-						<?php _e( 'Event Archive Pages', 'event_espresso' ); ?>
332
+				<li <?php echo ('event-archives' === $current_tab ? ' class="tabs"' : ''); ?>>
333
+					<a class="nav-tab-link" data-type="tabs-panel-posttype-extra-nav-menu-pages-event-archives" href="<?php if ($nav_menu_selected_id) {echo esc_url(add_query_arg('extra-nav-menu-pages-tab', 'event-archives', remove_query_arg($removed_args))); } ?>#tabs-panel-posttype-extra-nav-menu-pages-event-archives">
334
+						<?php _e('Event Archive Pages', 'event_espresso'); ?>
335 335
 					</a>
336 336
 				</li>
337 337
 			<?php /* // temporarily removing but leaving skeleton in place in case we ever decide to add more tabs.
@@ -349,13 +349,13 @@  discard block
 block discarded – undo
349 349
  			<?php */ ?>
350 350
 
351 351
 			<div id="tabs-panel-posttype-extra-nav-menu-pages-event-archives" class="tabs-panel <?php
352
-			echo ( 'event-archives' === $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
352
+			echo ('event-archives' === $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive');
353 353
 			?>">
354 354
 				<ul id="extra-nav-menu-pageschecklist-event-archives" class="categorychecklist form-no-clear">
355 355
 					<?php
356 356
 					$pages = $this->_get_extra_nav_menu_pages_items();
357 357
 					$args['walker'] = $walker;
358
-					echo walk_nav_menu_tree( array_map( array( $this, '_setup_extra_nav_menu_pages_items' ), $pages), 0, (object) $args );
358
+					echo walk_nav_menu_tree(array_map(array($this, '_setup_extra_nav_menu_pages_items'), $pages), 0, (object) $args);
359 359
 					?>
360 360
 				</ul>
361 361
 			</div><!-- /.tabs-panel -->
@@ -363,18 +363,18 @@  discard block
 block discarded – undo
363 363
 			<p class="button-controls">
364 364
 				<span class="list-controls">
365 365
 					<a href="<?php
366
-						echo esc_url( add_query_arg(
366
+						echo esc_url(add_query_arg(
367 367
 							array(
368 368
 								'extra-nav-menu-pages-tab' => 'event-archives',
369 369
 								'selectall' => 1,
370 370
 							),
371
-							remove_query_arg( $removed_args )
371
+							remove_query_arg($removed_args)
372 372
 						));
373 373
 					?>#posttype-extra-nav-menu-pages>" class="select-all"><?php _e('Select All'); ?></a>
374 374
 				</span>
375 375
 
376 376
 				<span class="add-to-menu">
377
-					<input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( __( 'Add to Menu' ) ); ?>" name="add-post-type-menu-item" id="<?php esc_attr_e( 'submit-posttype-extra-nav-menu-pages' ); ?>" />
377
+					<input type="submit"<?php wp_nav_menu_disabled_check($nav_menu_selected_id); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e(__('Add to Menu')); ?>" name="add-post-type-menu-item" id="<?php esc_attr_e('submit-posttype-extra-nav-menu-pages'); ?>" />
378 378
 					<span class="spinner"></span>
379 379
 				</span>
380 380
 			</p>
@@ -395,10 +395,10 @@  discard block
 block discarded – undo
395 395
 	private function _get_extra_nav_menu_pages_items() {
396 396
 		$menuitems[] = array(
397 397
 			'title' => __('Event List', 'event_espresso'),
398
-			'url' => get_post_type_archive_link( 'espresso_events' ),
398
+			'url' => get_post_type_archive_link('espresso_events'),
399 399
 			'description' => __('Archive page for all events.', 'event_espresso')
400 400
 		);
401
-		return apply_filters( 'FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems );
401
+		return apply_filters('FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems);
402 402
 	}
403 403
 
404 404
 
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
 	 * @param $menu_item_values
411 411
 	 * @return stdClass
412 412
 	 */
413
-	private function _setup_extra_nav_menu_pages_items( $menu_item_values ) {
413
+	private function _setup_extra_nav_menu_pages_items($menu_item_values) {
414 414
 		$menu_item = new stdClass();
415 415
 		$keys = array(
416 416
 			'ID' => 0,
@@ -430,8 +430,8 @@  discard block
 block discarded – undo
430 430
 			'xfn' => ''
431 431
 		);
432 432
 
433
-		foreach ( $keys as $key => $value) {
434
-			$menu_item->{$key} = isset( $menu_item_values[ $key]) ? $menu_item_values[ $key] : $value;
433
+		foreach ($keys as $key => $value) {
434
+			$menu_item->{$key} = isset($menu_item_values[$key]) ? $menu_item_values[$key] : $value;
435 435
 		}
436 436
 		return $menu_item;
437 437
 	}
@@ -470,9 +470,9 @@  discard block
 block discarded – undo
470 470
 		 * - check if doing post processing of one of EE CPTs
471 471
 		 * - instantiate the corresponding EE CPT model for the post_type being processed.
472 472
 		 */
473
-		if ( isset( $_POST['action'], $_POST['post_type'] ) && $_POST['action'] === 'editpost' ) {
474
-			EE_Registry::instance()->load_core( 'Register_CPTs' );
475
-			EE_Register_CPTs::instantiate_cpt_models( $_POST['post_type'] );
473
+		if (isset($_POST['action'], $_POST['post_type']) && $_POST['action'] === 'editpost') {
474
+			EE_Registry::instance()->load_core('Register_CPTs');
475
+			EE_Register_CPTs::instantiate_cpt_models($_POST['post_type']);
476 476
 		}
477 477
 
478 478
 
@@ -481,8 +481,8 @@  discard block
 block discarded – undo
481 481
 		 * 'options-reading.php' core WordPress admin settings page.  This is for user-proofing.
482 482
 		 */
483 483
 		global $pagenow;
484
-		if ( $pagenow === 'options-reading.php' ) {
485
-			add_filter( 'wp_dropdown_pages', array( $this, 'modify_dropdown_pages' ) );
484
+		if ($pagenow === 'options-reading.php') {
485
+			add_filter('wp_dropdown_pages', array($this, 'modify_dropdown_pages'));
486 486
 		}
487 487
 
488 488
 	}
@@ -494,25 +494,25 @@  discard block
 block discarded – undo
494 494
 	 * @param string $output  Current output.
495 495
 	 * @return string
496 496
 	 */
497
-	public function modify_dropdown_pages( $output ) {
497
+	public function modify_dropdown_pages($output) {
498 498
 		//get critical pages
499 499
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
500 500
 
501 501
 		//split current output by line break for easier parsing.
502
-		$split_output = explode( "\n", $output );
502
+		$split_output = explode("\n", $output);
503 503
 
504 504
 		//loop through to remove any critical pages from the array.
505
-		foreach ( $critical_pages as $page_id ) {
506
-			$needle = 'value="' . $page_id . '"';
507
-			foreach( $split_output as $key => $haystack ) {
508
-				if( strpos( $haystack, $needle ) !== false ) {
509
-					unset( $split_output[$key] );
505
+		foreach ($critical_pages as $page_id) {
506
+			$needle = 'value="'.$page_id.'"';
507
+			foreach ($split_output as $key => $haystack) {
508
+				if (strpos($haystack, $needle) !== false) {
509
+					unset($split_output[$key]);
510 510
 				}
511 511
 			}
512 512
 		}
513 513
 
514 514
 		//replace output with the new contents
515
-		return implode( "\n", $split_output );
515
+		return implode("\n", $split_output);
516 516
 	}
517 517
 
518 518
 
@@ -526,36 +526,36 @@  discard block
 block discarded – undo
526 526
 	public function enqueue_admin_scripts() {
527 527
 		// this javascript is loaded on every admin page to catch any injections ee needs to add to wp run js.
528 528
 		// Note: the intention of this script is to only do TARGETED injections.  I.E, only injecting on certain script calls.
529
-		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL . 'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
529
+		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL.'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
530 530
 		// register cookie script for future dependencies
531
-		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL . 'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE );
531
+		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL.'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE);
532 532
 		// jquery_validate loading is turned OFF by default, but prior to the admin_enqueue_scripts hook, can be turned back on again via:  add_filter( 'FHEE_load_jquery_validate', '__return_true' );
533
-		if ( apply_filters( 'FHEE_load_jquery_validate', FALSE ) ) {
533
+		if (apply_filters('FHEE_load_jquery_validate', FALSE)) {
534 534
 			// register jQuery Validate
535
-			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.validate.min.js', array('jquery'), '1.15.0', TRUE);
535
+			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL.'scripts/jquery.validate.min.js', array('jquery'), '1.15.0', TRUE);
536 536
 		}
537 537
 		//joyride is turned OFF by default, but prior to the admin_enqueue_scripts hook, can be turned back on again vai: add_filter('FHEE_load_joyride', '__return_true' );
538
-		if ( apply_filters( 'FHEE_load_joyride', FALSE ) ) {
538
+		if (apply_filters('FHEE_load_joyride', FALSE)) {
539 539
 			//joyride style
540
-			wp_register_style('joyride-css', EE_THIRD_PARTY_URL . 'joyride/joyride-2.1.css', array(), '2.1');
541
-			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL . 'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION );
542
-			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL . 'joyride/modernizr.mq.js', array(), '2.1', TRUE );
540
+			wp_register_style('joyride-css', EE_THIRD_PARTY_URL.'joyride/joyride-2.1.css', array(), '2.1');
541
+			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL.'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION);
542
+			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL.'joyride/modernizr.mq.js', array(), '2.1', TRUE);
543 543
 			//joyride JS
544
-			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL . 'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE );
544
+			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL.'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE);
545 545
 			// wanna go for a joyride?
546 546
 			wp_enqueue_style('ee-joyride-css');
547 547
 			wp_enqueue_script('jquery-joyride');
548 548
 		}
549 549
 		//qtip is turned OFF by default, but prior to the admin_enqueue_scripts hook, can be turned back on again via: add_filter('FHEE_load_qtips', '__return_true' );
550
-		if ( apply_filters( 'FHEE_load_qtip', FALSE ) ) {
550
+		if (apply_filters('FHEE_load_qtip', FALSE)) {
551 551
 			EEH_Qtip_Loader::instance()->register_and_enqueue();
552 552
 		}
553 553
 		//accounting.js library
554 554
 		// @link http://josscrowcroft.github.io/accounting.js/
555
-		if ( apply_filters( 'FHEE_load_accounting_js', FALSE ) ) {
556
-			wp_register_script( 'ee-accounting', EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE );
557
-			wp_register_script( 'ee-accounting-core', EE_THIRD_PARTY_URL . 'accounting/accounting.js', array('underscore'), '0.3.2', TRUE );
558
-			wp_enqueue_script( 'ee-accounting' );
555
+		if (apply_filters('FHEE_load_accounting_js', FALSE)) {
556
+			wp_register_script('ee-accounting', EE_GLOBAL_ASSETS_URL.'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE);
557
+			wp_register_script('ee-accounting-core', EE_THIRD_PARTY_URL.'accounting/accounting.js', array('underscore'), '0.3.2', TRUE);
558
+			wp_enqueue_script('ee-accounting');
559 559
 			// array of settings to get converted to JSON array via wp_localize_script
560 560
 			$currency_config = array(
561 561
 				'currency' => array(
@@ -602,11 +602,11 @@  discard block
 block discarded – undo
602 602
 	public function get_persistent_admin_notices() {
603 603
 		// http://www.example.com/wp-admin/admin.php?page=espresso_general_settings&action=critical_pages&critical_pages_nonce=2831ce0f30
604 604
 		$args = array(
605
-			'page' => EE_Registry::instance()->REQ->is_set( 'page' ) ? EE_Registry::instance()->REQ->get( 'page' ) : '',
606
-			'action' => EE_Registry::instance()->REQ->is_set( 'action' ) ? EE_Registry::instance()->REQ->get( 'action' ) : '',
605
+			'page' => EE_Registry::instance()->REQ->is_set('page') ? EE_Registry::instance()->REQ->get('page') : '',
606
+			'action' => EE_Registry::instance()->REQ->is_set('action') ? EE_Registry::instance()->REQ->get('action') : '',
607 607
 		);
608
-		$return_url = EE_Admin_Page::add_query_args_and_nonce( $args, EE_ADMIN_URL );
609
-		echo EE_Error::get_persistent_admin_notices( $return_url );
608
+		$return_url = EE_Admin_Page::add_query_args_and_nonce($args, EE_ADMIN_URL);
609
+		echo EE_Error::get_persistent_admin_notices($return_url);
610 610
 	}
611 611
 
612 612
 
@@ -627,26 +627,26 @@  discard block
 block discarded – undo
627 627
 	 * @param $elements
628 628
 	 * @return array
629 629
 	 */
630
-	public function dashboard_glance_items( $elements ) {
630
+	public function dashboard_glance_items($elements) {
631 631
 		$events = EEM_Event::instance()->count();
632
-		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_events'), admin_url('admin.php') );
633
-		$items['events']['text'] = sprintf( _n( '%s Event', '%s Events', $events ), number_format_i18n( $events ) );
632
+		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_events'), admin_url('admin.php'));
633
+		$items['events']['text'] = sprintf(_n('%s Event', '%s Events', $events), number_format_i18n($events));
634 634
 		$items['events']['title'] = __('Click to view all Events', 'event_espresso');
635 635
 		$registrations = EEM_Registration::instance()->count(
636 636
 			array(
637 637
 				array(
638
-					'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete )
638
+					'STS_ID' => array('!=', EEM_Registration::status_id_incomplete)
639 639
 				)
640 640
 			)
641 641
 		);
642
-		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_registrations' ), admin_url('admin.php') );
643
-		$items['registrations']['text'] = sprintf( _n( '%s Registration', '%s Registrations', $registrations ), number_format_i18n($registrations) );
642
+		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_registrations'), admin_url('admin.php'));
643
+		$items['registrations']['text'] = sprintf(_n('%s Registration', '%s Registrations', $registrations), number_format_i18n($registrations));
644 644
 		$items['registrations']['title'] = __('Click to view all registrations', 'event_espresso');
645 645
 
646
-		$items = apply_filters( 'FHEE__EE_Admin__dashboard_glance_items__items', $items );
646
+		$items = apply_filters('FHEE__EE_Admin__dashboard_glance_items__items', $items);
647 647
 
648
-		foreach ( $items as $type => $item_properties ) {
649
-			$elements[] = sprintf( '<a class="ee-dashboard-link-' . $type . '" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text'] );
648
+		foreach ($items as $type => $item_properties) {
649
+			$elements[] = sprintf('<a class="ee-dashboard-link-'.$type.'" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text']);
650 650
 		}
651 651
 		return $elements;
652 652
 	}
@@ -663,31 +663,31 @@  discard block
 block discarded – undo
663 663
 	 * @throws EE_Error
664 664
 	 * @return    string
665 665
 	 */
666
-	public function check_for_invalid_datetime_formats( $value, $option ) {
666
+	public function check_for_invalid_datetime_formats($value, $option) {
667 667
 		// check for date_format or time_format
668
-		switch ( $option ) {
668
+		switch ($option) {
669 669
 			case 'date_format' :
670
-				$date_time_format = $value . ' ' . get_option('time_format');
670
+				$date_time_format = $value.' '.get_option('time_format');
671 671
 				break;
672 672
 			case 'time_format' :
673
-				$date_time_format = get_option('date_format') . ' ' . $value;
673
+				$date_time_format = get_option('date_format').' '.$value;
674 674
 				break;
675 675
 			default :
676 676
 				$date_time_format = FALSE;
677 677
 		}
678 678
 		// do we have a date_time format to check ?
679
-		if ( $date_time_format ) {
680
-			$error_msg = EEH_DTT_Helper::validate_format_string( $date_time_format );
679
+		if ($date_time_format) {
680
+			$error_msg = EEH_DTT_Helper::validate_format_string($date_time_format);
681 681
 
682
-			if ( is_array( $error_msg ) ) {
683
-				$msg = '<p>' . sprintf( __( 'The following date time "%s" ( %s ) is difficult to be properly parsed by PHP for the following reasons:', 'event_espresso' ), date( $date_time_format ) , $date_time_format  ) . '</p><p><ul>';
682
+			if (is_array($error_msg)) {
683
+				$msg = '<p>'.sprintf(__('The following date time "%s" ( %s ) is difficult to be properly parsed by PHP for the following reasons:', 'event_espresso'), date($date_time_format), $date_time_format).'</p><p><ul>';
684 684
 
685 685
 
686
-				foreach ( $error_msg as $error ) {
687
-					$msg .= '<li>' . $error . '</li>';
686
+				foreach ($error_msg as $error) {
687
+					$msg .= '<li>'.$error.'</li>';
688 688
 				}
689 689
 
690
-				$msg .= '</ul></p><p>' . sprintf( __( '%sPlease note that your date and time formats have been reset to "F j, Y" and "g:i a" respectively.%s', 'event_espresso' ), '<span style="color:#D54E21;">', '</span>' ) . '</p>';
690
+				$msg .= '</ul></p><p>'.sprintf(__('%sPlease note that your date and time formats have been reset to "F j, Y" and "g:i a" respectively.%s', 'event_espresso'), '<span style="color:#D54E21;">', '</span>').'</p>';
691 691
 
692 692
 				// trigger WP settings error
693 693
 				add_settings_error(
@@ -697,7 +697,7 @@  discard block
 block discarded – undo
697 697
 				);
698 698
 
699 699
 				// set format to something valid
700
-				switch ( $option ) {
700
+				switch ($option) {
701 701
 					case 'date_format' :
702 702
 						$value = 'F j, Y';
703 703
 						break;
@@ -719,8 +719,8 @@  discard block
 block discarded – undo
719 719
 	 * @param $content
720 720
 	 * @return    string
721 721
 	 */
722
-	public function its_eSpresso( $content ) {
723
-		return str_replace( '[EXPRESSO_', '[ESPRESSO_', $content );
722
+	public function its_eSpresso($content) {
723
+		return str_replace('[EXPRESSO_', '[ESPRESSO_', $content);
724 724
 	}
725 725
 
726 726
 
@@ -732,7 +732,7 @@  discard block
 block discarded – undo
732 732
 	 *  @return 	string
733 733
 	 */
734 734
 	public function espresso_admin_footer() {
735
-		return \EEH_Template::powered_by_event_espresso( 'aln-cntr' );
735
+		return \EEH_Template::powered_by_event_espresso('aln-cntr');
736 736
 	}
737 737
 
738 738
 
@@ -751,12 +751,12 @@  discard block
 block discarded – undo
751 751
 	 * @param array $config
752 752
 	 * @return void
753 753
 	 */
754
-	public static function register_ee_admin_page( $page_basename, $page_path, $config = array() ) {
755
-		EE_Error::doing_it_wrong( __METHOD__, sprintf( __('Usage is deprecated.  Use EE_Register_Admin_Page::register() for registering the %s admin page.', 'event_espresso'), $page_basename), '4.3' );
756
-		if ( class_exists( 'EE_Register_Admin_Page' ) ) {
754
+	public static function register_ee_admin_page($page_basename, $page_path, $config = array()) {
755
+		EE_Error::doing_it_wrong(__METHOD__, sprintf(__('Usage is deprecated.  Use EE_Register_Admin_Page::register() for registering the %s admin page.', 'event_espresso'), $page_basename), '4.3');
756
+		if (class_exists('EE_Register_Admin_Page')) {
757 757
 			$config['page_path'] = $page_path;
758 758
 		}
759
-		EE_Register_Admin_Page::register( $page_basename, $config );
759
+		EE_Register_Admin_Page::register($page_basename, $config);
760 760
 
761 761
 	}
762 762
 
@@ -769,7 +769,7 @@  discard block
 block discarded – undo
769 769
 	 * @param  \WP_Post $post
770 770
 	 * @return void
771 771
 	 */
772
-	public static function parse_post_content_on_save( $post_ID, $post ) {
772
+	public static function parse_post_content_on_save($post_ID, $post) {
773 773
 		EE_Error::doing_it_wrong(
774 774
 			__METHOD__,
775 775
 			__(
@@ -778,7 +778,7 @@  discard block
 block discarded – undo
778 778
 			),
779 779
 			'4.8.41'
780 780
 		);
781
-		EventEspresso\core\admin\PostShortcodeTracking::parse_post_content_on_save( $post_ID, $post );
781
+		EventEspresso\core\admin\PostShortcodeTracking::parse_post_content_on_save($post_ID, $post);
782 782
 	}
783 783
 
784 784
 
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
 	 * @param  $value
792 792
 	 * @return void
793 793
 	 */
794
-	public function reset_page_for_posts_on_change( $option, $old_value, $value ) {
794
+	public function reset_page_for_posts_on_change($option, $old_value, $value) {
795 795
 		EE_Error::doing_it_wrong(
796 796
 			__METHOD__,
797 797
 			__(
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
 			),
801 801
 			'4.8.41'
802 802
 		);
803
-		EventEspresso\core\admin\PostShortcodeTracking::reset_page_for_posts_on_change( $option, $old_value, $value );
803
+		EventEspresso\core\admin\PostShortcodeTracking::reset_page_for_posts_on_change($option, $old_value, $value);
804 804
 	}
805 805
 
806 806
 }
Please login to merge, or discard this patch.
line_item_filters/EE_Specific_Registrations_Line_Item_Filter.class.php 1 patch
Spacing   +35 added lines, -35 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
 
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 	 *
51 51
 	 * @param EE_Registration[] $registrations
52 52
 	 */
53
-	public function __construct( $registrations ) {
53
+	public function __construct($registrations) {
54 54
 		$this->_registrations = $registrations;
55
-		$this->_calculate_registrations_per_line_item_code( $registrations );
55
+		$this->_calculate_registrations_per_line_item_code($registrations);
56 56
 		// these reg statuses should NOT increment the line item quantity
57 57
 		$this->_closed_reg_statuses = EEM_Registration::closed_reg_statuses();
58 58
 	}
@@ -65,20 +65,20 @@  discard block
 block discarded – undo
65 65
 	 * @param EE_Registration[] $registrations
66 66
 	 * @return void
67 67
 	 */
68
-	protected function _calculate_registrations_per_line_item_code( $registrations ) {
69
-		foreach ( $registrations as $registration ) {
68
+	protected function _calculate_registrations_per_line_item_code($registrations) {
69
+		foreach ($registrations as $registration) {
70 70
 			$line_item_code = EEM_Line_Item::instance()->get_var(
71 71
 				EEM_Line_Item::instance()->line_item_for_registration_query_params(
72 72
 					$registration,
73
-					array( 'limit' => 1 )
73
+					array('limit' => 1)
74 74
 				),
75 75
 				'LIN_code'
76 76
 			);
77
-			if ( $line_item_code ) {
78
-				if ( ! isset( $this->_line_item_registrations[ $line_item_code ] ) ) {
79
-					$this->_line_item_registrations[ $line_item_code ] = array();
77
+			if ($line_item_code) {
78
+				if ( ! isset($this->_line_item_registrations[$line_item_code])) {
79
+					$this->_line_item_registrations[$line_item_code] = array();
80 80
 				}
81
-				$this->_line_item_registrations[ $line_item_code ][ $registration->ID() ] = $registration;
81
+				$this->_line_item_registrations[$line_item_code][$registration->ID()] = $registration;
82 82
 			}
83 83
 		}
84 84
 	}
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
 	 * @param EEI_Line_Item $line_item
93 93
 	 * @return \EEI_Line_Item
94 94
 	 */
95
-	public function process( EEI_Line_Item $line_item ) {
96
-		$this->_adjust_line_item_quantity( $line_item );
97
-		if ( ! $line_item->children() ) {
95
+	public function process(EEI_Line_Item $line_item) {
96
+		$this->_adjust_line_item_quantity($line_item);
97
+		if ( ! $line_item->children()) {
98 98
 			return $line_item;
99 99
 		}
100 100
 		//the original running total (taking ALL tickets into account)
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
 		$running_total_of_children_under_consideration = 0;
104 104
 		// let's also track the quantity of tickets that pertain to the registrations
105 105
 		$total_child_ticket_quantity = 0;
106
-		foreach ( $line_item->children() as $child_line_item ) {
106
+		foreach ($line_item->children() as $child_line_item) {
107 107
 			$original_li_total = $child_line_item->is_percent()
108 108
 				? $running_total_of_children * $child_line_item->percent() / 100
109 109
 				: $child_line_item->unit_price() * $child_line_item->quantity();
110
-			$this->process( $child_line_item );
110
+			$this->process($child_line_item);
111 111
 			// If this line item is a normal line item that isn't for a ticket,
112 112
 			// we want to modify its total (and unit price if not a percentage line item)
113 113
 			// so it reflects only that portion of the surcharge/discount shared by these registrations
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
 				$child_line_item->set_total(
122 122
 					$running_total_of_children_under_consideration * $percent_of_running_total
123 123
 				);
124
-				if ( ! $child_line_item->is_percent() ) {
125
-					$child_line_item->set_unit_price( $child_line_item->total() / $child_line_item->quantity() );
124
+				if ( ! $child_line_item->is_percent()) {
125
+					$child_line_item->set_unit_price($child_line_item->total() / $child_line_item->quantity());
126 126
 				}
127 127
 			} else if (
128 128
 				$line_item->type() === EEM_Line_Item::type_line_item
@@ -139,28 +139,28 @@  discard block
 block discarded – undo
139 139
 							// unless it IS a cancellation and the current registration is cancelled
140 140
 							$child_line_item->is_cancelled()
141 141
 							&& $this->_current_registration instanceof EE_Registration
142
-							&& in_array( $this->_current_registration->status_ID(), $this->_closed_reg_statuses )
142
+							&& in_array($this->_current_registration->status_ID(), $this->_closed_reg_statuses)
143 143
 						)
144 144
 					)
145 145
 				) {
146
-					$child_line_item->set_quantity( $line_item->quantity() );
147
-					$child_line_item->set_total( $child_line_item->unit_price() * $child_line_item->quantity() );
146
+					$child_line_item->set_quantity($line_item->quantity());
147
+					$child_line_item->set_total($child_line_item->unit_price() * $child_line_item->quantity());
148 148
 				}
149 149
 			}
150 150
 			$running_total_of_children += $original_li_total;
151 151
 			$running_total_of_children_under_consideration += $child_line_item->total();
152
-			if ( $child_line_item->OBJ_type() == 'Ticket' ) {
152
+			if ($child_line_item->OBJ_type() == 'Ticket') {
153 153
 				$total_child_ticket_quantity += $child_line_item->quantity();
154 154
 			}
155 155
 		}
156
-		$line_item->set_total( $running_total_of_children_under_consideration );
157
-		if ( $line_item->quantity() ) {
158
-			$line_item->set_unit_price( $running_total_of_children_under_consideration / $line_item->quantity() );
156
+		$line_item->set_total($running_total_of_children_under_consideration);
157
+		if ($line_item->quantity()) {
158
+			$line_item->set_unit_price($running_total_of_children_under_consideration / $line_item->quantity());
159 159
 		} else {
160
-			$line_item->set_unit_price( 0 );
160
+			$line_item->set_unit_price(0);
161 161
 		}
162
-		if ( $line_item->OBJ_type() == 'Event' ) {
163
-			$line_item->set_quantity( $total_child_ticket_quantity );
162
+		if ($line_item->OBJ_type() == 'Event') {
163
+			$line_item->set_quantity($total_child_ticket_quantity);
164 164
 		}
165 165
 		return $line_item;
166 166
 	}
@@ -174,18 +174,18 @@  discard block
 block discarded – undo
174 174
 	 * @param EEI_Line_Item $line_item
175 175
 	 * @return EEI_Line_Item
176 176
 	 */
177
-	protected function _adjust_line_item_quantity( EEI_Line_Item $line_item ) {
177
+	protected function _adjust_line_item_quantity(EEI_Line_Item $line_item) {
178 178
 		// is this a ticket ?
179
-		if ( $line_item->type() === EEM_Line_Item::type_line_item && $line_item->OBJ_type() == 'Ticket' ) {
179
+		if ($line_item->type() === EEM_Line_Item::type_line_item && $line_item->OBJ_type() == 'Ticket') {
180 180
 			$this->_current_registration = null;
181 181
 			$quantity = 0;
182 182
 			// if this ticket is billable at this moment, then we should have a positive quantity
183 183
 			if (
184
-				isset( $this->_line_item_registrations[ $line_item->code() ] )
185
-				&& is_array( $this->_line_item_registrations[ $line_item->code() ] )
184
+				isset($this->_line_item_registrations[$line_item->code()])
185
+				&& is_array($this->_line_item_registrations[$line_item->code()])
186 186
 			) {
187 187
 				// set quantity based on number of open registrations for this ticket
188
-				foreach ( $this->_line_item_registrations[ $line_item->code() ] as $registration ) {
188
+				foreach ($this->_line_item_registrations[$line_item->code()] as $registration) {
189 189
 					if (
190 190
 						$registration instanceof EE_Registration
191 191
 					) {
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
 					}
195 195
 				}
196 196
 			}
197
-			$line_item->set_quantity( $quantity );
198
-			$line_item->set_total( $line_item->unit_price() * $line_item->quantity() );
197
+			$line_item->set_quantity($quantity);
198
+			$line_item->set_total($line_item->unit_price() * $line_item->quantity());
199 199
 		}
200 200
 		return $line_item;
201 201
 	}
Please login to merge, or discard this patch.
core/db_classes/EE_Line_Item.class.php 1 patch
Spacing   +215 added lines, -215 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 	 *                             		    date_format and the second value is the time format
51 51
 	 * @return EE_Line_Item
52 52
 	 */
53
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
54
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
55
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
53
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
54
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
55
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
56 56
 	}
57 57
 
58 58
 
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
 	 *                          		the website will be used.
64 64
 	 * @return EE_Line_Item
65 65
 	 */
66
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
67
-		return new self( $props_n_values, TRUE, $timezone );
66
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
67
+		return new self($props_n_values, TRUE, $timezone);
68 68
 	}
69 69
 
70 70
 
@@ -75,10 +75,10 @@  discard block
 block discarded – undo
75 75
 	 * @param bool   $bydb
76 76
 	 * @param string $timezone
77 77
 	 */
78
-	protected function __construct( $fieldValues = array(), $bydb = FALSE, $timezone = '' ) {
79
-		parent::__construct( $fieldValues, $bydb, $timezone );
80
-		if ( ! $this->get( 'LIN_code' ) ) {
81
-			$this->set_code( $this->generate_code() );
78
+	protected function __construct($fieldValues = array(), $bydb = FALSE, $timezone = '') {
79
+		parent::__construct($fieldValues, $bydb, $timezone);
80
+		if ( ! $this->get('LIN_code')) {
81
+			$this->set_code($this->generate_code());
82 82
 		}
83 83
 	}
84 84
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 * @return int
90 90
 	 */
91 91
 	public function ID() {
92
-		return $this->get( 'LIN_ID' );
92
+		return $this->get('LIN_ID');
93 93
 	}
94 94
 
95 95
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 * @return int
100 100
 	 */
101 101
 	public function TXN_ID() {
102
-		return $this->get( 'TXN_ID' );
102
+		return $this->get('TXN_ID');
103 103
 	}
104 104
 
105 105
 
@@ -108,8 +108,8 @@  discard block
 block discarded – undo
108 108
 	 * Sets TXN_ID
109 109
 	 * @param int $TXN_ID
110 110
 	 */
111
-	public function set_TXN_ID( $TXN_ID ) {
112
-		$this->set( 'TXN_ID', $TXN_ID );
111
+	public function set_TXN_ID($TXN_ID) {
112
+		$this->set('TXN_ID', $TXN_ID);
113 113
 	}
114 114
 
115 115
 
@@ -119,9 +119,9 @@  discard block
 block discarded – undo
119 119
 	 * @return string
120 120
 	 */
121 121
 	public function name() {
122
-		$name =  $this->get( 'LIN_name' );
123
-		if( ! $name ){
124
-			$name = ucwords( str_replace( '-', ' ', $this->type() ) );
122
+		$name = $this->get('LIN_name');
123
+		if ( ! $name) {
124
+			$name = ucwords(str_replace('-', ' ', $this->type()));
125 125
 		}
126 126
 		return $name;
127 127
 	}
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 	 * Sets name
133 133
 	 * @param string $name
134 134
 	 */
135
-	public function set_name( $name ) {
136
-		$this->set( 'LIN_name', $name );
135
+	public function set_name($name) {
136
+		$this->set('LIN_name', $name);
137 137
 	}
138 138
 
139 139
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 * @return string
144 144
 	 */
145 145
 	public function desc() {
146
-		return $this->get( 'LIN_desc' );
146
+		return $this->get('LIN_desc');
147 147
 	}
148 148
 
149 149
 
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * Sets desc
153 153
 	 * @param string $desc
154 154
 	 */
155
-	public function set_desc( $desc ) {
156
-		$this->set( 'LIN_desc', $desc );
155
+	public function set_desc($desc) {
156
+		$this->set('LIN_desc', $desc);
157 157
 	}
158 158
 
159 159
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 * @return int
164 164
 	 */
165 165
 	public function quantity() {
166
-		return $this->get( 'LIN_quantity' );
166
+		return $this->get('LIN_quantity');
167 167
 	}
168 168
 
169 169
 
@@ -172,8 +172,8 @@  discard block
 block discarded – undo
172 172
 	 * Sets quantity
173 173
 	 * @param int $quantity
174 174
 	 */
175
-	function set_quantity( $quantity ) {
176
-		$this->set( 'LIN_quantity', max( $quantity, 0 ) );
175
+	function set_quantity($quantity) {
176
+		$this->set('LIN_quantity', max($quantity, 0));
177 177
 	}
178 178
 
179 179
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 * @return string
184 184
 	 */
185 185
 	public function OBJ_ID() {
186
-		return $this->get( 'OBJ_ID' );
186
+		return $this->get('OBJ_ID');
187 187
 	}
188 188
 
189 189
 
@@ -192,8 +192,8 @@  discard block
 block discarded – undo
192 192
 	 * Sets item_id
193 193
 	 * @param string $item_id
194 194
 	 */
195
-	public function set_OBJ_ID( $item_id ) {
196
-		$this->set( 'OBJ_ID', $item_id );
195
+	public function set_OBJ_ID($item_id) {
196
+		$this->set('OBJ_ID', $item_id);
197 197
 	}
198 198
 
199 199
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
 	 * @return string
204 204
 	 */
205 205
 	public function OBJ_type() {
206
-		return $this->get( 'OBJ_type' );
206
+		return $this->get('OBJ_type');
207 207
 	}
208 208
 
209 209
 
@@ -240,8 +240,8 @@  discard block
 block discarded – undo
240 240
 	 * Sets item_type
241 241
 	 * @param string $OBJ_type
242 242
 	 */
243
-	public function set_OBJ_type( $OBJ_type ) {
244
-		$this->set( 'OBJ_type', $OBJ_type );
243
+	public function set_OBJ_type($OBJ_type) {
244
+		$this->set('OBJ_type', $OBJ_type);
245 245
 	}
246 246
 
247 247
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 	 * @return float
252 252
 	 */
253 253
 	public function unit_price() {
254
-		return $this->get( 'LIN_unit_price' );
254
+		return $this->get('LIN_unit_price');
255 255
 	}
256 256
 
257 257
 
@@ -261,8 +261,8 @@  discard block
 block discarded – undo
261 261
 	 *
262 262
 	 * @param float $unit_price
263 263
 	 */
264
-	public function set_unit_price( $unit_price ) {
265
-		$this->set( 'LIN_unit_price', $unit_price );
264
+	public function set_unit_price($unit_price) {
265
+		$this->set('LIN_unit_price', $unit_price);
266 266
 	}
267 267
 
268 268
 
@@ -273,19 +273,19 @@  discard block
 block discarded – undo
273 273
 	 * @return boolean
274 274
 	 */
275 275
 	public function is_percent() {
276
-		if( $this->is_tax_sub_total() ) {
276
+		if ($this->is_tax_sub_total()) {
277 277
 			//tax subtotals HAVE a percent on them, that percentage only applies
278 278
 			//to taxable items, so its' an exception. Treat it like a flat line item
279 279
 			return false;
280 280
 		}
281
-		$unit_price = abs( $this->get( 'LIN_unit_price' ) );
282
-		$percent = abs( $this->get( 'LIN_percent' ) );
283
-		if ( $unit_price < .001 && $percent ) {
281
+		$unit_price = abs($this->get('LIN_unit_price'));
282
+		$percent = abs($this->get('LIN_percent'));
283
+		if ($unit_price < .001 && $percent) {
284 284
 			return TRUE;
285
-		} elseif ( $unit_price >= .001 && !$percent ) {
285
+		} elseif ($unit_price >= .001 && ! $percent) {
286 286
 			return FALSE;
287
-		} elseif ( $unit_price >= .001 && $percent ) {
288
-			throw new EE_Error( sprintf( __( "A Line Item can not have a unit price of (%s) AND a percent (%s)!", "event_espresso" ), $unit_price, $percent ) );
287
+		} elseif ($unit_price >= .001 && $percent) {
288
+			throw new EE_Error(sprintf(__("A Line Item can not have a unit price of (%s) AND a percent (%s)!", "event_espresso"), $unit_price, $percent));
289 289
 		} else {
290 290
 			// if they're both 0, assume its not a percent item
291 291
 			return FALSE;
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
 	 * @return float
300 300
 	 */
301 301
 	public function percent() {
302
-		return $this->get( 'LIN_percent' );
302
+		return $this->get('LIN_percent');
303 303
 	}
304 304
 
305 305
 
@@ -308,8 +308,8 @@  discard block
 block discarded – undo
308 308
 	 * Sets percent (between 100-0.01)
309 309
 	 * @param float $percent
310 310
 	 */
311
-	public function set_percent( $percent ) {
312
-		$this->set( 'LIN_percent', $percent );
311
+	public function set_percent($percent) {
312
+		$this->set('LIN_percent', $percent);
313 313
 	}
314 314
 
315 315
 
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	 * @return float
320 320
 	 */
321 321
 	public function total() {
322
-		return $this->get( 'LIN_total' );
322
+		return $this->get('LIN_total');
323 323
 	}
324 324
 
325 325
 
@@ -328,8 +328,8 @@  discard block
 block discarded – undo
328 328
 	 * Sets total
329 329
 	 * @param float $total
330 330
 	 */
331
-	public function set_total( $total ) {
332
-		$this->set( 'LIN_total', $total );
331
+	public function set_total($total) {
332
+		$this->set('LIN_total', $total);
333 333
 	}
334 334
 
335 335
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 	 * @return int
340 340
 	 */
341 341
 	public function order() {
342
-		return $this->get( 'LIN_order' );
342
+		return $this->get('LIN_order');
343 343
 	}
344 344
 
345 345
 
@@ -348,8 +348,8 @@  discard block
 block discarded – undo
348 348
 	 * Sets order
349 349
 	 * @param int $order
350 350
 	 */
351
-	public function set_order( $order ) {
352
-		$this->set( 'LIN_order', $order );
351
+	public function set_order($order) {
352
+		$this->set('LIN_order', $order);
353 353
 	}
354 354
 
355 355
 
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
 	 * @return int
360 360
 	 */
361 361
 	public function parent_ID() {
362
-		return $this->get( 'LIN_parent' );
362
+		return $this->get('LIN_parent');
363 363
 	}
364 364
 
365 365
 
@@ -368,8 +368,8 @@  discard block
 block discarded – undo
368 368
 	 * Sets parent
369 369
 	 * @param int $parent
370 370
 	 */
371
-	public function set_parent_ID( $parent ) {
372
-		$this->set( 'LIN_parent', $parent );
371
+	public function set_parent_ID($parent) {
372
+		$this->set('LIN_parent', $parent);
373 373
 	}
374 374
 
375 375
 
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 	 * @return string
380 380
 	 */
381 381
 	public function type() {
382
-		return $this->get( 'LIN_type' );
382
+		return $this->get('LIN_type');
383 383
 	}
384 384
 
385 385
 
@@ -388,8 +388,8 @@  discard block
 block discarded – undo
388 388
 	 * Sets type
389 389
 	 * @param string $type
390 390
 	 */
391
-	public function set_type( $type ) {
392
-		$this->set( 'LIN_type', $type );
391
+	public function set_type($type) {
392
+		$this->set('LIN_type', $type);
393 393
 	}
394 394
 
395 395
 
@@ -402,8 +402,8 @@  discard block
 block discarded – undo
402 402
 	 * @return EE_Line_Item
403 403
 	 */
404 404
 	public function parent() {
405
-		if( $this->ID() ) {
406
-			return $this->get_model()->get_one_by_ID( $this->parent_ID() );
405
+		if ($this->ID()) {
406
+			return $this->get_model()->get_one_by_ID($this->parent_ID());
407 407
 		} else {
408 408
 			return $this->_parent;
409 409
 		}
@@ -416,13 +416,13 @@  discard block
 block discarded – undo
416 416
 	 * @return EE_Line_Item[]
417 417
 	 */
418 418
 	public function children() {
419
-		if ( $this->ID() ) {
419
+		if ($this->ID()) {
420 420
 			return $this->get_model()->get_all(
421 421
 					array(
422
-						array( 'LIN_parent' => $this->ID() ),
423
-						'order_by' => array( 'LIN_order' => 'ASC' ) ) );
422
+						array('LIN_parent' => $this->ID()),
423
+						'order_by' => array('LIN_order' => 'ASC') ) );
424 424
 		} else {
425
-			if ( ! is_array( $this->_children ) ) {
425
+			if ( ! is_array($this->_children)) {
426 426
 				$this->_children = array();
427 427
 			}
428 428
 			return $this->_children;
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
 	 * @return string
437 437
 	 */
438 438
 	public function code() {
439
-		return $this->get( 'LIN_code' );
439
+		return $this->get('LIN_code');
440 440
 	}
441 441
 
442 442
 
@@ -445,8 +445,8 @@  discard block
 block discarded – undo
445 445
 	 * Sets code
446 446
 	 * @param string $code
447 447
 	 */
448
-	public function set_code( $code ) {
449
-		$this->set( 'LIN_code', $code );
448
+	public function set_code($code) {
449
+		$this->set('LIN_code', $code);
450 450
 	}
451 451
 
452 452
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 	 * @return boolean
457 457
 	 */
458 458
 	public function is_taxable() {
459
-		return $this->get( 'LIN_is_taxable' );
459
+		return $this->get('LIN_is_taxable');
460 460
 	}
461 461
 
462 462
 
@@ -465,8 +465,8 @@  discard block
 block discarded – undo
465 465
 	 * Sets is_taxable
466 466
 	 * @param boolean $is_taxable
467 467
 	 */
468
-	public function set_is_taxable( $is_taxable ) {
469
-		$this->set( 'LIN_is_taxable', $is_taxable );
468
+	public function set_is_taxable($is_taxable) {
469
+		$this->set('LIN_is_taxable', $is_taxable);
470 470
 	}
471 471
 
472 472
 
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
 	 */
482 482
 	public function get_object() {
483 483
 		$model_name_of_related_obj = $this->OBJ_type();
484
-		return $this->get_model()->has_relation(  $model_name_of_related_obj ) ? $this->get_first_related( $model_name_of_related_obj ) : NULL;
484
+		return $this->get_model()->has_relation($model_name_of_related_obj) ? $this->get_first_related($model_name_of_related_obj) : NULL;
485 485
 	}
486 486
 
487 487
 
@@ -492,11 +492,11 @@  discard block
 block discarded – undo
492 492
 	 * @param array $query_params
493 493
 	 * @return EE_Ticket
494 494
 	 */
495
-	public function ticket( $query_params = array() ) {
495
+	public function ticket($query_params = array()) {
496 496
 		//we're going to assume that when this method is called we always want to receive the attached ticket EVEN if that ticket is archived.  This can be overridden via the incoming $query_params argument
497
-		$remove_defaults = array( 'default_where_conditions' => 'none' );
498
-		$query_params = array_merge( $remove_defaults, $query_params );
499
-		return $this->get_first_related( 'Ticket', $query_params );
497
+		$remove_defaults = array('default_where_conditions' => 'none');
498
+		$query_params = array_merge($remove_defaults, $query_params);
499
+		return $this->get_first_related('Ticket', $query_params);
500 500
 	}
501 501
 
502 502
 
@@ -506,11 +506,11 @@  discard block
 block discarded – undo
506 506
 	 * @return EE_Datetime | NULL
507 507
 	 */
508 508
 	public function get_ticket_datetime() {
509
-		if ( $this->OBJ_type() === 'Ticket' ) {
509
+		if ($this->OBJ_type() === 'Ticket') {
510 510
 			$ticket = $this->ticket();
511
-			if ( $ticket instanceof EE_Ticket ) {
511
+			if ($ticket instanceof EE_Ticket) {
512 512
 				$datetime = $ticket->first_datetime();
513
-				if ( $datetime instanceof EE_Datetime ) {
513
+				if ($datetime instanceof EE_Datetime) {
514 514
 					return $datetime;
515 515
 				}
516 516
 			}
@@ -526,9 +526,9 @@  discard block
 block discarded – undo
526 526
 	 * @return string
527 527
 	 */
528 528
 	public function ticket_event_name() {
529
-		$event_name = __( "Unknown", "event_espresso" );
529
+		$event_name = __("Unknown", "event_espresso");
530 530
 		$event = $this->ticket_event();
531
-		if ( $event instanceof EE_Event ) {
531
+		if ($event instanceof EE_Event) {
532 532
 			$event_name = $event->name();
533 533
 		}
534 534
 		return $event_name;
@@ -542,9 +542,9 @@  discard block
 block discarded – undo
542 542
 	public function ticket_event() {
543 543
 		$event = null;
544 544
 		$ticket = $this->ticket();
545
-		if ( $ticket instanceof EE_Ticket ) {
545
+		if ($ticket instanceof EE_Ticket) {
546 546
 			$datetime = $ticket->first_datetime();
547
-			if ( $datetime instanceof EE_Datetime ) {
547
+			if ($datetime instanceof EE_Datetime) {
548 548
 				$event = $datetime->event();
549 549
 			}
550 550
 		}
@@ -559,11 +559,11 @@  discard block
 block discarded – undo
559 559
 	 * @param string $time_format
560 560
 	 * @return string
561 561
 	 */
562
-	public function ticket_datetime_start( $date_format = '', $time_format = '' ) {
563
-		$first_datetime_string = __( "Unknown", "event_espresso" );
562
+	public function ticket_datetime_start($date_format = '', $time_format = '') {
563
+		$first_datetime_string = __("Unknown", "event_espresso");
564 564
 		$datetime = $this->get_ticket_datetime();
565
-		if ( $datetime ) {
566
-			$first_datetime_string = $datetime->start_date_and_time( $date_format, $time_format );
565
+		if ($datetime) {
566
+			$first_datetime_string = $datetime->start_date_and_time($date_format, $time_format);
567 567
 		}
568 568
 		return $first_datetime_string;
569 569
 	}
@@ -578,26 +578,26 @@  discard block
 block discarded – undo
578 578
 	 * @return bool success
579 579
 	 * @throws \EE_Error
580 580
 	 */
581
-	public function add_child_line_item( EEI_Line_Item $line_item, $set_order = true ) {
581
+	public function add_child_line_item(EEI_Line_Item $line_item, $set_order = true) {
582 582
 		// should we calculate the LIN_order for this line item ?
583
-		if ( $set_order || $line_item->order() === null ) {
584
-			$line_item->set_order( count( $this->children() ) );
583
+		if ($set_order || $line_item->order() === null) {
584
+			$line_item->set_order(count($this->children()));
585 585
 		}
586
-		if ( $this->ID() ) {
586
+		if ($this->ID()) {
587 587
 			//check for any duplicate line items (with the same code), if so, this replaces it
588
-			$line_item_with_same_code = $this->get_child_line_item(  $line_item->code() );
589
-			if( $line_item_with_same_code instanceof EE_Line_Item && $line_item_with_same_code !== $line_item ) {
590
-				$this->delete_child_line_item( $line_item_with_same_code->code() );
588
+			$line_item_with_same_code = $this->get_child_line_item($line_item->code());
589
+			if ($line_item_with_same_code instanceof EE_Line_Item && $line_item_with_same_code !== $line_item) {
590
+				$this->delete_child_line_item($line_item_with_same_code->code());
591 591
 			}
592
-			$line_item->set_parent_ID( $this->ID() );
593
-			if( $this->TXN_ID() ){
594
-				$line_item->set_TXN_ID( $this->TXN_ID() );
592
+			$line_item->set_parent_ID($this->ID());
593
+			if ($this->TXN_ID()) {
594
+				$line_item->set_TXN_ID($this->TXN_ID());
595 595
 			}
596 596
 			return $line_item->save();
597 597
 		} else {
598
-			$this->_children[ $line_item->code() ] = $line_item;
599
-			if( $line_item->parent() != $this ) {
600
-				$line_item->set_parent( $this );
598
+			$this->_children[$line_item->code()] = $line_item;
599
+			if ($line_item->parent() != $this) {
600
+				$line_item->set_parent($this);
601 601
 			}
602 602
 			return TRUE;
603 603
 		}
@@ -611,16 +611,16 @@  discard block
 block discarded – undo
611 611
 	 * @param EE_Line_Item $line_item
612 612
 	 *
613 613
 	 */
614
-	public function set_parent( $line_item ) {
615
-		if ( $this->ID() ) {
616
-			if( ! $line_item->ID() ) {
614
+	public function set_parent($line_item) {
615
+		if ($this->ID()) {
616
+			if ( ! $line_item->ID()) {
617 617
 				$line_item->save();
618 618
 			}
619
-			$this->set_parent_ID( $line_item->ID() );
619
+			$this->set_parent_ID($line_item->ID());
620 620
 			$this->save();
621 621
 		} else {
622 622
 			$this->_parent = $line_item;
623
-			$this->set_parent_ID( $line_item->ID() );
623
+			$this->set_parent_ID($line_item->ID());
624 624
 		}
625 625
 	}
626 626
 
@@ -633,11 +633,11 @@  discard block
 block discarded – undo
633 633
 	 * @param string $code
634 634
 	 * @return EE_Line_Item
635 635
 	 */
636
-	public function get_child_line_item( $code ) {
637
-		if ( $this->ID() ) {
638
-			return $this->get_model()->get_one( array( array( 'LIN_parent' => $this->ID(), 'LIN_code' => $code ) ) );
636
+	public function get_child_line_item($code) {
637
+		if ($this->ID()) {
638
+			return $this->get_model()->get_one(array(array('LIN_parent' => $this->ID(), 'LIN_code' => $code)));
639 639
 		} else {
640
-			return isset( $this->_children[ $code ] ) ? $this->_children[ $code ] : null;
640
+			return isset($this->_children[$code]) ? $this->_children[$code] : null;
641 641
 		}
642 642
 	}
643 643
 
@@ -648,10 +648,10 @@  discard block
 block discarded – undo
648 648
 	 * @return int
649 649
 	 */
650 650
 	public function delete_children_line_items() {
651
-		if ( $this->ID() ) {
652
-			return $this->get_model()->delete( array( array( 'LIN_parent' => $this->ID() ) ) );
651
+		if ($this->ID()) {
652
+			return $this->get_model()->delete(array(array('LIN_parent' => $this->ID())));
653 653
 		} else {
654
-			$count = count( $this->_children );
654
+			$count = count($this->_children);
655 655
 			$this->_children = array();
656 656
 			return $count;
657 657
 		}
@@ -668,25 +668,25 @@  discard block
 block discarded – undo
668 668
 	 * @param bool $stop_search_once_found
669 669
 	 * @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)
670 670
 	 */
671
-	public function delete_child_line_item( $code, $stop_search_once_found = true ) {
672
-		if ( $this->ID() ) {
671
+	public function delete_child_line_item($code, $stop_search_once_found = true) {
672
+		if ($this->ID()) {
673 673
 			$items_deleted = 0;
674
-			if( $this->code() == $code ) {
675
-				$items_deleted += EEH_Line_Item::delete_all_child_items( $this );
674
+			if ($this->code() == $code) {
675
+				$items_deleted += EEH_Line_Item::delete_all_child_items($this);
676 676
 				$items_deleted += (int) $this->delete();
677
-				if( $stop_search_once_found ){
677
+				if ($stop_search_once_found) {
678 678
 					return $items_deleted;
679 679
 				}
680 680
 			}
681
-			foreach( $this->children() as $child_line_item ) {
682
-				$items_deleted += $child_line_item->delete_child_line_item( $code, $stop_search_once_found );
681
+			foreach ($this->children() as $child_line_item) {
682
+				$items_deleted += $child_line_item->delete_child_line_item($code, $stop_search_once_found);
683 683
 			}
684 684
 			return $items_deleted;
685 685
 		} else {
686
-			if( isset( $this->_children[ $code ] ) ) {
687
-				unset( $this->_children[ $code ] );
686
+			if (isset($this->_children[$code])) {
687
+				unset($this->_children[$code]);
688 688
 				return 1;
689
-			}else{
689
+			} else {
690 690
 				return 0;
691 691
 			}
692 692
 		}
@@ -699,9 +699,9 @@  discard block
 block discarded – undo
699 699
 	 * @return boolean
700 700
 	 */
701 701
 	public function delete_if_childless_subtotal() {
702
-		if( $this->ID() &&
702
+		if ($this->ID() &&
703 703
 				$this->type() == EEM_Line_Item::type_sub_total &&
704
-				! $this->children() ) {
704
+				! $this->children()) {
705 705
 			return $this->delete();
706 706
 		} else {
707 707
 			return false;
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
 	 */
717 717
 	public function generate_code() {
718 718
 		// each line item in the cart requires a unique identifier
719
-		return md5( $this->get( 'OBJ_type' ) . $this->get( 'OBJ_ID' ) . microtime() );
719
+		return md5($this->get('OBJ_type').$this->get('OBJ_ID').microtime());
720 720
 	}
721 721
 
722 722
 
@@ -799,7 +799,7 @@  discard block
 block discarded – undo
799 799
 	 * @return string like '2, 004.00', formatted according to the localized currency
800 800
 	 */
801 801
 	public function unit_price_no_code() {
802
-		return $this->get_pretty( 'LIN_unit_price', 'no_currency_code' );
802
+		return $this->get_pretty('LIN_unit_price', 'no_currency_code');
803 803
 	}
804 804
 
805 805
 
@@ -809,7 +809,7 @@  discard block
 block discarded – undo
809 809
 	 * @return string like '2, 004.00', formatted according to the localized currency
810 810
 	 */
811 811
 	public function total_no_code() {
812
-		return $this->get_pretty( 'LIN_total', 'no_currency_code' );
812
+		return $this->get_pretty('LIN_total', 'no_currency_code');
813 813
 	}
814 814
 
815 815
 
@@ -829,17 +829,17 @@  discard block
 block discarded – undo
829 829
 		$tax_total = $this->recalculate_taxes_and_tax_total();
830 830
 		$total = $pre_tax_total + $tax_total;
831 831
 		// no negative totals plz
832
-		$total = max( $total, 0 );
833
-		$this->set_total( $total );
832
+		$total = max($total, 0);
833
+		$this->set_total($total);
834 834
 		//only update the related transaction's total
835 835
 		//if we intend to save this line item and its a grand total
836
-		if(
836
+		if (
837 837
 			$this->allow_persist() &&
838 838
 			$this->type() === EEM_Line_Item::type_total &&
839 839
 			$this->transaction() instanceof EE_Transaction
840
-		){
841
-			$this->transaction()->set_total( $total );
842
-			if ( $this->transaction()->ID() ) {
840
+		) {
841
+			$this->transaction()->set_total($total);
842
+			if ($this->transaction()->ID()) {
843 843
 				$this->transaction()->save();
844 844
 			}
845 845
 		}
@@ -858,47 +858,47 @@  discard block
 block discarded – undo
858 858
 	public function recalculate_pre_tax_total() {
859 859
 		$total = 0;
860 860
 		$my_children = $this->children();
861
-		$has_children = ! empty( $my_children );
862
-		if ( $has_children && $this->is_line_item() ) {
863
-			$total = $this->_recalculate_pretax_total_for_line_item( $total, $my_children );
864
-		} elseif ( ! $has_children && ( $this->is_sub_line_item() || $this->is_line_item() ) ) {
861
+		$has_children = ! empty($my_children);
862
+		if ($has_children && $this->is_line_item()) {
863
+			$total = $this->_recalculate_pretax_total_for_line_item($total, $my_children);
864
+		} elseif ( ! $has_children && ($this->is_sub_line_item() || $this->is_line_item())) {
865 865
 			$total = $this->unit_price() * $this->quantity();
866
-		} elseif( $this->is_sub_total() || $this->is_total() ) {
867
-			$total = $this->_recalculate_pretax_total_for_subtotal( $total, $my_children );
868
-		} elseif ( $this->is_tax_sub_total() || $this->is_tax() || $this->is_cancelled() ) {
866
+		} elseif ($this->is_sub_total() || $this->is_total()) {
867
+			$total = $this->_recalculate_pretax_total_for_subtotal($total, $my_children);
868
+		} elseif ($this->is_tax_sub_total() || $this->is_tax() || $this->is_cancelled()) {
869 869
 			// completely ignore tax totals, tax sub-totals, and cancelled line items, when calculating the pre-tax-total
870 870
 			return 0;
871 871
 		}
872 872
 		// ensure all non-line items and non-sub-line-items have a quantity of 1 (except for Events)
873
-		if(
873
+		if (
874 874
 			! $this->is_line_item() &&
875 875
 			! $this->is_sub_line_item() &&
876 876
 			! $this->is_cancellation()
877 877
 		) {
878
-			if ( $this->OBJ_type() !== 'Event' ) {
879
-				$this->set_quantity( 1 );
878
+			if ($this->OBJ_type() !== 'Event') {
879
+				$this->set_quantity(1);
880 880
 			}
881
-			if( ! $this->is_percent() ) {
882
-				$this->set_unit_price( $this->total() );
881
+			if ( ! $this->is_percent()) {
882
+				$this->set_unit_price($this->total());
883 883
 			}
884 884
 		}
885 885
 
886 886
 		//we don't want to bother saving grand totals, because that needs to factor in taxes anyways
887 887
 		//so it ought to be
888
-		if( ! $this->is_total() ) {
889
-			$this->set_total( $total );
888
+		if ( ! $this->is_total()) {
889
+			$this->set_total($total);
890 890
 			//if not a percent line item, make sure we keep the unit price in sync
891
-			if(
891
+			if (
892 892
 				$has_children
893 893
 				&& $this->is_line_item()
894 894
 				&& ! $this->is_percent()
895 895
 			) {
896
-				if( $this->quantity() === 0 ){
896
+				if ($this->quantity() === 0) {
897 897
 					$new_unit_price = 0;
898 898
 				} else {
899 899
 					$new_unit_price = $this->total() / $this->quantity();
900 900
 				}
901
-				$this->set_unit_price( $new_unit_price );
901
+				$this->set_unit_price($new_unit_price);
902 902
 			}
903 903
 			$this->maybe_save();
904 904
 		}
@@ -918,39 +918,39 @@  discard block
 block discarded – undo
918 918
 	 * @return float
919 919
 	 * @throws \EE_Error
920 920
 	 */
921
-	protected function _recalculate_pretax_total_for_subtotal( $calculated_total_so_far, $my_children = null ) {
922
-		if( $my_children === null ) {
921
+	protected function _recalculate_pretax_total_for_subtotal($calculated_total_so_far, $my_children = null) {
922
+		if ($my_children === null) {
923 923
 			$my_children = $this->children();
924 924
 		}
925 925
 		//get the total of all its children
926
-		foreach ( $my_children as $child_line_item ) {
927
-			if ( $child_line_item instanceof EE_Line_Item && ! $child_line_item->is_cancellation() ) {
926
+		foreach ($my_children as $child_line_item) {
927
+			if ($child_line_item instanceof EE_Line_Item && ! $child_line_item->is_cancellation()) {
928 928
 				// percentage line items are based on total so far
929
-				if ( $child_line_item->is_percent() ) {
929
+				if ($child_line_item->is_percent()) {
930 930
 					//round as we go so that the line items add up ok
931 931
 					$percent_total = round(
932 932
 						$calculated_total_so_far * $child_line_item->percent() / 100,
933 933
 						EE_Registry::instance()->CFG->currency->dec_plc
934 934
 					);
935
-					$child_line_item->set_total( $percent_total );
935
+					$child_line_item->set_total($percent_total);
936 936
 					//so far all percent line items should have a quantity of 1
937 937
 					//(ie, no double percent discounts. Although that might be requested someday)
938
-					$child_line_item->set_quantity( 1 );
938
+					$child_line_item->set_quantity(1);
939 939
 					$child_line_item->maybe_save();
940 940
 					$calculated_total_so_far += $percent_total;
941 941
 				} else {
942 942
 					//verify flat sub-line-item quantities match their parent
943
-					if( $child_line_item->is_sub_line_item() ) {
944
-						$child_line_item->set_quantity( $this->quantity() );
943
+					if ($child_line_item->is_sub_line_item()) {
944
+						$child_line_item->set_quantity($this->quantity());
945 945
 					}
946 946
 					$calculated_total_so_far += $child_line_item->recalculate_pre_tax_total();
947 947
 				}
948 948
 			}
949 949
 		}
950 950
 
951
-		if( $this->is_sub_total() ){
951
+		if ($this->is_sub_total()) {
952 952
 			// no negative totals plz
953
-			$calculated_total_so_far = max( $calculated_total_so_far, 0 );
953
+			$calculated_total_so_far = max($calculated_total_so_far, 0);
954 954
 		}
955 955
 		return $calculated_total_so_far;
956 956
 	}
@@ -968,8 +968,8 @@  discard block
 block discarded – undo
968 968
 	 * @return float
969 969
 	 * @throws \EE_Error
970 970
 	 */
971
-	protected function _recalculate_pretax_total_for_line_item( $calculated_total_so_far, $my_children = null ) {
972
-		if( $my_children === null ) {
971
+	protected function _recalculate_pretax_total_for_line_item($calculated_total_so_far, $my_children = null) {
972
+		if ($my_children === null) {
973 973
 			$my_children = $this->children();
974 974
 		}
975 975
 		//we need to keep track of the running total for a single item,
@@ -977,10 +977,10 @@  discard block
 block discarded – undo
977 977
 		$unit_price_for_total = 0;
978 978
 		$quantity_for_total = 1;
979 979
 		//get the total of all its children
980
-		foreach ( $my_children as $child_line_item ) {
981
-			if ( $child_line_item instanceof EE_Line_Item &&
980
+		foreach ($my_children as $child_line_item) {
981
+			if ($child_line_item instanceof EE_Line_Item &&
982 982
 					! $child_line_item->is_cancellation()) {
983
-				if ( $child_line_item->is_percent() ) {
983
+				if ($child_line_item->is_percent()) {
984 984
 					//it should be the unit-price-so-far multiplied by teh percent multiplied by the quantity
985 985
 					//not total multiplied by percent, because that ignores rounding along-the-way
986 986
 					$percent_unit_price = round(
@@ -988,17 +988,17 @@  discard block
 block discarded – undo
988 988
 						EE_Registry::instance()->CFG->currency->dec_plc
989 989
 					);
990 990
 					$percent_total = $percent_unit_price * $quantity_for_total;
991
-					$child_line_item->set_total( $percent_total );
991
+					$child_line_item->set_total($percent_total);
992 992
 					//so far all percent line items should have a quantity of 1
993 993
 					//(ie, no double percent discounts. Although that might be requested someday)
994
-					$child_line_item->set_quantity( 1 );
994
+					$child_line_item->set_quantity(1);
995 995
 					$child_line_item->maybe_save();
996 996
 					$calculated_total_so_far += $percent_total;
997 997
 					$unit_price_for_total += $percent_unit_price;
998 998
 				} else {
999 999
 					//verify flat sub-line-item quantities match their parent
1000
-					if( $child_line_item->is_sub_line_item() ) {
1001
-						$child_line_item->set_quantity( $this->quantity() );
1000
+					if ($child_line_item->is_sub_line_item()) {
1001
+						$child_line_item->set_quantity($this->quantity());
1002 1002
 					}
1003 1003
 					$quantity_for_total = $child_line_item->quantity();
1004 1004
 					$calculated_total_so_far += $child_line_item->recalculate_pre_tax_total();
@@ -1022,10 +1022,10 @@  discard block
 block discarded – undo
1022 1022
 		//calculate the pretax total
1023 1023
 		$taxable_total = $this->taxable_total();
1024 1024
 		$tax_total = 0;
1025
-		foreach ( $taxes as $tax ) {
1025
+		foreach ($taxes as $tax) {
1026 1026
 			$total_on_this_tax = $taxable_total * $tax->percent() / 100;
1027 1027
 			//remember the total on this line item
1028
-			$tax->set_total( $total_on_this_tax );
1028
+			$tax->set_total($total_on_this_tax);
1029 1029
 			$tax_total += $tax->total();
1030 1030
 		}
1031 1031
 		$this->_recalculate_tax_sub_total();
@@ -1039,21 +1039,21 @@  discard block
 block discarded – undo
1039 1039
 	 * @return void
1040 1040
 	 */
1041 1041
 	private function _recalculate_tax_sub_total() {
1042
-		if ( $this->is_tax_sub_total() ) {
1042
+		if ($this->is_tax_sub_total()) {
1043 1043
 			$total = 0;
1044 1044
 			$total_percent = 0;
1045 1045
 			//simply loop through all its children (which should be taxes) and sum their total
1046
-			foreach ( $this->children() as $child_tax ) {
1047
-				if ( $child_tax instanceof EE_Line_Item ) {
1046
+			foreach ($this->children() as $child_tax) {
1047
+				if ($child_tax instanceof EE_Line_Item) {
1048 1048
 					$total += $child_tax->total();
1049 1049
 					$total_percent += $child_tax->percent();
1050 1050
 				}
1051 1051
 			}
1052
-			$this->set_total( $total );
1053
-			$this->set_percent( $total_percent );
1054
-		} elseif ( $this->is_total() ) {
1055
-			foreach ( $this->children() as $maybe_tax_subtotal ) {
1056
-				if ( $maybe_tax_subtotal instanceof EE_Line_Item ) {
1052
+			$this->set_total($total);
1053
+			$this->set_percent($total_percent);
1054
+		} elseif ($this->is_total()) {
1055
+			foreach ($this->children() as $maybe_tax_subtotal) {
1056
+				if ($maybe_tax_subtotal instanceof EE_Line_Item) {
1057 1057
 					$maybe_tax_subtotal->_recalculate_tax_sub_total();
1058 1058
 				}
1059 1059
 			}
@@ -1069,8 +1069,8 @@  discard block
 block discarded – undo
1069 1069
 	public function get_total_tax() {
1070 1070
 		$this->_recalculate_tax_sub_total();
1071 1071
 		$total = 0;
1072
-		foreach ( $this->tax_descendants() as $tax_line_item ) {
1073
-			if ( $tax_line_item instanceof EE_Line_Item ) {
1072
+		foreach ($this->tax_descendants() as $tax_line_item) {
1073
+			if ($tax_line_item instanceof EE_Line_Item) {
1074 1074
 				$total += $tax_line_item->total();
1075 1075
 			}
1076 1076
 		}
@@ -1084,15 +1084,15 @@  discard block
 block discarded – undo
1084 1084
 	 */
1085 1085
 	public function get_items_total() {
1086 1086
 		//by default, let's make sure we're consistent with the existing line item
1087
-		if( $this->is_total() ) {
1088
-			$pretax_subtotal_li = EEH_Line_Item::get_pre_tax_subtotal( $this );
1089
-			if( $pretax_subtotal_li instanceof EE_Line_Item ) {
1087
+		if ($this->is_total()) {
1088
+			$pretax_subtotal_li = EEH_Line_Item::get_pre_tax_subtotal($this);
1089
+			if ($pretax_subtotal_li instanceof EE_Line_Item) {
1090 1090
 				return $pretax_subtotal_li->total();
1091 1091
 			}
1092 1092
 		}
1093 1093
 		$total = 0;
1094
-		foreach ( $this->get_items() as $item ) {
1095
-			if ( $item instanceof EE_Line_Item ) {
1094
+		foreach ($this->get_items() as $item) {
1095
+			if ($item instanceof EE_Line_Item) {
1096 1096
 				$total += $item->total();
1097 1097
 			}
1098 1098
 		}
@@ -1107,7 +1107,7 @@  discard block
 block discarded – undo
1107 1107
 	 * @return EE_Line_Item[]
1108 1108
 	 */
1109 1109
 	public function tax_descendants() {
1110
-		return EEH_Line_Item::get_tax_descendants( $this );
1110
+		return EEH_Line_Item::get_tax_descendants($this);
1111 1111
 	}
1112 1112
 
1113 1113
 
@@ -1117,7 +1117,7 @@  discard block
 block discarded – undo
1117 1117
 	 * @return EE_Line_Item[]
1118 1118
 	 */
1119 1119
 	public function get_items() {
1120
-		return EEH_Line_Item::get_line_item_descendants( $this );
1120
+		return EEH_Line_Item::get_line_item_descendants($this);
1121 1121
 	}
1122 1122
 
1123 1123
 
@@ -1133,22 +1133,22 @@  discard block
 block discarded – undo
1133 1133
 	 */
1134 1134
 	public function taxable_total() {
1135 1135
 		$total = 0;
1136
-		if ( $this->children() ) {
1137
-			foreach ( $this->children() as $child_line_item ) {
1138
-				if ( $child_line_item->type() === EEM_Line_Item::type_line_item && $child_line_item->is_taxable()) {
1136
+		if ($this->children()) {
1137
+			foreach ($this->children() as $child_line_item) {
1138
+				if ($child_line_item->type() === EEM_Line_Item::type_line_item && $child_line_item->is_taxable()) {
1139 1139
 					//if it's a percent item, only take into account the percent
1140 1140
 					//that's taxable too (the taxable total so far)
1141
-					if( $child_line_item->is_percent() ) {
1142
-						$total = $total + ( $total * $child_line_item->percent() / 100 );
1143
-					}else{
1141
+					if ($child_line_item->is_percent()) {
1142
+						$total = $total + ($total * $child_line_item->percent() / 100);
1143
+					} else {
1144 1144
 						$total += $child_line_item->total();
1145 1145
 					}
1146
-				}elseif( $child_line_item->type() === EEM_Line_Item::type_sub_total ){
1146
+				}elseif ($child_line_item->type() === EEM_Line_Item::type_sub_total) {
1147 1147
 					$total += $child_line_item->taxable_total();
1148 1148
 				}
1149 1149
 			}
1150 1150
 		}
1151
-		return max( $total, 0 );
1151
+		return max($total, 0);
1152 1152
 	}
1153 1153
 
1154 1154
 
@@ -1158,7 +1158,7 @@  discard block
 block discarded – undo
1158 1158
 	 * @return EE_Transaction
1159 1159
 	 */
1160 1160
 	public function transaction() {
1161
-		return $this->get_first_related( 'Transaction' );
1161
+		return $this->get_first_related('Transaction');
1162 1162
 	}
1163 1163
 
1164 1164
 
@@ -1171,18 +1171,18 @@  discard block
 block discarded – undo
1171 1171
 	 * @param int $txn_id if none is provided, assumes $this->TXN_ID()
1172 1172
 	 * @return int count of items saved
1173 1173
 	 */
1174
-	public function save_this_and_descendants_to_txn( $txn_id = NULL ) {
1174
+	public function save_this_and_descendants_to_txn($txn_id = NULL) {
1175 1175
 		$count = 0;
1176
-		if ( ! $txn_id ) {
1176
+		if ( ! $txn_id) {
1177 1177
 			$txn_id = $this->TXN_ID();
1178 1178
 		}
1179
-		$this->set_TXN_ID( $txn_id );
1179
+		$this->set_TXN_ID($txn_id);
1180 1180
 		$children = $this->children();
1181 1181
 		$count += $this->save() ? 1 : 0;
1182
-		foreach ( $children as $child_line_item ) {
1183
-			if ( $child_line_item instanceof EE_Line_Item ) {
1184
-				$child_line_item->set_parent_ID( $this->ID() );
1185
-				$count += $child_line_item->save_this_and_descendants_to_txn( $txn_id );
1182
+		foreach ($children as $child_line_item) {
1183
+			if ($child_line_item instanceof EE_Line_Item) {
1184
+				$child_line_item->set_parent_ID($this->ID());
1185
+				$count += $child_line_item->save_this_and_descendants_to_txn($txn_id);
1186 1186
 			}
1187 1187
 		}
1188 1188
 		return $count;
@@ -1199,9 +1199,9 @@  discard block
 block discarded – undo
1199 1199
 		$count = 0;
1200 1200
 		$children = $this->children();
1201 1201
 		$count += $this->save() ? 1 : 0;
1202
-		foreach ( $children as $child_line_item ) {
1203
-			if ( $child_line_item instanceof EE_Line_Item ) {
1204
-				$child_line_item->set_parent_ID( $this->ID() );
1202
+		foreach ($children as $child_line_item) {
1203
+			if ($child_line_item instanceof EE_Line_Item) {
1204
+				$child_line_item->set_parent_ID($this->ID());
1205 1205
 				$count += $child_line_item->save_this_and_descendants();
1206 1206
 			}
1207 1207
 		}
@@ -1215,8 +1215,8 @@  discard block
 block discarded – undo
1215 1215
 	 * @return EE_Line_Item[]
1216 1216
 	 */
1217 1217
 	function get_cancellations() {
1218
-		EE_Registry::instance()->load_helper( 'Line_Item' );
1219
-		return EEH_Line_Item::get_descendants_of_type( $this, EEM_Line_Item::type_cancellation );
1218
+		EE_Registry::instance()->load_helper('Line_Item');
1219
+		return EEH_Line_Item::get_descendants_of_type($this, EEM_Line_Item::type_cancellation);
1220 1220
 	}
1221 1221
 
1222 1222
 
@@ -1226,9 +1226,9 @@  discard block
 block discarded – undo
1226 1226
 	 * @param string $type one of the constants on EEM_Line_Item
1227 1227
 	 * @return EE_Line_Item[]
1228 1228
 	 */
1229
-	protected function _get_descendants_of_type( $type ) {
1230
-		EE_Error::doing_it_wrong( 'EE_Line_Item::_get_descendants_of_type()', __('Method replaced with EEH_Line_Item::get_descendants_of_type()', 'event_espresso'), '4.6.0' );
1231
-		return EEH_Line_Item::get_descendants_of_type( $this, $type );
1229
+	protected function _get_descendants_of_type($type) {
1230
+		EE_Error::doing_it_wrong('EE_Line_Item::_get_descendants_of_type()', __('Method replaced with EEH_Line_Item::get_descendants_of_type()', 'event_espresso'), '4.6.0');
1231
+		return EEH_Line_Item::get_descendants_of_type($this, $type);
1232 1232
 	}
1233 1233
 
1234 1234
 
@@ -1238,9 +1238,9 @@  discard block
 block discarded – undo
1238 1238
 	 * @param string $type like one of the EEM_Line_Item::type_*
1239 1239
 	 * @return EE_Line_Item
1240 1240
 	 */
1241
-	public function get_nearest_descendant_of_type( $type ) {
1242
-		EE_Error::doing_it_wrong( 'EE_Line_Item::get_nearest_descendant_of_type()', __('Method replaced with EEH_Line_Item::get_nearest_descendant_of_type()', 'event_espresso'), '4.6.0' );
1243
-		return EEH_Line_Item::get_nearest_descendant_of_type( $this, $type );
1241
+	public function get_nearest_descendant_of_type($type) {
1242
+		EE_Error::doing_it_wrong('EE_Line_Item::get_nearest_descendant_of_type()', __('Method replaced with EEH_Line_Item::get_nearest_descendant_of_type()', 'event_espresso'), '4.6.0');
1243
+		return EEH_Line_Item::get_nearest_descendant_of_type($this, $type);
1244 1244
 	}
1245 1245
 
1246 1246
 
@@ -1251,7 +1251,7 @@  discard block
 block discarded – undo
1251 1251
 	 * @return int count of items saved
1252 1252
 	 */
1253 1253
 	public function maybe_save() {
1254
-		if ( $this->ID() ) {
1254
+		if ($this->ID()) {
1255 1255
 			return $this->save();
1256 1256
 		}
1257 1257
 		return false;
Please login to merge, or discard this patch.