Completed
Branch BETA-4.9-messages-queue-fixed (941081)
by
unknown
17:38 queued 10s
created
modules/add_new_state/EED_Add_New_State.module.php 1 patch
Spacing   +160 added lines, -160 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 	 * @return EED_Add_New_State
17 17
 	 */
18 18
 	public static function instance() {
19
-		return parent::get_instance( __CLASS__ );
19
+		return parent::get_instance(__CLASS__);
20 20
 	}
21 21
 
22 22
 
@@ -27,16 +27,16 @@  discard block
 block discarded – undo
27 27
 	 *  	@return 		void
28 28
 	 */
29 29
 	public static function set_hooks() {
30
-		add_action( 'wp_loaded', array( 'EED_Add_New_State', 'set_definitions' ), 2 );
31
-		add_action( 'wp_enqueue_scripts', array( 'EED_Add_New_State', 'translate_js_strings' ), 0 );
32
-		add_action( 'wp_enqueue_scripts', array( 'EED_Add_New_State', 'wp_enqueue_scripts' ), 10 );
33
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', array( 'EED_Add_New_State', 'display_add_new_state_micro_form' ), 1, 1 );
34
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', array( 'EED_Add_New_State', 'display_add_new_state_micro_form' ), 1, 1 );
35
-		add_filter( 'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', array( 'EED_Add_New_State', 'unset_new_state_request_params' ), 10, 1 );
36
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', array( 'EED_Add_New_State', 'inject_new_reg_state_into_options' ), 10, 5 );
37
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', array( 'EED_Add_New_State', 'inject_new_reg_country_into_options' ), 10, 5 );
38
-		add_filter( 'FHEE__EE_State_Select_Input____construct__state_options', array( 'EED_Add_New_State', 'state_options' ), 10, 1 );
39
-		add_filter( 'FHEE__EE_Country_Select_Input____construct__country_options', array( 'EED_Add_New_State', 'country_options' ), 10, 1 );
30
+		add_action('wp_loaded', array('EED_Add_New_State', 'set_definitions'), 2);
31
+		add_action('wp_enqueue_scripts', array('EED_Add_New_State', 'translate_js_strings'), 0);
32
+		add_action('wp_enqueue_scripts', array('EED_Add_New_State', 'wp_enqueue_scripts'), 10);
33
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', array('EED_Add_New_State', 'display_add_new_state_micro_form'), 1, 1);
34
+		add_filter('FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', array('EED_Add_New_State', 'display_add_new_state_micro_form'), 1, 1);
35
+		add_filter('FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', array('EED_Add_New_State', 'unset_new_state_request_params'), 10, 1);
36
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', array('EED_Add_New_State', 'inject_new_reg_state_into_options'), 10, 5);
37
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', array('EED_Add_New_State', 'inject_new_reg_country_into_options'), 10, 5);
38
+		add_filter('FHEE__EE_State_Select_Input____construct__state_options', array('EED_Add_New_State', 'state_options'), 10, 1);
39
+		add_filter('FHEE__EE_Country_Select_Input____construct__country_options', array('EED_Add_New_State', 'country_options'), 10, 1);
40 40
 	}
41 41
 
42 42
 	/**
@@ -46,19 +46,19 @@  discard block
 block discarded – undo
46 46
 	 *  	@return 		void
47 47
 	 */
48 48
 	public static function set_hooks_admin() {
49
-		add_action( 'wp_loaded', array( 'EED_Add_New_State', 'set_definitions' ), 2 );
50
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', array( 'EED_Add_New_State', 'display_add_new_state_micro_form' ), 1, 1 );
51
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', array( 'EED_Add_New_State', 'display_add_new_state_micro_form' ), 1, 1 );
52
-		add_action( 'wp_ajax_espresso_add_new_state', array( 'EED_Add_New_State', 'add_new_state' ));
53
-		add_action( 'wp_ajax_nopriv_espresso_add_new_state', array( 'EED_Add_New_State', 'add_new_state' ));
54
-		add_filter( 'FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', array( 'EED_Add_New_State', 'unset_new_state_request_params' ), 10, 1 );
55
-		add_action( 'AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', array( 'EED_Add_New_State', 'update_country_settings' ), 10, 3 );
56
-		add_action( 'AHEE__General_Settings_Admin_Page__delete_state__state_deleted', array( 'EED_Add_New_State', 'update_country_settings' ), 10, 3 );
57
-		add_filter( 'FHEE__EE_State_Select_Input____construct__state_options', array( 'EED_Add_New_State', 'state_options' ), 10, 1 );
58
-		add_filter( 'FHEE__EE_Country_Select_Input____construct__country_options', array( 'EED_Add_New_State', 'country_options' ), 10, 1 );
59
-		add_filter( 'FHEE__Single_Page_Checkout___check_form_submission__request_params', array( 'EED_Add_New_State', 'filter_checkout_request_params' ), 10, 1 );
60
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', array( 'EED_Add_New_State', 'inject_new_reg_state_into_options' ), 10, 5 );
61
-		add_filter( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', array( 'EED_Add_New_State', 'inject_new_reg_country_into_options' ), 10, 5 );
49
+		add_action('wp_loaded', array('EED_Add_New_State', 'set_definitions'), 2);
50
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___question_group_reg_form__question_group_reg_form', array('EED_Add_New_State', 'display_add_new_state_micro_form'), 1, 1);
51
+		add_filter('FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', array('EED_Add_New_State', 'display_add_new_state_micro_form'), 1, 1);
52
+		add_action('wp_ajax_espresso_add_new_state', array('EED_Add_New_State', 'add_new_state'));
53
+		add_action('wp_ajax_nopriv_espresso_add_new_state', array('EED_Add_New_State', 'add_new_state'));
54
+		add_filter('FHEE__EE_Single_Page_Checkout__process_attendee_information__valid_data_line_item', array('EED_Add_New_State', 'unset_new_state_request_params'), 10, 1);
55
+		add_action('AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', array('EED_Add_New_State', 'update_country_settings'), 10, 3);
56
+		add_action('AHEE__General_Settings_Admin_Page__delete_state__state_deleted', array('EED_Add_New_State', 'update_country_settings'), 10, 3);
57
+		add_filter('FHEE__EE_State_Select_Input____construct__state_options', array('EED_Add_New_State', 'state_options'), 10, 1);
58
+		add_filter('FHEE__EE_Country_Select_Input____construct__country_options', array('EED_Add_New_State', 'country_options'), 10, 1);
59
+		add_filter('FHEE__Single_Page_Checkout___check_form_submission__request_params', array('EED_Add_New_State', 'filter_checkout_request_params'), 10, 1);
60
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__state_options', array('EED_Add_New_State', 'inject_new_reg_state_into_options'), 10, 5);
61
+		add_filter('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__country_options', array('EED_Add_New_State', 'inject_new_reg_country_into_options'), 10, 5);
62 62
 	}
63 63
 
64 64
 
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
 	 *  	@return 		void
71 71
 	 */
72 72
 	public static function set_definitions() {
73
-		define( 'ANS_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets' . DS );
74
-		define( 'ANS_TEMPLATES_PATH', str_replace( '\\', DS, plugin_dir_path( __FILE__ )) . 'templates' . DS );
73
+		define('ANS_ASSETS_URL', plugin_dir_url(__FILE__).'assets'.DS);
74
+		define('ANS_TEMPLATES_PATH', str_replace('\\', DS, plugin_dir_path(__FILE__)).'templates'.DS);
75 75
 	}
76 76
 
77 77
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * @param \WP $WP
84 84
 	 * @return        void
85 85
 	 */
86
-	public function run( $WP ) {
86
+	public function run($WP) {
87 87
 	}
88 88
 
89 89
 
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
 	 * 	@return 		void
112 112
 	 */
113 113
 	public static function wp_enqueue_scripts() {
114
-		if ( apply_filters( 'EED_Single_Page_Checkout__SPCO_active', false ) ) {
115
-			wp_register_script( 'add_new_state', ANS_ASSETS_URL . 'add_new_state.js', array( 'espresso_core', 'single_page_checkout' ), EVENT_ESPRESSO_VERSION, true );
116
-			wp_enqueue_script( 'add_new_state' );
114
+		if (apply_filters('EED_Single_Page_Checkout__SPCO_active', false)) {
115
+			wp_register_script('add_new_state', ANS_ASSETS_URL.'add_new_state.js', array('espresso_core', 'single_page_checkout'), EVENT_ESPRESSO_VERSION, true);
116
+			wp_enqueue_script('add_new_state');
117 117
 		}
118 118
 	}
119 119
 
@@ -127,30 +127,30 @@  discard block
 block discarded – undo
127 127
 	 * @return 	string
128 128
 	 */
129 129
 //	public static function display_add_new_state_micro_form( $html, EE_Form_Input_With_Options_Base $input ){
130
-	public static function display_add_new_state_micro_form( EE_Form_Section_Proper $question_group_reg_form ){
130
+	public static function display_add_new_state_micro_form(EE_Form_Section_Proper $question_group_reg_form) {
131 131
 		// only add the 'new_state_micro_form' when displaying reg forms,
132 132
 		// not during processing since we process the 'new_state_micro_form' in it's own AJAX request
133
-		$action = EE_Registry::instance()->REQ->get( 'action', '' );
134
-		if ( $action === 'process_reg_step' || $action === 'update_reg_step' ) {
133
+		$action = EE_Registry::instance()->REQ->get('action', '');
134
+		if ($action === 'process_reg_step' || $action === 'update_reg_step') {
135 135
 			return $question_group_reg_form;
136 136
 		}
137 137
 		// is the "state" question in this form section?
138
-		$input = $question_group_reg_form->get_subsection( 'state' );
138
+		$input = $question_group_reg_form->get_subsection('state');
139 139
 		// we're only doing this for state select inputs
140
-		if ( $input instanceof EE_State_Select_Input ) {
140
+		if ($input instanceof EE_State_Select_Input) {
141 141
 			// load helpers
142
-			EE_Registry::instance()->load_helper( 'HTML' );
142
+			EE_Registry::instance()->load_helper('HTML');
143 143
 			// grab any set values from the request
144
-			$country_name = str_replace( 'state', 'new_state_country', $input->html_name() );
145
-			$state_name = str_replace( 'state', 'new_state_name', $input->html_name() );
146
-			$abbrv_name = str_replace( 'state', 'new_state_abbrv', $input->html_name() );
147
-			$new_state_submit_id = str_replace( 'state', 'new_state', $input->html_id() );
144
+			$country_name = str_replace('state', 'new_state_country', $input->html_name());
145
+			$state_name = str_replace('state', 'new_state_name', $input->html_name());
146
+			$abbrv_name = str_replace('state', 'new_state_abbrv', $input->html_name());
147
+			$new_state_submit_id = str_replace('state', 'new_state', $input->html_id());
148 148
 			$country_options = array();
149 149
 			$countries = EEM_Country::instance()->get_all_countries();
150
-			if ( ! empty( $countries )) {
151
-				foreach( $countries as $country ){
152
-					if ( $country instanceof EE_Country ) {
153
-						$country_options[ $country->ID() ] = $country->name();
150
+			if ( ! empty($countries)) {
151
+				foreach ($countries as $country) {
152
+					if ($country instanceof EE_Country) {
153
+						$country_options[$country->ID()] = $country->name();
154 154
 					}
155 155
 				}
156 156
 			}
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
 						// add hidden input to indicate that a new state is being added
164 164
 						'add_new_state' 	=> new EE_Hidden_Input(
165 165
 							array(
166
-								'html_name' 	=> str_replace( 'state', 'add_new_state', $input->html_name() ),
167
-								'html_id' 			=> str_replace( 'state', 'add_new_state', $input->html_id() ),
166
+								'html_name' 	=> str_replace('state', 'add_new_state', $input->html_name()),
167
+								'html_id' 			=> str_replace('state', 'add_new_state', $input->html_id()),
168 168
 								'default'			=> 0
169 169
 							)
170 170
 						),
@@ -176,10 +176,10 @@  discard block
 block discarded – undo
176 176
 									'',
177 177
 									__('click here to add a new state/province', 'event_espresso'),
178 178
 									'',
179
-									'display-' . $input->html_id(),
179
+									'display-'.$input->html_id(),
180 180
 									'ee-form-add-new-state-lnk display-the-hidden smaller-text hide-if-no-js',
181 181
 									'',
182
-									'rel="' . $input->html_id() . '"'
182
+									'rel="'.$input->html_id().'"'
183 183
 								)
184 184
 							)
185 185
 						),
@@ -187,13 +187,13 @@  discard block
 block discarded – undo
187 187
 						'add_new_state_micro_form' =>new EE_Form_Section_HTML(
188 188
 							apply_filters(
189 189
 								'FHEE__EED_Add_New_State__display_add_new_state_micro_form__add_new_state_micro_form',
190
-								EEH_HTML::div( '', $input->html_id() . '-dv', 'ee-form-add-new-state-dv', 'display: none;' ) .
191
-								EEH_HTML::h6( __('If your State/Province does not appear in the list above, you can easily add it by doing the following:', 'event_espresso')) .
192
-								EEH_HTML::ul() .
193
-								EEH_HTML::li( __('first select the Country that your State/Province belongs to', 'event_espresso') ) .
194
-								EEH_HTML::li( __('enter the name of your State/Province', 'event_espresso') ) .
195
-								EEH_HTML::li( __('enter a two to six letter abbreviation for the name of your State/Province', 'event_espresso') ) .
196
-								EEH_HTML::li( __('click the ADD button', 'event_espresso') ) .
190
+								EEH_HTML::div('', $input->html_id().'-dv', 'ee-form-add-new-state-dv', 'display: none;').
191
+								EEH_HTML::h6(__('If your State/Province does not appear in the list above, you can easily add it by doing the following:', 'event_espresso')).
192
+								EEH_HTML::ul().
193
+								EEH_HTML::li(__('first select the Country that your State/Province belongs to', 'event_espresso')).
194
+								EEH_HTML::li(__('enter the name of your State/Province', 'event_espresso')).
195
+								EEH_HTML::li(__('enter a two to six letter abbreviation for the name of your State/Province', 'event_espresso')).
196
+								EEH_HTML::li(__('click the ADD button', 'event_espresso')).
197 197
 								EEH_HTML::ulx()
198 198
 							)
199 199
 						),
@@ -202,10 +202,10 @@  discard block
 block discarded – undo
202 202
 							$country_options,
203 203
 							array(
204 204
 								'html_name' 			=> $country_name,
205
-								'html_id' 					=> str_replace( 'state', 'new_state_country', $input->html_id() ),
206
-								'html_class' 			=> $input->html_class() . ' new-state-country',
205
+								'html_id' 					=> str_replace('state', 'new_state_country', $input->html_id()),
206
+								'html_class' 			=> $input->html_class().' new-state-country',
207 207
 								'html_label_text'		=> __('New State/Province Country', 'event_espresso'),
208
-								'default'					=> EE_Registry::instance()->REQ->get( $country_name, '' ),
208
+								'default'					=> EE_Registry::instance()->REQ->get($country_name, ''),
209 209
 								'required' 				=> false
210 210
 							)
211 211
 						),
@@ -213,23 +213,23 @@  discard block
 block discarded – undo
213 213
 						'new_state_name' => new EE_Text_Input(
214 214
 							array(
215 215
 								'html_name' 			=> $state_name,
216
-								'html_id' 					=> str_replace( 'state', 'new_state_name', $input->html_id() ),
217
-								'html_class' 			=> $input->html_class() . ' new-state-state',
216
+								'html_id' 					=> str_replace('state', 'new_state_name', $input->html_id()),
217
+								'html_class' 			=> $input->html_class().' new-state-state',
218 218
 								'html_label_text'		=> __('New State/Province Name', 'event_espresso'),
219
-								'default'					=> EE_Registry::instance()->REQ->get( $state_name, '' ),
219
+								'default'					=> EE_Registry::instance()->REQ->get($state_name, ''),
220 220
 								'required' 				=> false
221 221
 							)
222 222
 						),
223
-						'spacer' => new EE_Form_Section_HTML( EEH_HTML::br() ),
223
+						'spacer' => new EE_Form_Section_HTML(EEH_HTML::br()),
224 224
 						// NEW STATE NAME
225 225
 						'new_state_abbrv' => new EE_Text_Input(
226 226
 							array(
227 227
 								'html_name' 					=> $abbrv_name,
228
-								'html_id' 							=> str_replace( 'state', 'new_state_abbrv', $input->html_id() ),
229
-								'html_class' 					=> $input->html_class() . ' new-state-abbrv',
228
+								'html_id' 							=> str_replace('state', 'new_state_abbrv', $input->html_id()),
229
+								'html_class' 					=> $input->html_class().' new-state-abbrv',
230 230
 								'html_label_text'				=> __('New State/Province Abbreviation', 'event_espresso'),
231 231
 								'html_other_attributes'	=> 'size="24"',
232
-								'default'							=> EE_Registry::instance()->REQ->get( $abbrv_name, '' ),
232
+								'default'							=> EE_Registry::instance()->REQ->get($abbrv_name, ''),
233 233
 								'required' 						=> false
234 234
 							)
235 235
 						),
@@ -237,26 +237,26 @@  discard block
 block discarded – undo
237 237
 						'add_new_state_submit_button' => new EE_Form_Section_HTML(
238 238
 							apply_filters(
239 239
 								'FHEE__EED_Add_New_State__display_add_new_state_micro_form__add_new_state_submit_button',
240
-								EEH_HTML::nbsp(3) .
241
-								EEH_HTML::link( '', __('ADD', 'event_espresso'), '', 'submit-' . $new_state_submit_id, 'ee-form-add-new-state-submit button button-secondary', '', 'rel="' . $new_state_submit_id . '"' )
240
+								EEH_HTML::nbsp(3).
241
+								EEH_HTML::link('', __('ADD', 'event_espresso'), '', 'submit-'.$new_state_submit_id, 'ee-form-add-new-state-submit button button-secondary', '', 'rel="'.$new_state_submit_id.'"')
242 242
 							)
243 243
 						),
244 244
 						// extra info
245 245
 						'add_new_state_extra' => new EE_Form_Section_HTML(
246 246
 							apply_filters(
247 247
 								'FHEE__EED_Add_New_State__display_add_new_state_micro_form__add_new_state_extra',
248
-								EEH_HTML::br(2) .
249
-								EEH_HTML::div( '', '', 'small-text' ) .
250
-								EEH_HTML::strong( __('Don\'t know your State/Province Abbreviation?', 'event_espresso') ) .
251
-								EEH_HTML::br() .
248
+								EEH_HTML::br(2).
249
+								EEH_HTML::div('', '', 'small-text').
250
+								EEH_HTML::strong(__('Don\'t know your State/Province Abbreviation?', 'event_espresso')).
251
+								EEH_HTML::br().
252 252
 								sprintf(
253 253
 									__('You can look here: %s, for a list of Countries and links to their State/Province Abbreviations ("Subdivisions assigned codes" column).', 'event_espresso'),
254
-									EEH_HTML::link( 'http://en.wikipedia.org/wiki/ISO_3166-2', 'http://en.wikipedia.org/wiki/ISO_3166-2', '', '', 'ee-form-add-new-state-wiki-lnk' )
255
-								) .
256
-								EEH_HTML::divx() .
257
-								EEH_HTML::br() .
258
-								EEH_HTML::link( '', __('cancel new state/province', 'event_espresso'), '', 'hide-' . $input->html_id(), 'ee-form-cancel-new-state-lnk smaller-text', '', 'rel="' . $input->html_id() . '"' ) .
259
-								EEH_HTML::divx() .
254
+									EEH_HTML::link('http://en.wikipedia.org/wiki/ISO_3166-2', 'http://en.wikipedia.org/wiki/ISO_3166-2', '', '', 'ee-form-add-new-state-wiki-lnk')
255
+								).
256
+								EEH_HTML::divx().
257
+								EEH_HTML::br().
258
+								EEH_HTML::link('', __('cancel new state/province', 'event_espresso'), '', 'hide-'.$input->html_id(), 'ee-form-cancel-new-state-lnk smaller-text', '', 'rel="'.$input->html_id().'"').
259
+								EEH_HTML::divx().
260 260
 								EEH_HTML::br()
261 261
 							)
262 262
 						)
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 					)
265 265
 				)
266 266
 			);
267
-			$question_group_reg_form->add_subsections( array( 'new_state_micro_form' => $new_state_micro_form ), 'state', false );
267
+			$question_group_reg_form->add_subsections(array('new_state_micro_form' => $new_state_micro_form), 'state', false);
268 268
 		}
269 269
 		return $question_group_reg_form;
270 270
 	}
@@ -281,41 +281,41 @@  discard block
 block discarded – undo
281 281
 	 */
282 282
 	public static function add_new_state() {
283 283
 		$REQ = EE_Registry::instance()->load_core('Request_Handler');
284
-		if ( $REQ->is_set( 'add_new_state' ) && $REQ->get( 'add_new_state' ) == 1 ) {
284
+		if ($REQ->is_set('add_new_state') && $REQ->get('add_new_state') == 1) {
285 285
 			EE_Registry::instance()->load_model('State');
286 286
 			// grab country ISO code, new state name, and new state abbreviation
287
-			$state_country = $REQ->is_set( 'new_state_country' ) ? sanitize_text_field( $REQ->get( 'new_state_country' )) : FALSE;
288
-			$state_name = $REQ->is_set( 'new_state_name' ) ? sanitize_text_field( $REQ->get( 'new_state_name' )) : FALSE;
289
-			$state_abbr = $REQ->is_set( 'new_state_abbrv' ) ? sanitize_text_field( $REQ->get( 'new_state_abbrv' )) : FALSE;
287
+			$state_country = $REQ->is_set('new_state_country') ? sanitize_text_field($REQ->get('new_state_country')) : FALSE;
288
+			$state_name = $REQ->is_set('new_state_name') ? sanitize_text_field($REQ->get('new_state_name')) : FALSE;
289
+			$state_abbr = $REQ->is_set('new_state_abbrv') ? sanitize_text_field($REQ->get('new_state_abbrv')) : FALSE;
290 290
 
291 291
 //echo '<h4>$state_country : ' . $state_country . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
292 292
 //echo '<h4>$state_name : ' . $state_name . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
293 293
 //echo '<h4>$state_abbr : ' . $state_abbr . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
294 294
 
295
-			if ( $state_country && $state_name && $state_abbr ) {
296
-				$new_state = EED_Add_New_State::save_new_state_to_db( array(
297
-					'CNT_ISO'=> strtoupper( $state_country ),
298
-					'STA_abbrev' => strtoupper( $state_abbr ),
299
-					'STA_name' => ucwords( $state_name ),
295
+			if ($state_country && $state_name && $state_abbr) {
296
+				$new_state = EED_Add_New_State::save_new_state_to_db(array(
297
+					'CNT_ISO'=> strtoupper($state_country),
298
+					'STA_abbrev' => strtoupper($state_abbr),
299
+					'STA_name' => ucwords($state_name),
300 300
 					'STA_active' => FALSE
301 301
 				));
302 302
 
303
-				if ( $new_state instanceof EE_State ) {
303
+				if ($new_state instanceof EE_State) {
304 304
 					// clean house
305
-					EE_Registry::instance()->REQ->un_set( 'add_new_state' );
306
-					EE_Registry::instance()->REQ->un_set( 'new_state_country' );
307
-					EE_Registry::instance()->REQ->un_set( 'new_state_name' );
308
-					EE_Registry::instance()->REQ->un_set( 'new_state_abbrv' );
305
+					EE_Registry::instance()->REQ->un_set('add_new_state');
306
+					EE_Registry::instance()->REQ->un_set('new_state_country');
307
+					EE_Registry::instance()->REQ->un_set('new_state_name');
308
+					EE_Registry::instance()->REQ->un_set('new_state_abbrv');
309 309
 
310 310
 					// get any existing new states
311 311
 					$new_states = EE_Registry::instance()->SSN->get_session_data(
312 312
 						'new_states'
313 313
 					);
314
-					$new_states[ $new_state->ID() ] = $new_state;
315
-					EE_Registry::instance()->SSN->set_session_data( array( 'new_states' => $new_states ));
314
+					$new_states[$new_state->ID()] = $new_state;
315
+					EE_Registry::instance()->SSN->set_session_data(array('new_states' => $new_states));
316 316
 
317
-					if ( EE_Registry::instance()->REQ->ajax ) {
318
-						echo json_encode( array(
317
+					if (EE_Registry::instance()->REQ->ajax) {
318
+						echo json_encode(array(
319 319
 							'success' => TRUE,
320 320
 							'id' => $new_state->ID(),
321 321
 							'name' => $new_state->name(),
@@ -330,12 +330,12 @@  discard block
 block discarded – undo
330 330
 				}
331 331
 
332 332
 			} else {
333
-				$error = __( 'A new State/Province could not be added because invalid or missing data was received.', 'event_espresso' );
334
-				if ( EE_Registry::instance()->REQ->ajax ) {
335
-					echo json_encode( array( 'error' => $error ));
333
+				$error = __('A new State/Province could not be added because invalid or missing data was received.', 'event_espresso');
334
+				if (EE_Registry::instance()->REQ->ajax) {
335
+					echo json_encode(array('error' => $error));
336 336
 					exit();
337 337
 				} else {
338
-					EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
338
+					EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
339 339
 				}
340 340
 			}
341 341
 		}
@@ -353,11 +353,11 @@  discard block
 block discarded – undo
353 353
 	 * @param array $request_params
354 354
 	 * @return array
355 355
 	 */
356
-	public static function filter_checkout_request_params ( $request_params ) {
357
-		foreach ( $request_params as $form_section ) {
358
-			if ( is_array( $form_section )) {
359
-				EED_Add_New_State::unset_new_state_request_params( $form_section );
360
-				EED_Add_New_State::filter_checkout_request_params( $form_section );
356
+	public static function filter_checkout_request_params($request_params) {
357
+		foreach ($request_params as $form_section) {
358
+			if (is_array($form_section)) {
359
+				EED_Add_New_State::unset_new_state_request_params($form_section);
360
+				EED_Add_New_State::filter_checkout_request_params($form_section);
361 361
 			}
362 362
 		}
363 363
 		return $request_params;
@@ -372,12 +372,12 @@  discard block
 block discarded – undo
372 372
 	 * @param array $request_params
373 373
 	 * @return        boolean
374 374
 	 */
375
-	public static function unset_new_state_request_params ( $request_params ) {
376
-		unset( $request_params[ 'new_state_micro_form' ] );
377
-		unset( $request_params[ 'add_new_state' ] );
378
-		unset( $request_params[ 'new_state_country' ] );
379
-		unset( $request_params[ 'new_state_name' ] );
380
-		unset( $request_params[ 'new_state_abbrv' ] );
375
+	public static function unset_new_state_request_params($request_params) {
376
+		unset($request_params['new_state_micro_form']);
377
+		unset($request_params['add_new_state']);
378
+		unset($request_params['new_state_country']);
379
+		unset($request_params['new_state_name']);
380
+		unset($request_params['new_state_abbrv']);
381 381
 		return $request_params;
382 382
 	}
383 383
 
@@ -390,25 +390,25 @@  discard block
 block discarded – undo
390 390
 	 * @param array $props_n_values
391 391
 	 * @return        boolean
392 392
 	 */
393
-	public static function save_new_state_to_db ( $props_n_values = array() ) {
393
+	public static function save_new_state_to_db($props_n_values = array()) {
394 394
 //		EEH_Debug_Tools::printr( $props_n_values, '$props_n_values  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
395
-		$existing_state = EEM_State::instance()->get_all( array( $props_n_values, 'limit' => 1 ));
396
-		if ( ! empty( $existing_state )) {
397
-			return array_pop( $existing_state );
395
+		$existing_state = EEM_State::instance()->get_all(array($props_n_values, 'limit' => 1));
396
+		if ( ! empty($existing_state)) {
397
+			return array_pop($existing_state);
398 398
 		}
399
-		$new_state = EE_State::new_instance( $props_n_values );
400
-		if ( $new_state instanceof EE_State ) {
399
+		$new_state = EE_State::new_instance($props_n_values);
400
+		if ($new_state instanceof EE_State) {
401 401
 			// if not non-ajax admin
402
-			$new_state_key = $new_state->country_iso() . '-' . $new_state->abbrev();
402
+			$new_state_key = $new_state->country_iso().'-'.$new_state->abbrev();
403 403
 			$new_state_notice = sprintf(
404
-					__( 'A new State named "%1$s (%2$s)" was dynamically added from an Event Espresso form for the Country of "%3$s".%5$sTo verify, edit, and/or delete this new State, please go to the %4$s and update the States / Provinces section.%5$sCheck "Yes" to have this new State added to dropdown select lists in forms.', 'event_espresso' ),
405
-					'<b>' . $new_state->name() . '</b>',
406
-					'<b>' . $new_state->abbrev() . '</b>',
407
-					'<b>' . $new_state->country()->name() . '</b>',
408
-					'<a href="' . add_query_arg( array( 'page' => 'espresso_general_settings', 'action' => 'country_settings', 'country' => $new_state->country_iso() ), admin_url( 'admin.php' )) . '">' . __( 'Event Espresso - General Settings > Countries Tab', 'event_espresso' ) . '</a>',
404
+					__('A new State named "%1$s (%2$s)" was dynamically added from an Event Espresso form for the Country of "%3$s".%5$sTo verify, edit, and/or delete this new State, please go to the %4$s and update the States / Provinces section.%5$sCheck "Yes" to have this new State added to dropdown select lists in forms.', 'event_espresso'),
405
+					'<b>'.$new_state->name().'</b>',
406
+					'<b>'.$new_state->abbrev().'</b>',
407
+					'<b>'.$new_state->country()->name().'</b>',
408
+					'<a href="'.add_query_arg(array('page' => 'espresso_general_settings', 'action' => 'country_settings', 'country' => $new_state->country_iso()), admin_url('admin.php')).'">'.__('Event Espresso - General Settings > Countries Tab', 'event_espresso').'</a>',
409 409
 					'<br />'
410 410
 			);
411
-			EE_Error::add_persistent_admin_notice( $new_state_key, $new_state_notice );
411
+			EE_Error::add_persistent_admin_notice($new_state_key, $new_state_notice);
412 412
 			$new_state->save();
413 413
 			EEM_State::instance()->reset_cached_states();
414 414
 			return $new_state;
@@ -427,22 +427,22 @@  discard block
 block discarded – undo
427 427
 	 * @param array  $cols_n_values
428 428
 	 * @return        boolean
429 429
 	 */
430
-	public static function update_country_settings( $CNT_ISO = '', $STA_ID = '', $cols_n_values = array() ) {
431
-		$CNT_ISO = ! empty( $CNT_ISO ) ? $CNT_ISO : FALSE;
432
-		if ( ! $CNT_ISO ) {
433
-			EE_Error::add_error( __( 'An invalid or missing Country ISO Code was received.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
430
+	public static function update_country_settings($CNT_ISO = '', $STA_ID = '', $cols_n_values = array()) {
431
+		$CNT_ISO = ! empty($CNT_ISO) ? $CNT_ISO : FALSE;
432
+		if ( ! $CNT_ISO) {
433
+			EE_Error::add_error(__('An invalid or missing Country ISO Code was received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
434 434
 		}
435
-		$STA_abbrev = is_array( $cols_n_values ) && isset( $cols_n_values['STA_abbrev'] ) ? $cols_n_values['STA_abbrev'] : FALSE;
436
-		if (  ! $STA_abbrev && ! empty( $STA_ID )) {
437
-			$state = EEM_State::instance()->get_one_by_ID( $STA_ID );
438
-			if ( $state instanceof EE_State ) {
435
+		$STA_abbrev = is_array($cols_n_values) && isset($cols_n_values['STA_abbrev']) ? $cols_n_values['STA_abbrev'] : FALSE;
436
+		if ( ! $STA_abbrev && ! empty($STA_ID)) {
437
+			$state = EEM_State::instance()->get_one_by_ID($STA_ID);
438
+			if ($state instanceof EE_State) {
439 439
 				$STA_abbrev = $state->abbrev();
440 440
 			}
441 441
 		}
442
-		if ( ! $STA_abbrev ) {
443
-			EE_Error::add_error( __( 'An invalid or missing State Abbreviation was received.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
442
+		if ( ! $STA_abbrev) {
443
+			EE_Error::add_error(__('An invalid or missing State Abbreviation was received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
444 444
 		}
445
-		EE_Error::dismiss_persistent_admin_notice( $CNT_ISO . '-' . $STA_abbrev, TRUE, TRUE );
445
+		EE_Error::dismiss_persistent_admin_notice($CNT_ISO.'-'.$STA_abbrev, TRUE, TRUE);
446 446
 	}
447 447
 
448 448
 
@@ -458,19 +458,19 @@  discard block
 block discarded – undo
458 458
 	 * @param $answer
459 459
 	 * @return bool
460 460
 	 */
461
-	public static function inject_new_reg_state_into_options( $state_options = array(), EE_SPCO_Reg_Step_Attendee_Information $reg_step, EE_Registration $registration, EE_Question $question, $answer ) {
462
-		if ( $answer instanceof EE_Answer  && $question instanceof EE_Question && $question->type() === EEM_Question::QST_type_state ) {
461
+	public static function inject_new_reg_state_into_options($state_options = array(), EE_SPCO_Reg_Step_Attendee_Information $reg_step, EE_Registration $registration, EE_Question $question, $answer) {
462
+		if ($answer instanceof EE_Answer && $question instanceof EE_Question && $question->type() === EEM_Question::QST_type_state) {
463 463
 			$STA_ID = $answer->value();
464
-			if ( ! empty( $STA_ID ) ) {
465
-				$state = EEM_State::instance()->get_one_by_ID( $STA_ID );
466
-				if ( $state instanceof EE_State ) {
464
+			if ( ! empty($STA_ID)) {
465
+				$state = EEM_State::instance()->get_one_by_ID($STA_ID);
466
+				if ($state instanceof EE_State) {
467 467
 					$country = $state->country();
468
-					if ( $country instanceof EE_Country ) {
469
-						if ( ! isset( $state_options[ $country->name() ] )) {
470
-							$state_options[ $country->name() ] = array();
468
+					if ($country instanceof EE_Country) {
469
+						if ( ! isset($state_options[$country->name()])) {
470
+							$state_options[$country->name()] = array();
471 471
 						}
472
-						if ( ! isset( $state_options[ $country->name() ][ $STA_ID ] )) {
473
-							$state_options[ $country->name() ][ $STA_ID ] = $state->name();
472
+						if ( ! isset($state_options[$country->name()][$STA_ID])) {
473
+							$state_options[$country->name()][$STA_ID] = $state->name();
474 474
 						}
475 475
 					}
476 476
 				}
@@ -492,14 +492,14 @@  discard block
 block discarded – undo
492 492
 	 * @param $answer
493 493
 	 * @return bool
494 494
 	 */
495
-	public static function inject_new_reg_country_into_options( $country_options = array(), EE_SPCO_Reg_Step_Attendee_Information $reg_step, EE_Registration $registration, EE_Question $question, $answer ) {
496
-		if ( $answer instanceof EE_Answer && $question instanceof EE_Question && $question->type() === EEM_Question::QST_type_country ) {
495
+	public static function inject_new_reg_country_into_options($country_options = array(), EE_SPCO_Reg_Step_Attendee_Information $reg_step, EE_Registration $registration, EE_Question $question, $answer) {
496
+		if ($answer instanceof EE_Answer && $question instanceof EE_Question && $question->type() === EEM_Question::QST_type_country) {
497 497
 			$CNT_ISO = $answer->value();
498
-			if ( ! empty( $CNT_ISO ) ) {
499
-				$country = EEM_Country::instance()->get_one_by_ID( $CNT_ISO );
500
-				if ( $country instanceof EE_Country ) {
501
-					if ( ! isset( $country_options[ $CNT_ISO ] ) ) {
502
-						$country_options[ $CNT_ISO ] = $country->name();
498
+			if ( ! empty($CNT_ISO)) {
499
+				$country = EEM_Country::instance()->get_one_by_ID($CNT_ISO);
500
+				if ($country instanceof EE_Country) {
501
+					if ( ! isset($country_options[$CNT_ISO])) {
502
+						$country_options[$CNT_ISO] = $country->name();
503 503
 					}
504 504
 				}
505 505
 			}
@@ -516,17 +516,17 @@  discard block
 block discarded – undo
516 516
 	 * @param EE_State[]  $state_options
517 517
 	 * @return        boolean
518 518
 	 */
519
-	public static function state_options( $state_options = array() ) {
519
+	public static function state_options($state_options = array()) {
520 520
 		$new_states = EE_Registry::instance()->SSN->get_session_data(
521 521
 			'new_states'
522 522
 		);
523
-		if ( is_array( $new_states ) && ! empty( $new_states )) {
524
-			foreach ( $new_states as $new_state ) {
523
+		if (is_array($new_states) && ! empty($new_states)) {
524
+			foreach ($new_states as $new_state) {
525 525
 				if (
526 526
 					$new_state instanceof EE_State
527 527
 					&& $new_state->country() instanceof EE_Country
528 528
 				) {
529
-					$state_options[ $new_state->country()->name() ][ $new_state->ID() ] = $new_state->name();
529
+					$state_options[$new_state->country()->name()][$new_state->ID()] = $new_state->name();
530 530
 				}
531 531
 			}
532 532
 		}
@@ -542,17 +542,17 @@  discard block
 block discarded – undo
542 542
 	 * @param EE_Country[]  $country_options
543 543
 	 * @return        boolean
544 544
 	 */
545
-	public static function country_options( $country_options = array() ) {
545
+	public static function country_options($country_options = array()) {
546 546
 		$new_states = EE_Registry::instance()->SSN->get_session_data(
547 547
 			'new_states'
548 548
 		);
549
-		if ( is_array( $new_states ) && ! empty( $new_states )) {
550
-			foreach ( $new_states as $new_state ) {
549
+		if (is_array($new_states) && ! empty($new_states)) {
550
+			foreach ($new_states as $new_state) {
551 551
 				if (
552 552
 					$new_state instanceof EE_State
553 553
 					&& $new_state->country() instanceof EE_Country
554 554
 				) {
555
-					$country_options[ $new_state->country()->ID() ] = $new_state->country()->name();
555
+					$country_options[$new_state->country()->ID()] = $new_state->country()->name();
556 556
 				}
557 557
 			}
558 558
 		}
Please login to merge, or discard this patch.
espresso_event_attendees/EES_Espresso_Event_Attendees.shortcode.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 * @param       WP $WP
20 20
 	 * @return    void
21 21
 	 */
22
-	public function run( WP $WP ) {}
22
+	public function run(WP $WP) {}
23 23
 
24 24
 
25 25
 	/**
@@ -69,14 +69,14 @@  discard block
 block discarded – undo
69 69
 	 *  @param 	    array 	$attributes
70 70
 	 *  @return 	string
71 71
 	 */
72
-	public function process_shortcode( $attributes = array() ) {
72
+	public function process_shortcode($attributes = array()) {
73 73
 
74 74
 		//load helpers
75
-		EE_Registry::instance()->load_helper( 'Event_View' );
76
-		EE_Registry::instance()->load_helper( 'Template' );
75
+		EE_Registry::instance()->load_helper('Event_View');
76
+		EE_Registry::instance()->load_helper('Template');
77 77
 
78 78
 		// merge in any attributes passed via fallback shortcode processor
79
-		$attributes = array_merge( (array) $attributes, (array) $this->_attributes );
79
+		$attributes = array_merge((array) $attributes, (array) $this->_attributes);
80 80
 
81 81
 		//set default attributes
82 82
 		$default_shortcode_attributes = array(
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
 		);
89 89
 
90 90
 		// allow the defaults to be filtered
91
-		$default_shortcode_attributes = apply_filters( 'EES_Espresso_Event_Attendees__process_shortcode__default_shortcode_atts', $default_shortcode_attributes );
91
+		$default_shortcode_attributes = apply_filters('EES_Espresso_Event_Attendees__process_shortcode__default_shortcode_atts', $default_shortcode_attributes);
92 92
 		// grab attributes and merge with defaults, then extract
93
-		$attributes = array_merge( $default_shortcode_attributes, $attributes );
93
+		$attributes = array_merge($default_shortcode_attributes, $attributes);
94 94
 
95 95
 		$template_args = array(
96 96
 			'contacts'      => array(),
@@ -106,31 +106,31 @@  discard block
 block discarded – undo
106 106
 		$error = false;
107 107
 
108 108
 		//what event?
109
-		if ( empty( $attributes['event_id'] ) && empty( $attributes['datetime_id'] ) && empty( $attributes['ticket_id'] ) ) {
109
+		if (empty($attributes['event_id']) && empty($attributes['datetime_id']) && empty($attributes['ticket_id'])) {
110 110
 			//seems like is_espresso_event_single() isn't working as expected. So using alternate method.
111
-			if ( is_single() && is_espresso_event() ) {
111
+			if (is_single() && is_espresso_event()) {
112 112
 				$event = EEH_Event_View::get_event();
113
-				if ( $event instanceof EE_Event ) {
113
+				if ($event instanceof EE_Event) {
114 114
 					$template_args['event']          = $event;
115 115
 					$query[0]['Registration.EVT_ID'] = $event->ID();
116 116
 				}
117 117
 			} else {
118 118
 				//try getting the earliest active event if none then get the
119
-				$events = EEM_Event::instance()->get_active_events( array( 'limit'    => 1,
120
-				                                                          'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' )
121
-				) );
122
-				$events = empty( $events ) ? EEM_Event::instance()->get_upcoming_events( array( 'limit'    => 1,
123
-				                                                                              'order_by' => array( 'Datetime.DTT_EVT_start' => 'ASC' )
124
-				) ) : $events;
125
-				$event = reset( $events );
126
-				if ( $event instanceof EE_Event ) {
119
+				$events = EEM_Event::instance()->get_active_events(array('limit'    => 1,
120
+				                                                          'order_by' => array('Datetime.DTT_EVT_start' => 'ASC')
121
+				));
122
+				$events = empty($events) ? EEM_Event::instance()->get_upcoming_events(array('limit'    => 1,
123
+				                                                                              'order_by' => array('Datetime.DTT_EVT_start' => 'ASC')
124
+				)) : $events;
125
+				$event = reset($events);
126
+				if ($event instanceof EE_Event) {
127 127
 					$query[0]['Registration.EVT_ID'] = $event->ID();
128 128
 					$template_args['event']          = $event;
129 129
 				}
130 130
 			}
131
-		} elseif ( ! empty( $attributes['event_id'] ) ) {
132
-			$event = EEM_Event::instance()->get_one_by_ID( $attributes['event_id'] );
133
-			if ( $event instanceof EE_Event ) {
131
+		} elseif ( ! empty($attributes['event_id'])) {
132
+			$event = EEM_Event::instance()->get_one_by_ID($attributes['event_id']);
133
+			if ($event instanceof EE_Event) {
134 134
 				$query[0]['Registration.EVT_ID'] = $attributes['event_id'];
135 135
 				$template_args['event']          = $event;
136 136
 			} else {
@@ -139,9 +139,9 @@  discard block
 block discarded – undo
139 139
 		}
140 140
 
141 141
 		//datetime?
142
-		if ( ! empty( $attributes['datetime_id'] ) && empty( $attributes['event_id'] ) ) {
143
-			$datetime = EEM_Datetime::instance()->get_one_by_ID( $attributes['datetime_id'] );
144
-			if ( $datetime instanceof EE_Datetime ) {
142
+		if ( ! empty($attributes['datetime_id']) && empty($attributes['event_id'])) {
143
+			$datetime = EEM_Datetime::instance()->get_one_by_ID($attributes['datetime_id']);
144
+			if ($datetime instanceof EE_Datetime) {
145 145
 				$query[0]['Registration.Ticket.Datetime.DTT_ID'] = $attributes['datetime_id'];
146 146
 				$query['default_where_conditions'] = 'this_model_only';
147 147
 				$template_args['datetime']                      = $datetime;
@@ -152,9 +152,9 @@  discard block
 block discarded – undo
152 152
 		}
153 153
 
154 154
 		//ticket?just
155
-		if ( ! empty( $attributes['ticket_id'] ) && empty( $attributes['event_id'] ) && empty( $attributes['datetime_id'] ) ) {
156
-			$ticket = EEM_Ticket::instance()->get_one_by_ID( $attributes['ticket_id'] );
157
-			if ( $ticket instanceof EE_Ticket ) {
155
+		if ( ! empty($attributes['ticket_id']) && empty($attributes['event_id']) && empty($attributes['datetime_id'])) {
156
+			$ticket = EEM_Ticket::instance()->get_one_by_ID($attributes['ticket_id']);
157
+			if ($ticket instanceof EE_Ticket) {
158 158
 				$query[0]['Registration.TKT_ID'] = $attributes['ticket_id'];
159 159
 				$template_args['ticket']         = $ticket;
160 160
 				$template_args['event']          = $ticket->first_datetime() instanceof EE_Datetime ? $ticket->first_datetime()->event() : null;
@@ -165,17 +165,17 @@  discard block
 block discarded – undo
165 165
 
166 166
 		//status
167 167
 		$reg_status_array = EEM_Registration::reg_status_array();
168
-		if ( $attributes['status'] != 'all' && isset( $reg_status_array[$attributes['status']] ) ) {
168
+		if ($attributes['status'] != 'all' && isset($reg_status_array[$attributes['status']])) {
169 169
 			$query[0]['Registration.STS_ID'] = $attributes['status'];
170 170
 		}
171
-		$query['group_by'] = array( 'ATT_ID' );
172
-		$query['order_by'] = apply_filters( 'FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by', array( 'ATT_lname' => 'ASC', 'ATT_fname' => 'ASC' ) );
171
+		$query['group_by'] = array('ATT_ID');
172
+		$query['order_by'] = apply_filters('FHEE__EES_Espresso_Event_Attendees__process_shortcode__order_by', array('ATT_lname' => 'ASC', 'ATT_fname' => 'ASC'));
173 173
 
174 174
 		//if we have NO query where conditions, then there was an invalid parameter or the shortcode was used incorrectly
175 175
 		//so when WP_DEBUG is set and true, we'll show a message, otherwise we'll just return an empty string.
176
-		if ( ( ! isset( $query[0] ) || ! is_array( $query[0] ) ) || $error ) {
177
-			if ( WP_DEBUG ) {
178
-				return '<div class="important-notice ee-attention">' . __( 'The [ESPRESSO_EVENT_ATTENDEES] shortcode has been used incorrectly.  Please double check the arguments you used for any typos.  In the case of ID type arguments, its possible the given ID does not correspond to existing data in the database.', 'event_espresso' ) . '</div>';
176
+		if (( ! isset($query[0]) || ! is_array($query[0])) || $error) {
177
+			if (WP_DEBUG) {
178
+				return '<div class="important-notice ee-attention">'.__('The [ESPRESSO_EVENT_ATTENDEES] shortcode has been used incorrectly.  Please double check the arguments you used for any typos.  In the case of ID type arguments, its possible the given ID does not correspond to existing data in the database.', 'event_espresso').'</div>';
179 179
 			} else {
180 180
 				return '';
181 181
 			}
@@ -183,11 +183,11 @@  discard block
 block discarded – undo
183 183
 
184 184
 
185 185
 		//get contacts!
186
-		$template_args['contacts'] = EEM_Attendee::instance()->get_all( $query );
186
+		$template_args['contacts'] = EEM_Attendee::instance()->get_all($query);
187 187
 
188 188
 
189 189
 		//all set let's load up the template and return.
190
-		return EEH_Template::locate_template( 'loop-espresso_event_attendees.php', $template_args, true, true );
190
+		return EEH_Template::locate_template('loop-espresso_event_attendees.php', $template_args, true, true);
191 191
 
192 192
 	}
193 193
 
Please login to merge, or discard this patch.
core/EE_Log.core.php 1 patch
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  *
4 4
  * Class EE_Log
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @return EE_Log
63 63
 	 */
64 64
 	public static function instance() {
65
-		if ( ! self::$_instance instanceof EE_Log ) {
65
+		if ( ! self::$_instance instanceof EE_Log) {
66 66
 			self::$_instance = new self();
67 67
 		}
68 68
 		return self::$_instance;
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	private function __construct() {
76 76
 
77
-		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging ) {
77
+		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging) {
78 78
 			return;
79 79
 		}
80 80
 
81
-		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS;
81
+		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS;
82 82
 		$this->_log_file = EE_Registry::instance()->CFG->admin->log_file_name();
83 83
 		$this->_log = '';
84 84
 		$this->_debug_file = EE_Registry::instance()->CFG->admin->debug_file_name();
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 		$this->_remote_logging_url = EE_Registry::instance()->CFG->admin->remote_logging_url;
87 87
 		$this->_remote_log = '';
88 88
 
89
-		add_action( 'admin_init', array( $this, 'verify_filesystem' ), -10 );
90
-		add_action( 'AHEE_log', array( $this, 'log' ), 10, 4 );
91
-		if ( EE_Registry::instance()->CFG->admin->use_full_logging ) {
92
-			add_action( 'shutdown', array( $this, 'write_log' ), 9999 );
89
+		add_action('admin_init', array($this, 'verify_filesystem'), -10);
90
+		add_action('AHEE_log', array($this, 'log'), 10, 4);
91
+		if (EE_Registry::instance()->CFG->admin->use_full_logging) {
92
+			add_action('shutdown', array($this, 'write_log'), 9999);
93 93
 			// if WP_DEBUG
94
-			add_action( 'shutdown', array( $this, 'write_debug' ), 9999 );
94
+			add_action('shutdown', array($this, 'write_debug'), 9999);
95 95
 		}
96
-		if ( EE_Registry::instance()->CFG->admin->use_remote_logging ) {
97
-			add_action( 'shutdown', array( $this, 'send_log' ), 9999 );
96
+		if (EE_Registry::instance()->CFG->admin->use_remote_logging) {
97
+			add_action('shutdown', array($this, 'send_log'), 9999);
98 98
 		}
99 99
 
100 100
 	}
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function verify_filesystem() {
110 110
 		try {
111
-			EE_Registry::instance()->load_helper( 'File' );
112
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_log_file );
113
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_debug_file );
114
-			EEH_File::add_htaccess_deny_from_all( $this->_logs_folder );
115
-		} catch( EE_Error $e ){
116
-			EE_Error::add_error( sprintf( __(  'Event Espresso logging could not be setup because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
111
+			EE_Registry::instance()->load_helper('File');
112
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_log_file);
113
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_debug_file);
114
+			EEH_File::add_htaccess_deny_from_all($this->_logs_folder);
115
+		} catch (EE_Error $e) {
116
+			EE_Error::add_error(sprintf(__('Event Espresso logging could not be setup because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
117 117
 			return;
118 118
 		}
119 119
 	}
@@ -130,15 +130,15 @@  discard block
 block discarded – undo
130 130
 	 * @param string $type
131 131
 	 * @return string
132 132
 	 */
133
-	private function _format_message( $file = '', $function = '', $message = '', $type = '' ) {
134
-		$msg = '----------------------------------------------------------------------------------------' . PHP_EOL;
135
-		$msg .= '[' . current_time( 'mysql' ) . '] ';
136
-		$msg .= ! empty( $file ) ? basename( $file ) : '';
137
-		$msg .= ! empty( $file ) && ! empty( $function ) ? ' -> ' : '';
138
-		$msg .= ! empty( $function ) ? $function . '()' : '';
133
+	private function _format_message($file = '', $function = '', $message = '', $type = '') {
134
+		$msg = '----------------------------------------------------------------------------------------'.PHP_EOL;
135
+		$msg .= '['.current_time('mysql').'] ';
136
+		$msg .= ! empty($file) ? basename($file) : '';
137
+		$msg .= ! empty($file) && ! empty($function) ? ' -> ' : '';
138
+		$msg .= ! empty($function) ? $function.'()' : '';
139 139
 		$msg .= PHP_EOL;
140
-		$type = ! empty( $type ) ? $type : 'log message';
141
-		$msg .= ! empty( $message ) ? "\t" . '[' . $type . '] ' . $message . PHP_EOL : '';
140
+		$type = ! empty($type) ? $type : 'log message';
141
+		$msg .= ! empty($message) ? "\t".'['.$type.'] '.$message.PHP_EOL : '';
142 142
 		return $msg;
143 143
 	}
144 144
 
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
 	 * @param string $message
154 154
 	 * @param string $type
155 155
 	 */
156
-	public function log( $file = '', $function = '', $message = '', $type = '' ) {
157
-		$this->_log .= $this->_format_message( $file, $function, $message, $type );
156
+	public function log($file = '', $function = '', $message = '', $type = '') {
157
+		$this->_log .= $this->_format_message($file, $function, $message, $type);
158 158
 	}
159 159
 
160 160
 
@@ -166,10 +166,10 @@  discard block
 block discarded – undo
166 166
 	public function write_log() {
167 167
 		try {
168 168
 			//get existing log file and append new log info
169
-			$this->_log = EEH_File::get_file_contents( $this->_logs_folder . $this->_log_file ) . $this->_log;
170
-			EEH_File::write_to_file( $this->_logs_folder . $this->_log_file, $this->_log, 'Event Espresso Log' );
171
-		} catch( EE_Error $e ){
172
-			EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
169
+			$this->_log = EEH_File::get_file_contents($this->_logs_folder.$this->_log_file).$this->_log;
170
+			EEH_File::write_to_file($this->_logs_folder.$this->_log_file, $this->_log, 'Event Espresso Log');
171
+		} catch (EE_Error $e) {
172
+			EE_Error::add_error(sprintf(__('Could not write to the Event Espresso log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
173 173
 			return;
174 174
 		}
175 175
 	}
@@ -182,31 +182,31 @@  discard block
 block discarded – undo
182 182
 	 */
183 183
 	public function send_log() {
184 184
 
185
-		if ( empty( $this->_remote_logging_url )) {
185
+		if (empty($this->_remote_logging_url)) {
186 186
 			return;
187 187
 		}
188 188
 
189
-		$data = 'domain=' . $_SERVER['HTTP_HOST'];
190
-		$data .= '&ip=' . $_SERVER['SERVER_ADDR'];
191
-		$data .= '&server_type=' . $_SERVER['SERVER_SOFTWARE'];
192
-		$data .= '&time=' . time();
193
-		$data .= '&remote_log=' . $this->_log;
194
-		$data .= '&request_array=' . json_encode( $_REQUEST );
189
+		$data = 'domain='.$_SERVER['HTTP_HOST'];
190
+		$data .= '&ip='.$_SERVER['SERVER_ADDR'];
191
+		$data .= '&server_type='.$_SERVER['SERVER_SOFTWARE'];
192
+		$data .= '&time='.time();
193
+		$data .= '&remote_log='.$this->_log;
194
+		$data .= '&request_array='.json_encode($_REQUEST);
195 195
 		$data .= '&action=save';
196 196
 
197
-		if ( defined( 'EELOGGING_PASS' )) {
198
-			$data .= '&pass=' . EELOGGING_PASS;
197
+		if (defined('EELOGGING_PASS')) {
198
+			$data .= '&pass='.EELOGGING_PASS;
199 199
 		}
200
-		if ( defined( 'EELOGGING_KEY' )) {
201
-			$data .= '&key=' . EELOGGING_KEY;
200
+		if (defined('EELOGGING_KEY')) {
201
+			$data .= '&key='.EELOGGING_KEY;
202 202
 		}
203 203
 
204
-		$c = curl_init( $this->_remote_logging_url );
205
-		curl_setopt( $c, CURLOPT_POST, TRUE );
206
-		curl_setopt( $c, CURLOPT_POSTFIELDS, $data );
207
-		curl_setopt( $c, CURLOPT_RETURNTRANSFER, TRUE );
208
-		curl_exec( $c );
209
-		curl_close( $c );
204
+		$c = curl_init($this->_remote_logging_url);
205
+		curl_setopt($c, CURLOPT_POST, TRUE);
206
+		curl_setopt($c, CURLOPT_POSTFIELDS, $data);
207
+		curl_setopt($c, CURLOPT_RETURNTRANSFER, TRUE);
208
+		curl_exec($c);
209
+		curl_close($c);
210 210
 	}
211 211
 
212 212
 
@@ -217,18 +217,18 @@  discard block
 block discarded – undo
217 217
 	 * previous entries are overwritten
218 218
 	 */
219 219
 	public function write_debug() {
220
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
220
+		if (defined('WP_DEBUG') && WP_DEBUG) {
221 221
 			$this->_debug_log = '';
222
-			foreach ( $_GET as $key => $value ) {
223
-				$this->_debug_log .= '$_GET["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
222
+			foreach ($_GET as $key => $value) {
223
+				$this->_debug_log .= '$_GET["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
224 224
 			}
225
-			foreach ( $_POST as $key => $value ) {
226
-				$this->_debug_log .= '$_POST["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
225
+			foreach ($_POST as $key => $value) {
226
+				$this->_debug_log .= '$_POST["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
227 227
 			}
228 228
 			try {
229
-				EEH_File::write_to_file( $this->_logs_folder . $this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log' );
230
-			} catch( EE_Error $e ){
231
-				EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso debug log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
229
+				EEH_File::write_to_file($this->_logs_folder.$this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log');
230
+			} catch (EE_Error $e) {
231
+				EE_Error::add_error(sprintf(__('Could not write to the Event Espresso debug log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
232 232
 				return;
233 233
 			}
234 234
 		}
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 	 * __clone
241 241
 	 */
242 242
 	public function __clone() {
243
-		trigger_error( __( 'Clone is not allowed.', 'event_espresso' ), E_USER_ERROR );
243
+		trigger_error(__('Clone is not allowed.', 'event_espresso'), E_USER_ERROR);
244 244
 	}
245 245
 
246 246
 
Please login to merge, or discard this patch.
core/helpers/EEH_Tabbed_Content.helper.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -46,22 +46,22 @@  discard block
 block discarded – undo
46 46
 	 * @return string the assembled html string containing the tabbed content for display.
47 47
 	 * @throws \EE_Error
48 48
 	 */
49
-	public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE ) {
49
+	public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE) {
50 50
 
51 51
 		//first check if $tabs_names is not empty then the count must match the count of $tabs_content otherwise we've got a problem houston
52
-		if ( !empty( $tabs_names) && ( count( (array) $tabs_names) != count( (array) $tabs_content) ) ) {
53
-			throw new EE_Error( __('The count for $tabs_names and $tabs_content does not match.', 'event_espresso') );
52
+		if ( ! empty($tabs_names) && (count((array) $tabs_names) != count((array) $tabs_content))) {
53
+			throw new EE_Error(__('The count for $tabs_names and $tabs_content does not match.', 'event_espresso'));
54 54
 		}
55 55
 
56 56
 		//make sure we've got incoming data setup properly
57
-		$tabs = !empty( $tabs_names ) ? (array) $tabs_names : array_keys( (array) $tabs_contents );
58
-		$tabs_content = !empty( $tabs_names ) ? array_combine( (array) $tabs_names, (array) $tabs_content ) : $tabs_contents;
57
+		$tabs = ! empty($tabs_names) ? (array) $tabs_names : array_keys((array) $tabs_contents);
58
+		$tabs_content = ! empty($tabs_names) ? array_combine((array) $tabs_names, (array) $tabs_content) : $tabs_contents;
59 59
 
60
-		$all_tabs = '<h2 class="nav-tab-wrapper">' . "\n";
60
+		$all_tabs = '<h2 class="nav-tab-wrapper">'."\n";
61 61
 		$all_tabs_content = '';
62 62
 
63 63
 		$index = 0;
64
-		foreach ( $tabs as $tab ) {
64
+		foreach ($tabs as $tab) {
65 65
 			$active = $index === 0 ? true : false;
66 66
 			$all_tabs .= self::tab($tab, $active);
67 67
 			$all_tabs_content .= self::tab_content($tab, $tabs_content[$tab], $active);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
 		$tab_container_class = $small_tabs ? 'ee-nav-tabs ee-nav-tabs-small' : 'ee-nav-tabs';
80 80
 
81
-		return '<div class="'. $tab_container_class . '">' . "\n\t" . $all_tabs . $all_tabs_content . "\n" . '</div>';
81
+		return '<div class="'.$tab_container_class.'">'."\n\t".$all_tabs.$all_tabs_content."\n".'</div>';
82 82
 	}
83 83
 
84 84
 
@@ -102,11 +102,11 @@  discard block
 block discarded – undo
102 102
 	 * @throws \EE_Error
103 103
 	 */
104 104
 	public static function display_admin_nav_tabs($nav_tabs = array()) {
105
-		if ( empty($nav_tabs) )
106
-			throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) );
105
+		if (empty($nav_tabs))
106
+			throw new EE_Error(__('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso'));
107 107
 
108
-		$all_tabs = '<h2 class="nav-tab-wrapper">' . "\n";
109
-		foreach ( $nav_tabs as $slug => $tab ) {
108
+		$all_tabs = '<h2 class="nav-tab-wrapper">'."\n";
109
+		foreach ($nav_tabs as $slug => $tab) {
110 110
 			$all_tabs .= self::tab($slug, false, $tab['link_text'], $tab['url'], $tab['css_class']);
111 111
 		}
112 112
 		$all_tabs .= '</h2>';
@@ -122,13 +122,13 @@  discard block
 block discarded – undo
122 122
 	 * @param bool|string $css If string given then the generated tab will include that as the class.
123 123
 	 * @return string          html for tab
124 124
 	 */
125
-	private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE ) {
125
+	private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE) {
126 126
 		$name = str_replace(' ', '-', $name);
127 127
 		$class = $active ? 'nav-tab nav-tab-active' : 'nav-tab';
128
-		$class = $css ? $class . ' ' . $css : $class;
129
-		$nice_name = $nice_name ? $nice_name : ucwords( preg_replace('/(-|_)/', ' ', $name) );
130
-		$url = $url ? $url : '#' . $name;
131
-		$tab = '<a class="' . $class . '" rel="ee-tab-' . $name . '" href="' . $url . '">' . $nice_name . '</a>' . "\n\t";
128
+		$class = $css ? $class.' '.$css : $class;
129
+		$nice_name = $nice_name ? $nice_name : ucwords(preg_replace('/(-|_)/', ' ', $name));
130
+		$url = $url ? $url : '#'.$name;
131
+		$tab = '<a class="'.$class.'" rel="ee-tab-'.$name.'" href="'.$url.'">'.$nice_name.'</a>'."\n\t";
132 132
 		return $tab;
133 133
 	}
134 134
 
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	private static function tab_content($name, $tab_content, $active = false) {
146 146
 		$class = $active ? 'nav-tab-content' : 'nav-tab-content hidden';
147
-		$name = str_replace( ' ', '-', $name);
148
-		$content = "\t" . '<div class="'. $class . '" id="ee-tab-' . $name . '">' . "\n";
149
-		$content .= "\t" . $tab_content . "\n";
147
+		$name = str_replace(' ', '-', $name);
148
+		$content = "\t".'<div class="'.$class.'" id="ee-tab-'.$name.'">'."\n";
149
+		$content .= "\t".$tab_content."\n";
150 150
 		$content .= '<div style="clear:both"></div></div>';
151 151
 		return $content;
152 152
 	}
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 	 * @param string $default 			You can include a string for the item that will receive the "item_display" class for the js.
173 173
 	 * @return string                  a html snippet of of all the formatted link elements.
174 174
 	 */
175
-	public static function tab_text_links( $item_array, $container_class = '', $sep = '|', $default = '' ) {
176
-		$item_array = apply_filters( 'FHEE__EEH_Tabbed_Content__tab_text_links', $item_array, $container_class );
177
-		if ( !is_array($item_array) || empty( $item_array ) )
175
+	public static function tab_text_links($item_array, $container_class = '', $sep = '|', $default = '') {
176
+		$item_array = apply_filters('FHEE__EEH_Tabbed_Content__tab_text_links', $item_array, $container_class);
177
+		if ( ! is_array($item_array) || empty($item_array))
178 178
 			return false; //get out we don't have even the basic thing we need!
179 179
 
180 180
 
@@ -185,15 +185,15 @@  discard block
 block discarded – undo
185 185
 			'title' => esc_attr__('Link for Item', 'event_espresso'),
186 186
 			'slug' => 'item_slug'
187 187
 		);
188
-		$container_class = !empty($container_class) ? 'ee-text-links ' . $container_class : 'ee-text-links';
189
-		$list = '<ul class="' . $container_class . '">';
188
+		$container_class = ! empty($container_class) ? 'ee-text-links '.$container_class : 'ee-text-links';
189
+		$list = '<ul class="'.$container_class.'">';
190 190
 
191 191
 		$ci = 1;
192
-		foreach ( $item_array as $item ) {
193
-			$item = wp_parse_args( $item, $defaults );
194
-			$item['class'] = !empty($default) && $default == $item['slug'] ? 'item_display ' . $item['class'] : $item['class'];
192
+		foreach ($item_array as $item) {
193
+			$item = wp_parse_args($item, $defaults);
194
+			$item['class'] = ! empty($default) && $default == $item['slug'] ? 'item_display '.$item['class'] : $item['class'];
195 195
 			$list .= self::_text_link_item($item);
196
-			if ( !empty($sep) && $ci != count($item_array) )
196
+			if ( ! empty($sep) && $ci != count($item_array))
197 197
 				$list .= self::_text_link_item($sep);
198 198
 			$ci++;
199 199
 		}
@@ -204,9 +204,9 @@  discard block
 block discarded – undo
204 204
 
205 205
 
206 206
 
207
-	private static function _text_link_item( $item ) {
207
+	private static function _text_link_item($item) {
208 208
 		//if this isn't an array then we're doing a separator
209
-		if ( !is_array( $item ) ) {
209
+		if ( ! is_array($item)) {
210 210
 			$label = $item;
211 211
 			$class = 'ee-text-link-sep';
212 212
 			$href = '';
@@ -215,12 +215,12 @@  discard block
 block discarded – undo
215 215
 			extract($item);
216 216
 		}
217 217
 
218
-		$class = $class != 'ee-text-link-sep'  ? 'class="ee-text-link-li ' . $class . '"' : 'class="ee-text-link-sep"';
218
+		$class = $class != 'ee-text-link-sep' ? 'class="ee-text-link-li '.$class.'"' : 'class="ee-text-link-sep"';
219 219
 
220
-		$content = '<li ' . $class . '>';
221
-		$content .= !empty($href) ? '<a class="ee-text-link" href="#' . $href . '" title="' . $title . '">' : '';
220
+		$content = '<li '.$class.'>';
221
+		$content .= ! empty($href) ? '<a class="ee-text-link" href="#'.$href.'" title="'.$title.'">' : '';
222 222
 		$content .= $label;
223
-		$content .= !empty($href) ? '</a>' : '';
223
+		$content .= ! empty($href) ? '</a>' : '';
224 224
 		$content .= '</li>';
225 225
 		return $content;
226 226
 	}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_8_0.dms.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -715,7 +715,7 @@
 block discarded – undo
715 715
 				}
716 716
 			}
717 717
 		}
718
-        }
718
+		}
719 719
 	/**
720 720
 	 * addresses https://events.codebasehq.com/projects/event-espresso/tickets/8731
721 721
 	 * which should just be a temporary issue for folks who installed 4.8.0-4.8.5;
Please login to merge, or discard this patch.
Spacing   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@  discard block
 block discarded – undo
13 13
 //(all other times it gets resurrected from a wordpress option)
14 14
 $stages = glob(EE_CORE.'data_migration_scripts/4_8_0_stages/*');
15 15
 $class_to_filepath = array();
16
-foreach($stages as $filepath){
16
+foreach ($stages as $filepath) {
17 17
 	$matches = array();
18
-	preg_match('~4_8_0_stages/(.*).dmsstage.php~',$filepath,$matches);
18
+	preg_match('~4_8_0_stages/(.*).dmsstage.php~', $filepath, $matches);
19 19
 	$class_to_filepath[$matches[1]] = $filepath;
20 20
 }
21 21
 //give addons a chance to autoload their stages too
22
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_8_0__autoloaded_stages',$class_to_filepath);
22
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_8_0__autoloaded_stages', $class_to_filepath);
23 23
 EEH_Autoloader::register_autoloader($class_to_filepath);
24 24
 
25 25
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
  * @since                4.6.0
36 36
  *
37 37
  */
38
-class EE_DMS_Core_4_8_0 extends EE_Data_Migration_Script_Base{
38
+class EE_DMS_Core_4_8_0 extends EE_Data_Migration_Script_Base {
39 39
 
40 40
 	/**
41 41
 	 * return EE_DMS_Core_4_8_0
@@ -62,14 +62,14 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function can_migrate_from_version($version_array) {
64 64
 		$version_string = $version_array['Core'];
65
-		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
65
+		if ($version_string <= '4.8.0' && $version_string >= '4.7.0') {
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		}elseif ( ! $version_string) {
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
71
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
72
+		} else {
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
@@ -90,19 +90,19 @@  discard block
 block discarded – undo
90 90
 	 * @return bool
91 91
 	 */
92 92
 	public function schema_changes_before_migration() {
93
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
94
-		$now_in_mysql = current_time( 'mysql', true );
93
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
94
+		$now_in_mysql = current_time('mysql', true);
95 95
 
96
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
97
-		$table_name='esp_answer';
98
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
96
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
97
+		$table_name = 'esp_answer';
98
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
99 99
 					REG_ID INT UNSIGNED NOT NULL,
100 100
 					QST_ID INT UNSIGNED NOT NULL,
101 101
 					ANS_value TEXT NOT NULL,
102 102
 					PRIMARY KEY  (ANS_ID),
103 103
 					KEY REG_ID (REG_ID),
104 104
 					KEY QST_ID (QST_ID)";
105
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
105
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
106 106
 
107 107
 		$table_name = 'esp_attendee_meta';
108 108
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
143 143
 					  CNT_active TINYINT(1) DEFAULT '0',
144 144
 					  PRIMARY KEY  (CNT_ISO)";
145
-		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB' );
145
+		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
146 146
 
147 147
 		$table_name = 'esp_currency';
148 148
 		$sql = "CUR_code VARCHAR(6) COLLATE utf8_bin NOT NULL,
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 				CUR_dec_plc VARCHAR(1) COLLATE utf8_bin NOT NULL DEFAULT '2',
153 153
 				CUR_active TINYINT(1) DEFAULT '0',
154 154
 				PRIMARY KEY  (CUR_code)";
155
-		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB' );
155
+		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
156 156
 
157 157
 
158 158
 		$table_name = 'esp_currency_payment_method';
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
 						KEY EVT_ID (EVT_ID),
183 183
 						KEY DTT_is_primary (DTT_is_primary)";
184 184
 
185
-		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
185
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
186 186
 
187 187
 		$table_name = 'esp_event_meta';
188 188
 		$sql = "
@@ -201,41 +201,41 @@  discard block
 block discarded – undo
201 201
 			EVT_donations TINYINT(1) NULL,
202 202
 			PRIMARY KEY  (EVTM_ID),
203 203
 			KEY EVT_ID (EVT_ID)";
204
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
204
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
205 205
 
206 206
 
207 207
 
208
-		$table_name='esp_event_question_group';
209
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
208
+		$table_name = 'esp_event_question_group';
209
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
210 210
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
211 211
 					QSG_ID INT UNSIGNED NOT NULL,
212 212
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
213 213
 					PRIMARY KEY  (EQG_ID),
214 214
 					KEY EVT_ID (EVT_ID),
215 215
 					KEY QSG_ID (QSG_ID)";
216
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
216
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
217 217
 
218 218
 
219 219
 
220
-		$table_name='esp_event_venue';
221
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
220
+		$table_name = 'esp_event_venue';
221
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
222 222
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
223 223
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
224 224
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
225 225
 				PRIMARY KEY  (EVV_ID)";
226
-		$this->_table_has_not_changed_since_previous($table_name,$sql, 'ENGINE=InnoDB');
226
+		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
227 227
 
228 228
 
229 229
 
230
-		$table_name='esp_extra_meta';
231
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
230
+		$table_name = 'esp_extra_meta';
231
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
232 232
 				OBJ_ID INT(11) DEFAULT NULL,
233 233
 				EXM_type VARCHAR(45) DEFAULT NULL,
234 234
 				EXM_key VARCHAR(45) DEFAULT NULL,
235 235
 				EXM_value TEXT,
236 236
 				PRIMARY KEY  (EXM_ID),
237 237
 				KEY EXM_type (EXM_type,OBJ_ID,EXM_key)";
238
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
238
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
239 239
 
240 240
 		$table_name = 'esp_extra_join';
241 241
 		$sql = "EXJ_ID INT(11) NOT NULL AUTO_INCREMENT,
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
 				KEY second_model (EXJ_second_model_name,EXJ_second_model_id)";
249 249
 		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB ');
250 250
 
251
-		$table_name='esp_line_item';
252
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
251
+		$table_name = 'esp_line_item';
252
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
253 253
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
254 254
 				TXN_ID INT(11) DEFAULT NULL,
255 255
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 				PRIMARY KEY  (LIN_ID),
269 269
 				KEY LIN_code (LIN_code(191)),
270 270
 				KEY TXN_ID (TXN_ID)";
271
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB' );
271
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
272 272
 
273 273
 		$table_name = 'esp_log';
274 274
 		$sql = "LOG_ID INT(11) NOT NULL AUTO_INCREMENT,
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
 					MTP_is_active TINYINT(1) NOT NULL DEFAULT '1',
308 308
 					PRIMARY KEY  (GRP_ID),
309 309
 					KEY MTP_user_id (MTP_user_id)";
310
-		$this->_table_has_not_changed_since_previous( $table_name, $sql, 'ENGINE=InnoDB');
310
+		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
311 311
 
312 312
 		$table_name = 'esp_event_message_template';
313 313
 		$sql = "EMT_ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
 					PRIMARY KEY  (EMT_ID),
317 317
 					KEY EVT_ID (EVT_ID),
318 318
 					KEY GRP_ID (GRP_ID)";
319
-		$this->_table_has_not_changed_since_previous( $table_name, $sql, 'ENGINE=InnoDB');
319
+		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
320 320
 
321 321
 
322 322
 		$table_name = 'esp_payment';
@@ -389,8 +389,8 @@  discard block
 block discarded – undo
389 389
 					  PRIMARY KEY  (TTM_ID)";
390 390
 		$this->_table_has_not_changed_since_previous($table_name, $sql, 'ENGINE=InnoDB');
391 391
 
392
-		$table_name='esp_question';
393
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
392
+		$table_name = 'esp_question';
393
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
394 394
 					QST_display_text TEXT NOT NULL,
395 395
 					QST_admin_label VARCHAR(255) NOT NULL,
396 396
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -404,22 +404,22 @@  discard block
 block discarded – undo
404 404
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
405 405
 					PRIMARY KEY  (QST_ID),
406 406
 					KEY QST_order (QST_order)';
407
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
407
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
408 408
 
409
-		$table_name='esp_question_group_question';
410
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
409
+		$table_name = 'esp_question_group_question';
410
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
411 411
 					QSG_ID INT UNSIGNED NOT NULL,
412 412
 					QST_ID INT UNSIGNED NOT NULL,
413 413
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
414 414
 					PRIMARY KEY  (QGQ_ID),
415 415
 					KEY QST_ID (QST_ID),
416 416
 					KEY QSG_ID_order (QSG_ID,QGQ_order)";
417
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
417
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
418 418
 
419 419
 
420 420
 
421
-		$table_name='esp_question_option';
422
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
421
+		$table_name = 'esp_question_option';
422
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
423 423
 					QSO_value VARCHAR(255) NOT NULL,
424 424
 					QSO_desc TEXT NOT NULL,
425 425
 					QST_ID INT UNSIGNED NOT NULL,
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 					PRIMARY KEY  (QSO_ID),
430 430
 					KEY QST_ID (QST_ID),
431 431
 					KEY QSO_order (QSO_order)";
432
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
432
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
433 433
 
434 434
 
435 435
 
@@ -475,8 +475,8 @@  discard block
 block discarded – undo
475 475
 
476 476
 
477 477
 
478
-		$table_name='esp_checkin';
479
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
478
+		$table_name = 'esp_checkin';
479
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
480 480
 					REG_ID INT(10) UNSIGNED NOT NULL,
481 481
 					DTT_ID INT(10) UNSIGNED NOT NULL,
482 482
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
 					  PRC_parent INT(10) UNSIGNED DEFAULT 0,
572 572
 					  PRIMARY KEY  (PRC_ID),
573 573
 					  KEY PRT_ID (PRT_ID)";
574
-		$this->_table_is_changed_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
574
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
575 575
 
576 576
 		$table_name = "esp_price_type";
577 577
 		$sql = "PRT_ID TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -609,10 +609,10 @@  discard block
 block discarded – undo
609 609
 					  TKT_deleted TINYINT(1) NOT NULL DEFAULT '0',
610 610
 					  PRIMARY KEY  (TKT_ID),
611 611
 					  KEY TKT_start_date (TKT_start_date)";
612
-		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
612
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
613 613
 
614 614
 		$table_name = 'esp_question_group';
615
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
615
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
616 616
 					QSG_name VARCHAR(255) NOT NULL,
617 617
 					QSG_identifier VARCHAR(100) NOT NULL,
618 618
 					QSG_desc TEXT NULL,
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 					PRIMARY KEY  (QSG_ID),
626 626
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier),
627 627
 					KEY QSG_order (QSG_order)';
628
-		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
628
+		$this->_table_is_changed_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
629 629
 
630 630
 		/** @var EE_DMS_Core_4_1_0 $script_4_1_defaults */
631 631
 		$script_4_1_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
@@ -661,7 +661,7 @@  discard block
 block discarded – undo
661 661
 		return $script_4_7_defaults->schema_changes_after_migration();
662 662
 	}
663 663
 
664
-	public function migration_page_hooks(){
664
+	public function migration_page_hooks() {
665 665
 
666 666
 	}
667 667
 	
@@ -675,19 +675,19 @@  discard block
 block discarded – undo
675 675
 		//CNT_ISO, CNT_ISO3, RGN_ID, CNT_name, CNT_cur_code, CNT_cur_single, CNT_cur_plural, CNT_cur_sign, CNT_cur_sign_b4, CNT_cur_dec_plc, CNT_tel_code, CNT_is_EU, CNT_active
676 676
 		//('AD', 'AND', 0, 'Andorra', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+376', 0, 0),
677 677
 		$newer_countries = array(
678
-			array( 'AX', 'ALA', 0, 'Alan Islands', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+358', 1, 0 ),
679
-			array( 'BL', 'BLM', 0, 'Saint Barthelemy', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+590', 1, 0 ),
680
-			array( 'CW', 'CUW', 0, 'Curacao', 'ANG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '+599', 1, 0 ),
681
-			array( 'GG', 'GGY', 0, 'Guernsey', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+44', 0, 0 ),
682
-			array( 'IM', 'IMN', 0, 'Isle of Man', 'GBP', 'Pound', 'Pounds', '£', 1, 2,  '+44', 0, 0  ),
683
-			array( 'JE', 'JEY', 0, 'Jersey', 'GBP', 'Pound', 'Pounds', '£', 1, 2, '+44', 0, 0 ),
684
-			array( 'MF', 'MAF', 0, 'Saint Martin', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+590', 1, 0 ),
685
-			array( 'MN', 'MNE', 0, 'Montenegro', 'EUR', 'Euro', 'Euros', '€', 1,  2, '+382', 0, 0 ),
686
-			array( 'RS', 'SRB', 0, 'Serbia', 'RSD', 'Dinar', 'Dinars', '', 0, 2, '+941', 1, 0 ),
687
-			array( 'SS', 'SSD', 0, 'South Sudan', 'SSP', 'Pound', 'Pounds', '£', 1, 2, '+211', 0, 0 ),
688
-			array( 'SX', 'SXM', 0, 'Sint Maarten', 'ANG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '+1', 1, 0 ),
689
-			array( 'XK', 'XKX', 0, 'Kosovo', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+381', 0, 0 ),
690
-			array( 'YT', 'MYT', 0, 'Mayotte', 'EUR', 'Euro', 'Euros', '€', 0, 2, '+262', 1, 0 ),
678
+			array('AX', 'ALA', 0, 'Alan Islands', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+358', 1, 0),
679
+			array('BL', 'BLM', 0, 'Saint Barthelemy', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+590', 1, 0),
680
+			array('CW', 'CUW', 0, 'Curacao', 'ANG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '+599', 1, 0),
681
+			array('GG', 'GGY', 0, 'Guernsey', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+44', 0, 0),
682
+			array('IM', 'IMN', 0, 'Isle of Man', 'GBP', 'Pound', 'Pounds', '£', 1, 2, '+44', 0, 0),
683
+			array('JE', 'JEY', 0, 'Jersey', 'GBP', 'Pound', 'Pounds', '£', 1, 2, '+44', 0, 0),
684
+			array('MF', 'MAF', 0, 'Saint Martin', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+590', 1, 0),
685
+			array('MN', 'MNE', 0, 'Montenegro', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+382', 0, 0),
686
+			array('RS', 'SRB', 0, 'Serbia', 'RSD', 'Dinar', 'Dinars', '', 0, 2, '+941', 1, 0),
687
+			array('SS', 'SSD', 0, 'South Sudan', 'SSP', 'Pound', 'Pounds', '£', 1, 2, '+211', 0, 0),
688
+			array('SX', 'SXM', 0, 'Sint Maarten', 'ANG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '+1', 1, 0),
689
+			array('XK', 'XKX', 0, 'Kosovo', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+381', 0, 0),
690
+			array('YT', 'MYT', 0, 'Mayotte', 'EUR', 'Euro', 'Euros', '€', 0, 2, '+262', 1, 0),
691 691
 		);
692 692
 		global $wpdb;
693 693
 		$country_table = $wpdb->prefix."esp_country";
@@ -706,14 +706,14 @@  discard block
 block discarded – undo
706 706
 							"CNT_is_EU" => '%d',
707 707
 							"CNT_active" => '%d',
708 708
 						);
709
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $country_table . "'") == $country_table ) {
710
-			foreach( $newer_countries as $country ) {
711
-				$SQL = "SELECT COUNT('CNT_ISO') FROM {$country_table} WHERE CNT_ISO='{$country[0]}' LIMIT 1" ;
709
+		if ($wpdb->get_var("SHOW TABLES LIKE '".$country_table."'") == $country_table) {
710
+			foreach ($newer_countries as $country) {
711
+				$SQL = "SELECT COUNT('CNT_ISO') FROM {$country_table} WHERE CNT_ISO='{$country[0]}' LIMIT 1";
712 712
 				$countries = $wpdb->get_var($SQL);
713
-				if ( ! $countries ) {
713
+				if ( ! $countries) {
714 714
 
715
-					$wpdb->insert( $country_table,
716
-							array_combine( array_keys( $country_format), $country ),
715
+					$wpdb->insert($country_table,
716
+							array_combine(array_keys($country_format), $country),
717 717
 							$country_format
718 718
 							);
719 719
 				}
@@ -731,7 +731,7 @@  discard block
 block discarded – undo
731 731
 		// CUR_code, CUR_single, CUR_plural, CUR_sign, CUR_dec_plc, CUR_active
732 732
 		//( 'EUR',  'Euro',  'Euros',  '€',  2,1),
733 733
 		$newer_currencies = array(
734
-			array( 'RSD', 'Dinar', 'Dinars', '', 3, 1 ),
734
+			array('RSD', 'Dinar', 'Dinars', '', 3, 1),
735 735
 		);
736 736
 		global $wpdb;
737 737
 		$currency_table = $wpdb->prefix."esp_currency";
@@ -743,14 +743,14 @@  discard block
 block discarded – undo
743 743
 							"CUR_dec_plc" => '%d',
744 744
 							"CUR_active" => '%d',
745 745
 						);
746
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $currency_table . "'") == $currency_table ) {
747
-			foreach( $newer_currencies as $currency ) {
748
-				$SQL = "SELECT COUNT('CUR_code') FROM {$currency_table} WHERE CUR_code='{$currency[0]}' LIMIT 1" ;
746
+		if ($wpdb->get_var("SHOW TABLES LIKE '".$currency_table."'") == $currency_table) {
747
+			foreach ($newer_currencies as $currency) {
748
+				$SQL = "SELECT COUNT('CUR_code') FROM {$currency_table} WHERE CUR_code='{$currency[0]}' LIMIT 1";
749 749
 				$countries = $wpdb->get_var($SQL);
750
-				if ( ! $countries ) {
750
+				if ( ! $countries) {
751 751
 
752
-					$wpdb->insert( $currency_table,
753
-							array_combine( array_keys( $currency_format), $currency ),
752
+					$wpdb->insert($currency_table,
753
+							array_combine(array_keys($currency_format), $currency),
754 754
 							$currency_format
755 755
 							);
756 756
 				}
@@ -762,9 +762,9 @@  discard block
 block discarded – undo
762 762
 	 * which should just be a temporary issue for folks who installed 4.8.0-4.8.5;
763 763
 	 * we should be able to stop doing this in 4.9
764 764
 	 */
765
-	public function fix_non_default_taxes(){
765
+	public function fix_non_default_taxes() {
766 766
 		global $wpdb;
767
-		$query = $wpdb->prepare( "UPDATE
767
+		$query = $wpdb->prepare("UPDATE
768 768
 				{$wpdb->prefix}esp_price p INNER JOIN
769 769
 				{$wpdb->prefix}esp_price_type pt ON p.PRT_ID = pt.PRT_ID
770 770
 			SET
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
 			WHERE
773 773
 				p.PRC_is_default = 0 AND
774 774
 				pt.PBT_ID = %d
775
-					", EEM_Price_Type::base_type_tax );
776
-		$wpdb->query( $query );
775
+					", EEM_Price_Type::base_type_tax);
776
+		$wpdb->query($query);
777 777
 	}
778 778
 }
Please login to merge, or discard this patch.
core/libraries/plugin_api/EE_Register_Shortcode.lib.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -1,29 +1,29 @@
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); }
2 2
 /**
3
- * Event Espresso
4
- *
5
- * Event Registration and Ticketing Management Plugin for WordPress
6
- *
7
- * @ package			Event Espresso
8
- * @ author			    Event Espresso
9
- * @ copyright		(c) 2008-2014 Event Espresso  All Rights Reserved.
10
- * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
11
- * @ link					http://www.eventespresso.com
12
- * @ version		 	$VID:$
13
- *
14
- * ------------------------------------------------------------------------
15
- */
3
+	 * Event Espresso
4
+	 *
5
+	 * Event Registration and Ticketing Management Plugin for WordPress
6
+	 *
7
+	 * @ package			Event Espresso
8
+	 * @ author			    Event Espresso
9
+	 * @ copyright		(c) 2008-2014 Event Espresso  All Rights Reserved.
10
+	 * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
11
+	 * @ link					http://www.eventespresso.com
12
+	 * @ version		 	$VID:$
13
+	 *
14
+	 * ------------------------------------------------------------------------
15
+	 */
16 16
 /**
17
- * Class EE_Register_Shortcode
18
- *
19
- * EEI_Plugin_API class for registering shortcodes for use with EE core.
20
- * Receives an array of shortcode details and takes care of adding all of the necessary hooks and filters to integrate with EE core
21
- *
22
- * @package        	Event Espresso
23
- * @subpackage  	plugin api
24
- * @since 				4.3.0
25
- * @author 				Brent Christensen
26
- */
17
+	 * Class EE_Register_Shortcode
18
+	 *
19
+	 * EEI_Plugin_API class for registering shortcodes for use with EE core.
20
+	 * Receives an array of shortcode details and takes care of adding all of the necessary hooks and filters to integrate with EE core
21
+	 *
22
+	 * @package        	Event Espresso
23
+	 * @subpackage  	plugin api
24
+	 * @since 				4.3.0
25
+	 * @author 				Brent Christensen
26
+	 */
27 27
 class EE_Register_Shortcode implements EEI_Plugin_API {
28 28
 
29 29
 	/**
Please login to merge, or discard this patch.
registrations/templates/attendee_registrations_main_meta_box.template.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -5,42 +5,42 @@
 block discarded – undo
5 5
 		<table class="admin-primary-mbox-tbl">
6 6
 			<thead>
7 7
 				<tr>
8
-					<th class="jst-left"><?php esc_html_e( 'Event Name', 'event_espresso' );?></th>
9
-					<th class="jst-left"><?php esc_html_e( 'REG ID', 'event_espresso' );?></th>
10
-					<th class="jst-left"><?php esc_html_e( 'TXN ID', 'event_espresso' );?></th>
11
-					<th class="jst-left"><?php esc_html_e( 'Reg Code', 'event_espresso' );?></th>
12
-					<th class="jst-rght"><?php esc_html_e( 'Ticket Price', 'event_espresso' );?></th>
8
+					<th class="jst-left"><?php esc_html_e('Event Name', 'event_espresso'); ?></th>
9
+					<th class="jst-left"><?php esc_html_e('REG ID', 'event_espresso'); ?></th>
10
+					<th class="jst-left"><?php esc_html_e('TXN ID', 'event_espresso'); ?></th>
11
+					<th class="jst-left"><?php esc_html_e('Reg Code', 'event_espresso'); ?></th>
12
+					<th class="jst-rght"><?php esc_html_e('Ticket Price', 'event_espresso'); ?></th>
13 13
 				</tr>
14 14
 			</thead>
15 15
 			<tbody>
16
-			<?php foreach( $registrations as $registration ) : ?>
16
+			<?php foreach ($registrations as $registration) : ?>
17 17
 				<tr>
18 18
 					<td class="jst-left">
19 19
 					<?php
20
-						$event_url = add_query_arg( array( 'action' => 'edit', 'post' => $registration->event_ID() ), admin_url( 'admin.php?page=espresso_events' ));
21
-						echo EE_Registry::instance()->CAP->current_user_can( 'ee_edit_event', 'espresso_events_edit', $registration->event_ID() ) ?  '<a href="'. $event_url .'"  title="'. esc_attr__( 'Edit Event', 'event_espresso' ) .'">' . $registration->event_name() . '</a>' : $registration->event_name();
20
+						$event_url = add_query_arg(array('action' => 'edit', 'post' => $registration->event_ID()), admin_url('admin.php?page=espresso_events'));
21
+						echo EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $registration->event_ID()) ? '<a href="'.$event_url.'"  title="'.esc_attr__('Edit Event', 'event_espresso').'">'.$registration->event_name().'</a>' : $registration->event_name();
22 22
 					?>
23 23
 					</td>
24 24
 					<td class="jst-left">
25 25
 					<?php
26
-							$reg_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_registration', '_REG_ID'=>$registration->ID() ), REG_ADMIN_URL );
27
-							echo EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $registration->ID() ) ? '
28
-							<a href="'.$reg_url.'" title="' . esc_attr__( 'View Registration Details', 'event_espresso' ) . '">' . 
29
-								esc_html__( 'View Registration', 'event_espresso' ) .
26
+							$reg_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_registration', '_REG_ID'=>$registration->ID()), REG_ADMIN_URL);
27
+							echo EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $registration->ID()) ? '
28
+							<a href="'.$reg_url.'" title="'.esc_attr__('View Registration Details', 'event_espresso').'">'. 
29
+								esc_html__('View Registration', 'event_espresso').
30 30
 							'</a>' : $registration->ID();
31 31
 					?>
32 32
 					</td>
33 33
 					<td class="jst-left">
34 34
 					<?php
35
-						$txn_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=>$registration->transaction_ID() ), TXN_ADMIN_URL );
36
-						echo EE_Registry::instance()->CAP->current_user_can( 'ee_read_transaction', 'espresso_transactions_view_transaction' ) ? '
37
-						<a href="'.$txn_url.'" title="' . esc_attr__( 'View Transaction Details', 'event_espresso' ) . '">' .
38
-							sprintf( esc_html__('View Transaction %d', 'event_espresso'), $registration->transaction_ID() ) .
35
+						$txn_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=>$registration->transaction_ID()), TXN_ADMIN_URL);
36
+						echo EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction') ? '
37
+						<a href="'.$txn_url.'" title="'.esc_attr__('View Transaction Details', 'event_espresso').'">'.
38
+							sprintf(esc_html__('View Transaction %d', 'event_espresso'), $registration->transaction_ID()).
39 39
 						'</a>' : $registration->transaction_ID();
40 40
 					?>
41 41
 					</td>
42
-					<td class="jst-left"><?php echo $registration->reg_code();?></td>
43
-					<td class="jst-rght"><?php echo EEH_Template::format_currency( $registration->final_price() );?></td>
42
+					<td class="jst-left"><?php echo $registration->reg_code(); ?></td>
43
+					<td class="jst-rght"><?php echo EEH_Template::format_currency($registration->final_price()); ?></td>
44 44
 				</tr>
45 45
 			<?php endforeach; ?>
46 46
 			</tbody>
Please login to merge, or discard this patch.
core/EE_Cron_Tasks.core.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); }
2 2
 /**
3
- *
4
- * Class EE_Cron_Tasks
5
- *
6
- * @package 			Event Espresso
7
- * @subpackage 	core
8
- * @author 				Brent Christensen
9
- *
10
- */
3
+	 *
4
+	 * Class EE_Cron_Tasks
5
+	 *
6
+	 * @package 			Event Espresso
7
+	 * @subpackage 	core
8
+	 * @author 				Brent Christensen
9
+	 *
10
+	 */
11 11
 class EE_Cron_Tasks extends EE_BASE {
12 12
 
13 13
 	/**
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 	 * @param int $PAY_ID
189 189
 	 */
190 190
 	public static function setup_update_for_transaction_with_payment( $TXN_ID = 0, $PAY_ID = 0 ) {
191
-            do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
191
+			do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
192 192
 		if ( absint( $TXN_ID )) {
193 193
 			self::$_update_transactions_with_payment[ $TXN_ID ] = $PAY_ID;
194 194
 			add_action(
Please login to merge, or discard this patch.
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * @return EE_Cron_Tasks
29 29
 	 */
30 30
 	public static function instance() {
31
-		if ( ! self::$_instance instanceof EE_Cron_Tasks ) {
31
+		if ( ! self::$_instance instanceof EE_Cron_Tasks) {
32 32
 			self::$_instance = new self();
33 33
 		}
34 34
 		return self::$_instance;
@@ -41,30 +41,30 @@  discard block
 block discarded – undo
41 41
 	 * @return EE_Cron_Tasks
42 42
 	 */
43 43
 	private function __construct() {
44
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
44
+		do_action('AHEE_log', __CLASS__, __FUNCTION__);
45 45
 		// UPDATE TRANSACTION WITH PAYMENT
46 46
 		add_action(
47 47
 			'AHEE__EE_Cron_Tasks__update_transaction_with_payment_2',
48
-			array( 'EE_Cron_Tasks', 'setup_update_for_transaction_with_payment' ),
48
+			array('EE_Cron_Tasks', 'setup_update_for_transaction_with_payment'),
49 49
 			10, 2
50 50
 		);
51 51
 		// FINALIZE ABANDONED TRANSACTIONS
52 52
 		add_action(
53 53
 			'AHEE__EE_Cron_Tasks__finalize_abandoned_transactions',
54
-			array( 'EE_Cron_Tasks', 'check_for_abandoned_transactions' ),
54
+			array('EE_Cron_Tasks', 'check_for_abandoned_transactions'),
55 55
 			10, 1
56 56
 		);
57 57
 		// CLEAN OUT JUNK TRANSACTIONS AND RELATED DATA
58 58
 		add_action(
59 59
 				'AHEE__EE_Cron_Tasks__clean_up_junk_transactions',
60
-				array( 'EE_Cron_Tasks', 'clean_out_junk_transactions' )
60
+				array('EE_Cron_Tasks', 'clean_out_junk_transactions')
61 61
 		);
62 62
 		// logging
63 63
 		add_action(
64 64
 			'AHEE__EE_System__load_core_configuration__complete',
65
-			array( 'EE_Cron_Tasks', 'log_scheduled_ee_crons' )
65
+			array('EE_Cron_Tasks', 'log_scheduled_ee_crons')
66 66
 		);
67
-		EE_Registry::instance()->load_lib( 'Messages_Scheduler' );
67
+		EE_Registry::instance()->load_lib('Messages_Scheduler');
68 68
 	}
69 69
 
70 70
 
@@ -79,17 +79,17 @@  discard block
 block discarded – undo
79 79
 			'AHEE__EE_Cron_Tasks__finalize_abandoned_transactions',
80 80
 			'AHEE__EE_Cron_Tasks__clean_up_junk_transactions',
81 81
 		);
82
-		$crons = get_option( 'cron' );
83
-		if ( ! is_array( $crons ) ) {
82
+		$crons = get_option('cron');
83
+		if ( ! is_array($crons)) {
84 84
 			return;
85 85
 		}
86
-		foreach ( $crons as $timestamp => $cron ) {
87
-			foreach ( $ee_crons as $ee_cron ) {
88
-				if ( isset( $cron[ $ee_cron ] ) ) {
89
-					foreach ( $cron[ $ee_cron ] as $ee_cron_details ) {
90
-						do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $ee_cron, 'scheduled EE cron' );
91
-						if ( ! empty( $ee_cron_details[ 'args' ] )) {
92
-							do_action( 'AHEE_log', __CLASS__, __FUNCTION__, print_r( $ee_cron_details[ 'args' ], true ), "$ee_cron args" );
86
+		foreach ($crons as $timestamp => $cron) {
87
+			foreach ($ee_crons as $ee_cron) {
88
+				if (isset($cron[$ee_cron])) {
89
+					foreach ($cron[$ee_cron] as $ee_cron_details) {
90
+						do_action('AHEE_log', __CLASS__, __FUNCTION__, $ee_cron, 'scheduled EE cron');
91
+						if ( ! empty($ee_cron_details['args'])) {
92
+							do_action('AHEE_log', __CLASS__, __FUNCTION__, print_r($ee_cron_details['args'], true), "$ee_cron args");
93 93
 						}
94 94
 					}
95 95
 				}
@@ -126,15 +126,15 @@  discard block
 block discarded – undo
126 126
 		$TXN_ID,
127 127
 		$PAY_ID
128 128
 	) {
129
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
129
+		do_action('AHEE_log', __CLASS__, __FUNCTION__);
130 130
 		// validate $TXN_ID and $timestamp
131
-		$TXN_ID = absint( $TXN_ID );
132
-		$timestamp = absint( $timestamp );
133
-		if ( $TXN_ID && $timestamp ) {
131
+		$TXN_ID = absint($TXN_ID);
132
+		$timestamp = absint($timestamp);
133
+		if ($TXN_ID && $timestamp) {
134 134
 			wp_schedule_single_event(
135 135
 				$timestamp,
136 136
 				'AHEE__EE_Cron_Tasks__update_transaction_with_payment_2',
137
-				array( $TXN_ID, $PAY_ID )
137
+				array($TXN_ID, $PAY_ID)
138 138
 			);
139 139
 		}
140 140
 	}
@@ -156,13 +156,13 @@  discard block
 block discarded – undo
156 156
 	 * @param int  $TXN_ID
157 157
 	 * @param int $PAY_ID
158 158
 	 */
159
-	public static function setup_update_for_transaction_with_payment( $TXN_ID = 0, $PAY_ID = 0 ) {
160
-            do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
161
-		if ( absint( $TXN_ID )) {
162
-			self::$_update_transactions_with_payment[ $TXN_ID ] = $PAY_ID;
159
+	public static function setup_update_for_transaction_with_payment($TXN_ID = 0, $PAY_ID = 0) {
160
+            do_action('AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID');
161
+		if (absint($TXN_ID)) {
162
+			self::$_update_transactions_with_payment[$TXN_ID] = $PAY_ID;
163 163
 			add_action(
164 164
 				'shutdown',
165
-				array( 'EE_Cron_Tasks', 'update_transaction_with_payment' ),
165
+				array('EE_Cron_Tasks', 'update_transaction_with_payment'),
166 166
 				5
167 167
 			);
168 168
 		}
@@ -179,18 +179,18 @@  discard block
 block discarded – undo
179 179
 	 * returning from an off-site payment gateway
180 180
 	 */
181 181
 	public static function update_transaction_with_payment() {
182
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
182
+		do_action('AHEE_log', __CLASS__, __FUNCTION__);
183 183
 		// are there any TXNs that need cleaning up ?
184
-		if ( ! empty( self::$_update_transactions_with_payment ) ) {
184
+		if ( ! empty(self::$_update_transactions_with_payment)) {
185 185
 			/** @type EE_Payment_Processor $payment_processor */
186
-			$payment_processor = EE_Registry::instance()->load_core( 'Payment_Processor' );
186
+			$payment_processor = EE_Registry::instance()->load_core('Payment_Processor');
187 187
 			// set revisit flag for payment processor
188
-			$payment_processor->set_revisit( false );
188
+			$payment_processor->set_revisit(false);
189 189
 			// load EEM_Transaction
190
-			EE_Registry::instance()->load_model( 'Transaction' );
191
-			foreach ( self::$_update_transactions_with_payment as $TXN_ID => $PAY_ID ) {
190
+			EE_Registry::instance()->load_model('Transaction');
191
+			foreach (self::$_update_transactions_with_payment as $TXN_ID => $PAY_ID) {
192 192
 				// reschedule the cron if we can't hit the db right now
193
-				if ( ! EE_Maintenance_Mode::instance()->models_can_query() ) {
193
+				if ( ! EE_Maintenance_Mode::instance()->models_can_query()) {
194 194
 					// reset cron job for updating the TXN
195 195
 					EE_Cron_Tasks::schedule_update_transaction_with_payment(
196 196
 						time() + EE_Cron_Tasks::reschedule_timeout,
@@ -199,15 +199,15 @@  discard block
 block discarded – undo
199 199
 					);
200 200
 					continue;
201 201
 				}
202
-				$transaction = EEM_Transaction::instance()->get_one_by_ID( $TXN_ID );
203
-				$payment = EEM_Payment::instance()->get_one_by_ID( $PAY_ID );
202
+				$transaction = EEM_Transaction::instance()->get_one_by_ID($TXN_ID);
203
+				$payment = EEM_Payment::instance()->get_one_by_ID($PAY_ID);
204 204
 				// verify transaction
205
-				if ( $transaction instanceof EE_Transaction &&
206
-						$payment instanceof EE_Payment ) {
205
+				if ($transaction instanceof EE_Transaction &&
206
+						$payment instanceof EE_Payment) {
207 207
 					// now try to update the TXN with any payments
208
-					$payment_processor->update_txn_based_on_payment( $transaction, $payment, true, true );
208
+					$payment_processor->update_txn_based_on_payment($transaction, $payment, true, true);
209 209
 				}
210
-				unset( self::$_update_transactions_with_payment[ $TXN_ID ] );
210
+				unset(self::$_update_transactions_with_payment[$TXN_ID]);
211 211
 			}
212 212
 		}
213 213
 	}
@@ -244,14 +244,14 @@  discard block
 block discarded – undo
244 244
 		$TXN_ID
245 245
 	) {
246 246
 		// validate $TXN_ID and $timestamp
247
-		$TXN_ID = absint( $TXN_ID );
248
-		$timestamp = absint( $timestamp );
249
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
250
-		if ( $TXN_ID && $timestamp ) {
247
+		$TXN_ID = absint($TXN_ID);
248
+		$timestamp = absint($timestamp);
249
+		do_action('AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID');
250
+		if ($TXN_ID && $timestamp) {
251 251
 			wp_schedule_single_event(
252 252
 				$timestamp,
253 253
 				'AHEE__EE_Cron_Tasks__finalize_abandoned_transactions',
254
-				array( $TXN_ID )
254
+				array($TXN_ID)
255 255
 			);
256 256
 		}
257 257
 	}
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
 	 *
274 274
 	 * @param int $TXN_ID
275 275
 	 */
276
-	public static function check_for_abandoned_transactions(	$TXN_ID = 0 ) {
277
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
278
-		if ( absint( $TXN_ID )) {
279
-			self::$_abandoned_transactions[]  = $TXN_ID;
276
+	public static function check_for_abandoned_transactions($TXN_ID = 0) {
277
+		do_action('AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID');
278
+		if (absint($TXN_ID)) {
279
+			self::$_abandoned_transactions[] = $TXN_ID;
280 280
 			add_action(
281 281
 				'shutdown',
282
-				array( 'EE_Cron_Tasks', 'finalize_abandoned_transactions' ),
282
+				array('EE_Cron_Tasks', 'finalize_abandoned_transactions'),
283 283
 				5
284 284
 			);
285 285
 		}
@@ -296,21 +296,21 @@  discard block
 block discarded – undo
296 296
 	 * returning from an off-site payment gateway
297 297
 	 */
298 298
 	public static function finalize_abandoned_transactions() {
299
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
299
+		do_action('AHEE_log', __CLASS__, __FUNCTION__);
300 300
 		// are there any TXNs that need cleaning up ?
301
-		if ( ! empty( self::$_abandoned_transactions ) ) {
301
+		if ( ! empty(self::$_abandoned_transactions)) {
302 302
 			/** @type EE_Transaction_Processor $transaction_processor */
303
-			$transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' );
303
+			$transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor');
304 304
 			// set revisit flag for txn processor
305
-			$transaction_processor->set_revisit( false );
305
+			$transaction_processor->set_revisit(false);
306 306
 			/** @type EE_Payment_Processor $payment_processor */
307
-			$payment_processor = EE_Registry::instance()->load_core( 'Payment_Processor' );
307
+			$payment_processor = EE_Registry::instance()->load_core('Payment_Processor');
308 308
 			// load EEM_Transaction
309
-			EE_Registry::instance()->load_model( 'Transaction' );
310
-			foreach ( self::$_abandoned_transactions as $TXN_ID ) {
311
-				do_action( 'AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID' );
309
+			EE_Registry::instance()->load_model('Transaction');
310
+			foreach (self::$_abandoned_transactions as $TXN_ID) {
311
+				do_action('AHEE_log', __CLASS__, __FUNCTION__, $TXN_ID, '$TXN_ID');
312 312
 				// reschedule the cron if we can't hit the db right now
313
-				if ( ! EE_Maintenance_Mode::instance()->models_can_query() ) {
313
+				if ( ! EE_Maintenance_Mode::instance()->models_can_query()) {
314 314
 					// reset cron job for finalizing the TXN
315 315
 					EE_Cron_Tasks::schedule_finalize_abandoned_transactions_check(
316 316
 						time() + EE_Cron_Tasks::reschedule_timeout,
@@ -318,17 +318,17 @@  discard block
 block discarded – undo
318 318
 					);
319 319
 					continue;
320 320
 				}
321
-				$transaction = EEM_Transaction::instance()->get_one_by_ID( $TXN_ID );
321
+				$transaction = EEM_Transaction::instance()->get_one_by_ID($TXN_ID);
322 322
 				// verify transaction
323
-				if ( $transaction instanceof EE_Transaction ) {
323
+				if ($transaction instanceof EE_Transaction) {
324 324
 					// don't finalize the TXN if it has already been completed
325
-					if ( $transaction_processor->all_reg_steps_completed( $transaction ) === true ) {
325
+					if ($transaction_processor->all_reg_steps_completed($transaction) === true) {
326 326
 						continue;
327 327
 					}
328 328
 					// let's simulate an IPN here which will trigger any notifications that need to go out
329
-					$payment_processor->update_txn_based_on_payment( $transaction, $transaction->last_payment(), true, true );
329
+					$payment_processor->update_txn_based_on_payment($transaction, $transaction->last_payment(), true, true);
330 330
 				}
331
-				unset( self::$_abandoned_transactions[ $TXN_ID ] );
331
+				unset(self::$_abandoned_transactions[$TXN_ID]);
332 332
 			}
333 333
 		}
334 334
 	}
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	//when a transaction is initially made, schedule this check.
345 345
 	//if it has NO REG data by the time it has expired, forget about it
346 346
 	public static function clean_out_junk_transactions() {
347
-		if( EE_Maintenance_Mode::instance()->models_can_query() ) {
347
+		if (EE_Maintenance_Mode::instance()->models_can_query()) {
348 348
 			EEM_Transaction::instance('')->delete_junk_transactions();
349 349
 			EEM_Registration::instance('')->delete_registrations_with_no_transaction();
350 350
 			EEM_Line_Item::instance('')->delete_line_items_with_no_transaction();
Please login to merge, or discard this patch.
core/admin/EE_Admin.core.php 2 patches
Braces   +16 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -220,8 +222,9 @@  discard block
 block discarded – undo
220 222
 	 */
221 223
 	public function remove_pages_from_nav_menu( $post_type ) {
222 224
 		//if this isn't the "pages" post type let's get out
223
-		if ( $post_type->name !== 'page' )
224
-			return $post_type;
225
+		if ( $post_type->name !== 'page' ) {
226
+					return $post_type;
227
+		}
225 228
 
226 229
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
227 230
 
@@ -296,8 +299,9 @@  discard block
 block discarded – undo
296 299
 	 * @return string  the (maybe) modified link
297 300
 	 */
298 301
 	public function modify_edit_post_link( $link, $id, $context ) {
299
-		if ( ! $post = get_post( $id ) )
300
-			return $link;
302
+		if ( ! $post = get_post( $id ) ) {
303
+					return $link;
304
+		}
301 305
 
302 306
 		if ( $post->post_type == 'espresso_attendees' ) {
303 307
 			$query_args = array(
@@ -337,7 +341,10 @@  discard block
 block discarded – undo
337 341
 		<div id="posttype-extra-nav-menu-pages" class="posttypediv">
338 342
 			<ul id="posttype-extra-nav-menu-pages-tabs" class="posttype-tabs add-menu-item-tabs">
339 343
 				<li <?php echo ( 'event-archives' == $current_tab ? ' class="tabs"' : '' ); ?>>
340
-					<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">
344
+					<a class="nav-tab-link" data-type="tabs-panel-posttype-extra-nav-menu-pages-event-archives" href="<?php if ( $nav_menu_selected_id ) {
345
+	echo esc_url(add_query_arg('extra-nav-menu-pages-tab', 'event-archives', remove_query_arg($removed_args)));
346
+}
347
+?>#tabs-panel-posttype-extra-nav-menu-pages-event-archives">
341 348
 						<?php _e( 'Event Archive Pages', 'event_espresso' ); ?>
342 349
 					</a>
343 350
 				</li>
@@ -870,8 +877,9 @@  discard block
 block discarded – undo
870 877
 	 */
871 878
 	public static function register_ee_admin_page( $page_basename, $page_path, $config = array() ) {
872 879
 		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' );
873
-		if ( class_exists( 'EE_Register_Admin_Page' ) )
874
-			$config['page_path'] = $page_path;
880
+		if ( class_exists( 'EE_Register_Admin_Page' ) ) {
881
+					$config['page_path'] = $page_path;
882
+		}
875 883
 			EE_Register_Admin_Page::register( $page_basename, $config );
876 884
 	}
877 885
 
Please login to merge, or discard this patch.
Spacing   +174 added lines, -174 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	 */
48 48
 	public static function instance() {
49 49
 		// check if class object is instantiated
50
-		if (  ! self::$_instance instanceof EE_Admin ) {
50
+		if ( ! self::$_instance instanceof EE_Admin) {
51 51
 			self::$_instance = new self();
52 52
 		}
53 53
 		return self::$_instance;
@@ -62,25 +62,25 @@  discard block
 block discarded – undo
62 62
 		// define global EE_Admin constants
63 63
 		$this->_define_all_constants();
64 64
 		// set autoloaders for our admin page classes based on included path information
65
-		EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder( EE_ADMIN );
65
+		EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_ADMIN);
66 66
 		// admin hooks
67
-		add_filter( 'plugin_action_links', array( $this, 'filter_plugin_actions' ), 10, 2 );
67
+		add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
68 68
 		// load EE_Request_Handler early
69
-		add_action( 'AHEE__EE_System__core_loaded_and_ready', array( $this, 'get_request' ));
70
-		add_action( 'AHEE__EE_System__initialize_last', array( $this, 'init' ));
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' ));
69
+		add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'get_request'));
70
+		add_action('AHEE__EE_System__initialize_last', array($this, 'init'));
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,12 +95,12 @@  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' ));
103
-		define( 'JQPLOT_URL', EE_GLOBAL_ASSETS_URL . 'scripts/jqplot/' );
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
+		define('JQPLOT_URL', EE_GLOBAL_ASSETS_URL.'scripts/jqplot/');
104 104
 	}
105 105
 
106 106
 
@@ -113,23 +113,23 @@  discard block
 block discarded – undo
113 113
 	 * @param 	string 	$plugin
114 114
 	 * @return 	array
115 115
 	 */
116
-	public function filter_plugin_actions( $links, $plugin ) {
116
+	public function filter_plugin_actions($links, $plugin) {
117 117
 		// set $main_file in stone
118 118
 		static $main_file;
119 119
 		// if $main_file is not set yet
120
-		if ( ! $main_file ) {
121
-			$main_file = plugin_basename( EVENT_ESPRESSO_MAIN_FILE );
120
+		if ( ! $main_file) {
121
+			$main_file = plugin_basename(EVENT_ESPRESSO_MAIN_FILE);
122 122
 		}
123
-		 if ( $plugin == $main_file ) {
123
+		 if ($plugin == $main_file) {
124 124
 		 	// compare current plugin to this one
125
-			if ( EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance ) {
126
-				$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>';
127
-				array_unshift( $links, $maintenance_link );
125
+			if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
126
+				$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>';
127
+				array_unshift($links, $maintenance_link);
128 128
 			} else {
129
-				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">' . __( 'Settings', 'event_espresso' ) . '</a>';
130
-				$events_link = '<a href="admin.php?page=espresso_events">' . __( 'Events', 'event_espresso' ) . '</a>';
129
+				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">'.__('Settings', 'event_espresso').'</a>';
130
+				$events_link = '<a href="admin.php?page=espresso_events">'.__('Events', 'event_espresso').'</a>';
131 131
 				// add before other links
132
-				array_unshift( $links, $org_settings_link, $events_link );
132
+				array_unshift($links, $org_settings_link, $events_link);
133 133
 			}
134 134
 		}
135 135
 		return $links;
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
 	 *	@return void
145 145
 	 */
146 146
 	public function get_request() {
147
-		EE_Registry::instance()->load_core( 'Request_Handler' );
148
-		EE_Registry::instance()->load_core( 'CPT_Strategy' );
147
+		EE_Registry::instance()->load_core('Request_Handler');
148
+		EE_Registry::instance()->load_core('CPT_Strategy');
149 149
 	}
150 150
 
151 151
 
@@ -157,11 +157,11 @@  discard block
 block discarded – undo
157 157
 	 * @param array $admin_page_folder_names
158 158
 	 * @return array
159 159
 	 */
160
-	public function hide_admin_pages_except_maintenance_mode( $admin_page_folder_names = array() ){
160
+	public function hide_admin_pages_except_maintenance_mode($admin_page_folder_names = array()) {
161 161
 		return array(
162
-			'maintenance' => EE_ADMIN_PAGES . 'maintenance' . DS,
163
-			'about' => EE_ADMIN_PAGES . 'about' . DS,
164
-			'support' => EE_ADMIN_PAGES . 'support' . DS
162
+			'maintenance' => EE_ADMIN_PAGES.'maintenance'.DS,
163
+			'about' => EE_ADMIN_PAGES.'about'.DS,
164
+			'support' => EE_ADMIN_PAGES.'support'.DS
165 165
 		);
166 166
 	}
167 167
 
@@ -176,36 +176,36 @@  discard block
 block discarded – undo
176 176
 	public function init() {
177 177
 
178 178
 		//only enable most of the EE_Admin IF we're not in full maintenance mode
179
-		if ( EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ){
179
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
180 180
 			//ok so we want to enable the entire admin
181
-			add_action( 'wp_ajax_dismiss_ee_nag_notice', array( $this, 'dismiss_ee_nag_notice_callback' ));
182
-			add_action( 'save_post', array( 'EE_Admin', 'parse_post_content_on_save' ), 100, 2 );
183
-			add_action( 'update_option', array( $this, 'reset_page_for_posts_on_change' ), 100, 3 );
184
-			add_filter( 'content_save_pre', array( $this, 'its_eSpresso' ), 10, 1 );
185
-			add_action( 'admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
186
-			add_action( 'network_admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
181
+			add_action('wp_ajax_dismiss_ee_nag_notice', array($this, 'dismiss_ee_nag_notice_callback'));
182
+			add_action('save_post', array('EE_Admin', 'parse_post_content_on_save'), 100, 2);
183
+			add_action('update_option', array($this, 'reset_page_for_posts_on_change'), 100, 3);
184
+			add_filter('content_save_pre', array($this, 'its_eSpresso'), 10, 1);
185
+			add_action('admin_notices', array($this, 'get_persistent_admin_notices'), 9);
186
+			add_action('network_admin_notices', array($this, 'get_persistent_admin_notices'), 9);
187 187
 			//at a glance dashboard widget
188
-			add_filter( 'dashboard_glance_items', array( $this, 'dashboard_glance_items'), 10 );
188
+			add_filter('dashboard_glance_items', array($this, 'dashboard_glance_items'), 10);
189 189
 			//filter for get_edit_post_link used on comments for custom post types
190
-			add_filter('get_edit_post_link', array( $this, 'modify_edit_post_link' ), 10, 3 );
190
+			add_filter('get_edit_post_link', array($this, 'modify_edit_post_link'), 10, 3);
191 191
 		}
192 192
 
193 193
 		// run the admin page factory but ONLY if we are doing an ee admin ajax request
194
-		if ( !defined('DOING_AJAX') || EE_ADMIN_AJAX ) {
194
+		if ( ! defined('DOING_AJAX') || EE_ADMIN_AJAX) {
195 195
 			try {
196 196
 				//this loads the controller for the admin pages which will setup routing etc
197
-				EE_Registry::instance()->load_core( 'Admin_Page_Loader' );
198
-			} catch ( EE_Error $e ) {
197
+				EE_Registry::instance()->load_core('Admin_Page_Loader');
198
+			} catch (EE_Error $e) {
199 199
 				$e->get_error();
200 200
 			}
201 201
 		}
202 202
 
203 203
 		//make sure our CPTs and custom taxonomy metaboxes get shown for first time users
204
-		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes' ), 10 );
205
-		add_action('admin_head', array( $this, 'register_custom_nav_menu_boxes' ), 10 );
204
+		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes'), 10);
205
+		add_action('admin_head', array($this, 'register_custom_nav_menu_boxes'), 10);
206 206
 
207 207
 		//exclude EE critical pages from all nav menus and wp_list_pages
208
-		add_filter('nav_menu_meta_box_object', array( $this, 'remove_pages_from_nav_menu'), 10 );
208
+		add_filter('nav_menu_meta_box_object', array($this, 'remove_pages_from_nav_menu'), 10);
209 209
 	}
210 210
 
211 211
 
@@ -218,9 +218,9 @@  discard block
 block discarded – undo
218 218
 	 * @param  object $post_type WP post type object
219 219
 	 * @return object            WP post type object
220 220
 	 */
221
-	public function remove_pages_from_nav_menu( $post_type ) {
221
+	public function remove_pages_from_nav_menu($post_type) {
222 222
 		//if this isn't the "pages" post type let's get out
223
-		if ( $post_type->name !== 'page' )
223
+		if ($post_type->name !== 'page')
224 224
 			return $post_type;
225 225
 
226 226
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
@@ -240,28 +240,28 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	public function enable_hidden_ee_nav_menu_metaboxes() {
242 242
 		global $wp_meta_boxes, $pagenow;
243
-		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php' ) {
243
+		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php') {
244 244
 			return;
245 245
 		}
246 246
 		$user = wp_get_current_user();
247 247
 		//has this been done yet?
248
-		if ( get_user_option( 'ee_nav_menu_initialized', $user->ID ) ) {
248
+		if (get_user_option('ee_nav_menu_initialized', $user->ID)) {
249 249
 			return;
250 250
 		}
251 251
 
252
-		$hidden_meta_boxes = get_user_option( 'metaboxhidden_nav-menus', $user->ID );
253
-		$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' ) );
252
+		$hidden_meta_boxes = get_user_option('metaboxhidden_nav-menus', $user->ID);
253
+		$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'));
254 254
 
255
-		if ( is_array( $hidden_meta_boxes ) ) {
256
-			foreach ( $hidden_meta_boxes as $key => $meta_box_id ) {
257
-				if ( in_array( $meta_box_id, $initial_meta_boxes ) ) {
258
-					unset( $hidden_meta_boxes[ $key ] );
255
+		if (is_array($hidden_meta_boxes)) {
256
+			foreach ($hidden_meta_boxes as $key => $meta_box_id) {
257
+				if (in_array($meta_box_id, $initial_meta_boxes)) {
258
+					unset($hidden_meta_boxes[$key]);
259 259
 				}
260 260
 			}
261 261
 		}
262 262
 
263
-		update_user_option( $user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true );
264
-		update_user_option( $user->ID, 'ee_nav_menu_initialized', 1, true );
263
+		update_user_option($user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true);
264
+		update_user_option($user->ID, 'ee_nav_menu_initialized', 1, true);
265 265
 	}
266 266
 
267 267
 
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	 * @return void
281 281
 	 */
282 282
 	public function register_custom_nav_menu_boxes() {
283
-		add_meta_box( 'add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array( $this, 'ee_cpt_archive_pages' ), 'nav-menus', 'side', 'core' );
283
+		add_meta_box('add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array($this, 'ee_cpt_archive_pages'), 'nav-menus', 'side', 'core');
284 284
 	}
285 285
 
286 286
 
@@ -297,17 +297,17 @@  discard block
 block discarded – undo
297 297
 	 *
298 298
 	 * @return string  the (maybe) modified link
299 299
 	 */
300
-	public function modify_edit_post_link( $link, $id, $context ) {
301
-		if ( ! $post = get_post( $id ) )
300
+	public function modify_edit_post_link($link, $id, $context) {
301
+		if ( ! $post = get_post($id))
302 302
 			return $link;
303 303
 
304
-		if ( $post->post_type == 'espresso_attendees' ) {
304
+		if ($post->post_type == 'espresso_attendees') {
305 305
 			$query_args = array(
306 306
 				'action' => 'edit_attendee',
307 307
 				'post' => $id
308 308
 				);
309 309
 			EE_Registry::instance()->load_helper('URL');
310
-			return EEH_URL::add_query_args_and_nonce( $query_args, admin_url('admin.php?page=espresso_registrations') );
310
+			return EEH_URL::add_query_args_and_nonce($query_args, admin_url('admin.php?page=espresso_registrations'));
311 311
 		}
312 312
 		return $link;
313 313
 	}
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 		global $nav_menu_selected_id;
320 320
 
321 321
 		$db_fields = false;
322
-		$walker = new Walker_Nav_Menu_Checklist( $db_fields );
322
+		$walker = new Walker_Nav_Menu_Checklist($db_fields);
323 323
 		$current_tab = 'event-archives';
324 324
 
325 325
 		/*if ( ! empty( $_REQUEST['quick-search-posttype-' . $post_type_name] ) ) {
@@ -338,9 +338,9 @@  discard block
 block discarded – undo
338 338
 		?>
339 339
 		<div id="posttype-extra-nav-menu-pages" class="posttypediv">
340 340
 			<ul id="posttype-extra-nav-menu-pages-tabs" class="posttype-tabs add-menu-item-tabs">
341
-				<li <?php echo ( 'event-archives' == $current_tab ? ' class="tabs"' : '' ); ?>>
342
-					<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">
343
-						<?php _e( 'Event Archive Pages', 'event_espresso' ); ?>
341
+				<li <?php echo ('event-archives' == $current_tab ? ' class="tabs"' : ''); ?>>
342
+					<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">
343
+						<?php _e('Event Archive Pages', 'event_espresso'); ?>
344 344
 					</a>
345 345
 				</li>
346 346
 			<?php /* // temporarily removing but leaving skeleton in place in case we ever decide to add more tabs.
@@ -358,13 +358,13 @@  discard block
 block discarded – undo
358 358
  			<?php */ ?>
359 359
 
360 360
 			<div id="tabs-panel-posttype-extra-nav-menu-pages-event-archives" class="tabs-panel <?php
361
-			echo ( 'event-archives' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
361
+			echo ('event-archives' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive');
362 362
 			?>">
363 363
 				<ul id="extra-nav-menu-pageschecklist-event-archives" class="categorychecklist form-no-clear">
364 364
 					<?php
365 365
 					$pages = $this->_get_extra_nav_menu_pages_items();
366 366
 					$args['walker'] = $walker;
367
-					echo walk_nav_menu_tree( array_map( array( $this, '_setup_extra_nav_menu_pages_items' ), $pages), 0, (object) $args );
367
+					echo walk_nav_menu_tree(array_map(array($this, '_setup_extra_nav_menu_pages_items'), $pages), 0, (object) $args);
368 368
 					?>
369 369
 				</ul>
370 370
 			</div><!-- /.tabs-panel -->
@@ -372,18 +372,18 @@  discard block
 block discarded – undo
372 372
 			<p class="button-controls">
373 373
 				<span class="list-controls">
374 374
 					<a href="<?php
375
-						echo esc_url( add_query_arg(
375
+						echo esc_url(add_query_arg(
376 376
 							array(
377 377
 								'extra-nav-menu-pages-tab' => 'event-archives',
378 378
 								'selectall' => 1,
379 379
 							),
380
-							remove_query_arg( $removed_args )
380
+							remove_query_arg($removed_args)
381 381
 						));
382 382
 					?>#posttype-extra-nav-menu-pages>" class="select-all"><?php _e('Select All'); ?></a>
383 383
 				</span>
384 384
 
385 385
 				<span class="add-to-menu">
386
-					<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' ); ?>" />
386
+					<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'); ?>" />
387 387
 					<span class="spinner"></span>
388 388
 				</span>
389 389
 			</p>
@@ -404,10 +404,10 @@  discard block
 block discarded – undo
404 404
 	private function _get_extra_nav_menu_pages_items() {
405 405
 		$menuitems[] = array(
406 406
 			'title' => __('Event List', 'event_espresso'),
407
-			'url' => get_post_type_archive_link( 'espresso_events' ),
407
+			'url' => get_post_type_archive_link('espresso_events'),
408 408
 			'description' => __('Archive page for all events.', 'event_espresso')
409 409
 		);
410
-		return apply_filters( 'FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems );
410
+		return apply_filters('FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems);
411 411
 	}
412 412
 
413 413
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 	 * @param $menuitem
420 420
 	 * @return stdClass
421 421
 	 */
422
-	private function _setup_extra_nav_menu_pages_items( $menuitem ) {
422
+	private function _setup_extra_nav_menu_pages_items($menuitem) {
423 423
 		$menu_item = new stdClass();
424 424
 		$keys = array(
425 425
 			'ID' => 0,
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
 			'xfn' => ''
440 440
 			);
441 441
 
442
-		foreach ( $keys as $key => $value) {
442
+		foreach ($keys as $key => $value) {
443 443
 			$menu_item->$key = isset($menuitem[$key]) ? $menuitem[$key] : $value;
444 444
 		}
445 445
 		return $menu_item;
@@ -479,10 +479,10 @@  discard block
 block discarded – undo
479 479
 		 * - check if doing post processing of one of EE CPTs
480 480
 		 * - instantiate the corresponding EE CPT model for the post_type being processed.
481 481
 		 */
482
-		if ( isset( $_POST['action'] ) && $_POST['action'] == 'editpost' ) {
483
-			if ( isset( $_POST['post_type'] ) ) {
484
-				EE_Registry::instance()->load_core( 'Register_CPTs' );
485
-				EE_Register_CPTs::instantiate_cpt_models( $_POST['post_type'] );
482
+		if (isset($_POST['action']) && $_POST['action'] == 'editpost') {
483
+			if (isset($_POST['post_type'])) {
484
+				EE_Registry::instance()->load_core('Register_CPTs');
485
+				EE_Register_CPTs::instantiate_cpt_models($_POST['post_type']);
486 486
 			}
487 487
 		}
488 488
 
@@ -492,8 +492,8 @@  discard block
 block discarded – undo
492 492
 		 * 'options-reading.php' core WordPress admin settings page.  This is for user-proofing.
493 493
 		 */
494 494
 		global $pagenow;
495
-		if ( $pagenow == 'options-reading.php' ) {
496
-			add_filter( 'wp_dropdown_pages', array( $this, 'modify_dropdown_pages' ) );
495
+		if ($pagenow == 'options-reading.php') {
496
+			add_filter('wp_dropdown_pages', array($this, 'modify_dropdown_pages'));
497 497
 		}
498 498
 
499 499
 	}
@@ -505,25 +505,25 @@  discard block
 block discarded – undo
505 505
 	 * @param string $output  Current output.
506 506
 	 * @return string
507 507
 	 */
508
-	public function modify_dropdown_pages( $output ) {
508
+	public function modify_dropdown_pages($output) {
509 509
 		//get critical pages
510 510
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
511 511
 
512 512
 		//split current output by line break for easier parsing.
513
-		$split_output = explode( "\n", $output );
513
+		$split_output = explode("\n", $output);
514 514
 
515 515
 		//loop through to remove any critical pages from the array.
516
-		foreach ( $critical_pages as $page_id ) {
517
-			$needle = 'value="' . $page_id . '"';
518
-			foreach( $split_output as $key => $haystack ) {
519
-				if( strpos( $haystack, $needle ) !== false ) {
520
-					unset( $split_output[$key] );
516
+		foreach ($critical_pages as $page_id) {
517
+			$needle = 'value="'.$page_id.'"';
518
+			foreach ($split_output as $key => $haystack) {
519
+				if (strpos($haystack, $needle) !== false) {
520
+					unset($split_output[$key]);
521 521
 				}
522 522
 			}
523 523
 		}
524 524
 
525 525
 		//replace output with the new contents
526
-		$output = implode( "\n", $split_output );
526
+		$output = implode("\n", $split_output);
527 527
 
528 528
 		return $output;
529 529
 	}
@@ -539,37 +539,37 @@  discard block
 block discarded – undo
539 539
 	public function enqueue_admin_scripts() {
540 540
 		// this javascript is loaded on every admin page to catch any injections ee needs to add to wp run js.
541 541
 		// Note: the intention of this script is to only do TARGETED injections.  I.E, only injecting on certain script calls.
542
-		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL . 'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
542
+		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL.'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
543 543
 		// register cookie script for future dependencies
544
-		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL . 'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE );
544
+		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL.'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE);
545 545
 		// 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' );
546
-		if ( apply_filters( 'FHEE_load_jquery_validate', FALSE ) ) {
546
+		if (apply_filters('FHEE_load_jquery_validate', FALSE)) {
547 547
 			// register jQuery Validate
548
-			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.validate.min.js', array('jquery'), '1.11.1', TRUE);
548
+			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL.'scripts/jquery.validate.min.js', array('jquery'), '1.11.1', TRUE);
549 549
 		}
550 550
 		//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' );
551
-		if ( apply_filters( 'FHEE_load_joyride', FALSE ) ) {
551
+		if (apply_filters('FHEE_load_joyride', FALSE)) {
552 552
 			//joyride style
553
-			wp_register_style('joyride-css', EE_THIRD_PARTY_URL . 'joyride/joyride-2.1.css', array(), '2.1');
554
-			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL . 'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION );
555
-			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL . 'joyride/modernizr.mq.js', array(), '2.1', TRUE );
553
+			wp_register_style('joyride-css', EE_THIRD_PARTY_URL.'joyride/joyride-2.1.css', array(), '2.1');
554
+			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL.'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION);
555
+			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL.'joyride/modernizr.mq.js', array(), '2.1', TRUE);
556 556
 			//joyride JS
557
-			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL . 'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE );
557
+			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL.'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE);
558 558
 			// wanna go for a joyride?
559 559
 			wp_enqueue_style('ee-joyride-css');
560 560
 			wp_enqueue_script('jquery-joyride');
561 561
 		}
562 562
 		//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' );
563
-		if ( apply_filters( 'FHEE_load_qtip', FALSE ) ) {
563
+		if (apply_filters('FHEE_load_qtip', FALSE)) {
564 564
 			EE_Registry::instance()->load_helper('Qtip_Loader');
565 565
 			EEH_Qtip_Loader::instance()->register_and_enqueue();
566 566
 		}
567 567
 		//accounting.js library
568 568
 		// @link http://josscrowcroft.github.io/accounting.js/
569
-		if ( apply_filters( 'FHEE_load_accounting_js', FALSE ) ) {
570
-			wp_register_script( 'ee-accounting', EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE );
571
-			wp_register_script( 'ee-accounting-core', EE_THIRD_PARTY_URL . 'accounting/accounting.js', array('underscore'), '0.3.2', TRUE );
572
-			wp_enqueue_script( 'ee-accounting' );
569
+		if (apply_filters('FHEE_load_accounting_js', FALSE)) {
570
+			wp_register_script('ee-accounting', EE_GLOBAL_ASSETS_URL.'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE);
571
+			wp_register_script('ee-accounting-core', EE_THIRD_PARTY_URL.'accounting/accounting.js', array('underscore'), '0.3.2', TRUE);
572
+			wp_enqueue_script('ee-accounting');
573 573
 			// array of settings to get converted to JSON array via wp_localize_script
574 574
 			$currency_config = array(
575 575
 				'currency' => array(
@@ -616,11 +616,11 @@  discard block
 block discarded – undo
616 616
 	public function get_persistent_admin_notices() {
617 617
 		// http://www.example.com/wp-admin/admin.php?page=espresso_general_settings&action=critical_pages&critical_pages_nonce=2831ce0f30
618 618
 		$args = array(
619
-			'page' => EE_Registry::instance()->REQ->is_set( 'page' ) ? EE_Registry::instance()->REQ->get( 'page' ) : '',
620
-			'action' => EE_Registry::instance()->REQ->is_set( 'action' ) ? EE_Registry::instance()->REQ->get( 'action' ) : '',
619
+			'page' => EE_Registry::instance()->REQ->is_set('page') ? EE_Registry::instance()->REQ->get('page') : '',
620
+			'action' => EE_Registry::instance()->REQ->is_set('action') ? EE_Registry::instance()->REQ->get('action') : '',
621 621
 		);
622
-		$return_url = EE_Admin_Page::add_query_args_and_nonce( $args, EE_ADMIN_URL );
623
-		echo EE_Error::get_persistent_admin_notices( $return_url );
622
+		$return_url = EE_Admin_Page::add_query_args_and_nonce($args, EE_ADMIN_URL);
623
+		echo EE_Error::get_persistent_admin_notices($return_url);
624 624
 	}
625 625
 
626 626
 
@@ -641,26 +641,26 @@  discard block
 block discarded – undo
641 641
 	 * @param $elements
642 642
 	 * @return array
643 643
 	 */
644
-	public function dashboard_glance_items( $elements ) {
644
+	public function dashboard_glance_items($elements) {
645 645
 		$events = EEM_Event::instance()->count();
646
-		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_events'), admin_url('admin.php') );
647
-		$items['events']['text'] = sprintf( _n( '%s Event', '%s Events', $events ), number_format_i18n( $events ) );
646
+		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_events'), admin_url('admin.php'));
647
+		$items['events']['text'] = sprintf(_n('%s Event', '%s Events', $events), number_format_i18n($events));
648 648
 		$items['events']['title'] = __('Click to view all Events', 'event_espresso');
649 649
 		$registrations = EEM_Registration::instance()->count(
650 650
 			array(
651 651
 				array(
652
-					'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete )
652
+					'STS_ID' => array('!=', EEM_Registration::status_id_incomplete)
653 653
 				)
654 654
 			)
655 655
 		);
656
-		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_registrations' ), admin_url('admin.php') );
657
-		$items['registrations']['text'] = sprintf( _n( '%s Registration', '%s Registrations', $registrations ), number_format_i18n($registrations) );
656
+		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_registrations'), admin_url('admin.php'));
657
+		$items['registrations']['text'] = sprintf(_n('%s Registration', '%s Registrations', $registrations), number_format_i18n($registrations));
658 658
 		$items['registrations']['title'] = __('Click to view all registrations', 'event_espresso');
659 659
 
660
-		$items = apply_filters( 'FHEE__EE_Admin__dashboard_glance_items__items', $items );
660
+		$items = apply_filters('FHEE__EE_Admin__dashboard_glance_items__items', $items);
661 661
 
662
-		foreach ( $items as $type => $item_properties ) {
663
-			$elements[] = sprintf( '<a class="ee-dashboard-link-' . $type . '" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text'] );
662
+		foreach ($items as $type => $item_properties) {
663
+			$elements[] = sprintf('<a class="ee-dashboard-link-'.$type.'" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text']);
664 664
 		}
665 665
 		return $elements;
666 666
 	}
@@ -679,63 +679,63 @@  discard block
 block discarded – undo
679 679
 	 * @param $post
680 680
 	 * @return    void
681 681
 	 */
682
-	public static function parse_post_content_on_save( $post_ID, $post ) {
682
+	public static function parse_post_content_on_save($post_ID, $post) {
683 683
 		// default post types
684
-		$post_types = array( 'post' => 0, 'page' => 1 );
684
+		$post_types = array('post' => 0, 'page' => 1);
685 685
 		// add CPTs
686 686
 		$CPTs = EE_Register_CPTs::get_CPTs();
687
-		$post_types = array_merge( $post_types, $CPTs );
687
+		$post_types = array_merge($post_types, $CPTs);
688 688
 		// for default or CPT posts...
689
-		if ( isset( $post_types[ $post->post_type ] )) {
689
+		if (isset($post_types[$post->post_type])) {
690 690
 			// post on frontpage ?
691 691
 			$page_for_posts = EE_Config::get_page_for_posts();
692 692
 			$maybe_remove_from_posts = array();
693 693
 			// critical page shortcodes that we do NOT want added to the Posts page (blog)
694 694
 			$critical_shortcodes = EE_Registry::instance()->CFG->core->get_critical_pages_shortcodes_array();
695 695
 			// array of shortcodes indexed by post name
696
-			EE_Registry::instance()->CFG->core->post_shortcodes = isset( EE_Registry::instance()->CFG->core->post_shortcodes ) ? EE_Registry::instance()->CFG->core->post_shortcodes : array();
696
+			EE_Registry::instance()->CFG->core->post_shortcodes = isset(EE_Registry::instance()->CFG->core->post_shortcodes) ? EE_Registry::instance()->CFG->core->post_shortcodes : array();
697 697
 			// whether to proceed with update, if an entry already exists for this post, then we want to update
698
-			$update_post_shortcodes = isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ] ) ? true : false;
698
+			$update_post_shortcodes = isset(EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name]) ? true : false;
699 699
 			// empty both arrays
700
-			EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ] = array();
700
+			EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name] = array();
701 701
 			// check that posts page is already being tracked
702
-			if ( ! isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ] ) ) {
702
+			if ( ! isset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts])) {
703 703
 				// if not, then ensure that it is properly added
704
-				EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ] = array();
704
+				EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts] = array();
705 705
 			}
706 706
 			// loop thru shortcodes
707
-			foreach ( EE_Registry::instance()->shortcodes as $EES_Shortcode => $shortcode_dir ) {
707
+			foreach (EE_Registry::instance()->shortcodes as $EES_Shortcode => $shortcode_dir) {
708 708
 				// convert to UPPERCASE to get actual shortcode
709
-				$EES_Shortcode = strtoupper( $EES_Shortcode );
709
+				$EES_Shortcode = strtoupper($EES_Shortcode);
710 710
 				// is the shortcode in the post_content ?
711
-				if ( strpos( $post->post_content, $EES_Shortcode ) !== FALSE ) {
711
+				if (strpos($post->post_content, $EES_Shortcode) !== FALSE) {
712 712
 					// map shortcode to post names and post IDs
713
-					EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ][ $EES_Shortcode ] = $post_ID;
713
+					EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name][$EES_Shortcode] = $post_ID;
714 714
 					// if the shortcode is NOT one of the critical page shortcodes like ESPRESSO_TXN_PAGE
715
-					if ( ! in_array( $EES_Shortcode, $critical_shortcodes )) {
715
+					if ( ! in_array($EES_Shortcode, $critical_shortcodes)) {
716 716
 						// add shortcode to "Posts page" tracking
717
-						EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ][ $EES_Shortcode ] = $post_ID;
717
+						EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts][$EES_Shortcode] = $post_ID;
718 718
 					}
719 719
 					$update_post_shortcodes = TRUE;
720
-					unset( $maybe_remove_from_posts[ $EES_Shortcode ] );
720
+					unset($maybe_remove_from_posts[$EES_Shortcode]);
721 721
 				} else {
722
-					$maybe_remove_from_posts[ $EES_Shortcode ] = $post_ID;
722
+					$maybe_remove_from_posts[$EES_Shortcode] = $post_ID;
723 723
 				}
724 724
 			}
725
-			if ( $update_post_shortcodes ) {
725
+			if ($update_post_shortcodes) {
726 726
 				// remove shortcodes from $maybe_remove_from_posts that are still being used
727
-				foreach ( EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $shortcodes ) {
728
-					if ( $post_name == $page_for_posts ) {
727
+				foreach (EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $shortcodes) {
728
+					if ($post_name == $page_for_posts) {
729 729
 						continue;
730 730
 					}
731 731
 					// compute difference between active post_shortcodes array and $maybe_remove_from_posts array
732
-					$maybe_remove_from_posts = array_diff_key( $maybe_remove_from_posts, $shortcodes );
732
+					$maybe_remove_from_posts = array_diff_key($maybe_remove_from_posts, $shortcodes);
733 733
 				}
734 734
 				// now unset unused shortcodes from the $page_for_posts post_shortcodes
735
-				foreach ( $maybe_remove_from_posts as $shortcode => $post_ID ) {
736
-					unset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ][ $shortcode ] );
735
+				foreach ($maybe_remove_from_posts as $shortcode => $post_ID) {
736
+					unset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts][$shortcode]);
737 737
 				}
738
-				EE_Registry::instance()->CFG->update_post_shortcodes( $page_for_posts );
738
+				EE_Registry::instance()->CFG->update_post_shortcodes($page_for_posts);
739 739
 			}
740 740
 		}
741 741
 	}
@@ -753,32 +753,32 @@  discard block
 block discarded – undo
753 753
 	 * @throws EE_Error
754 754
 	 * @return    string
755 755
 	 */
756
-	public function check_for_invalid_datetime_formats( $value, $option ) {
757
-		EE_Registry::instance()->load_helper( 'DTT_Helper' );
756
+	public function check_for_invalid_datetime_formats($value, $option) {
757
+		EE_Registry::instance()->load_helper('DTT_Helper');
758 758
 		// check for date_format or time_format
759
-		switch ( $option ) {
759
+		switch ($option) {
760 760
 			case 'date_format' :
761
-				$date_time_format = $value . ' ' . get_option('time_format');
761
+				$date_time_format = $value.' '.get_option('time_format');
762 762
 				break;
763 763
 			case 'time_format' :
764
-				$date_time_format = get_option('date_format') . ' ' . $value;
764
+				$date_time_format = get_option('date_format').' '.$value;
765 765
 				break;
766 766
 			default :
767 767
 				$date_time_format = FALSE;
768 768
 		}
769 769
 		// do we have a date_time format to check ?
770
-		if ( $date_time_format ) {
771
-			$error_msg = EEH_DTT_Helper::validate_format_string( $date_time_format );
770
+		if ($date_time_format) {
771
+			$error_msg = EEH_DTT_Helper::validate_format_string($date_time_format);
772 772
 
773
-			if ( is_array( $error_msg ) ) {
774
-				$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>';
773
+			if (is_array($error_msg)) {
774
+				$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>';
775 775
 
776 776
 
777
-				foreach ( $error_msg as $error ) {
778
-					$msg .= '<li>' . $error . '</li>';
777
+				foreach ($error_msg as $error) {
778
+					$msg .= '<li>'.$error.'</li>';
779 779
 				}
780 780
 
781
-				$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>';
781
+				$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>';
782 782
 
783 783
 				// trigger WP settings error
784 784
 				add_settings_error(
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
 				);
789 789
 
790 790
 				// set format to something valid
791
-				switch ( $option ) {
791
+				switch ($option) {
792 792
 					case 'date_format' :
793 793
 						$value = 'F j, Y';
794 794
 						break;
@@ -814,14 +814,14 @@  discard block
 block discarded – undo
814 814
 	 * @param 	$value
815 815
 	 * @return 	void
816 816
 	 */
817
-	public function reset_page_for_posts_on_change( $option, $old_value, $value ) {
818
-		if ( $option == 'page_for_posts' ) {
817
+	public function reset_page_for_posts_on_change($option, $old_value, $value) {
818
+		if ($option == 'page_for_posts') {
819 819
 			global $wpdb;
820
-			$SQL = 'SELECT post_name from ' . $wpdb->posts . ' WHERE post_type="posts" OR post_type="page" AND post_status="publish" AND ID=%s';
821
-			$old_page_for_posts = $old_value ? $wpdb->get_var( $wpdb->prepare( $SQL, $old_value )) : 'posts';
822
-			$new_page_for_posts = $value ? $wpdb->get_var( $wpdb->prepare( $SQL, $value )) : 'posts';
823
-			EE_Registry::instance()->CFG->core->post_shortcodes[ $new_page_for_posts ] = EE_Registry::instance()->CFG->core->post_shortcodes[ $old_page_for_posts ];
824
-			EE_Registry::instance()->CFG->update_post_shortcodes( $new_page_for_posts );
820
+			$SQL = 'SELECT post_name from '.$wpdb->posts.' WHERE post_type="posts" OR post_type="page" AND post_status="publish" AND ID=%s';
821
+			$old_page_for_posts = $old_value ? $wpdb->get_var($wpdb->prepare($SQL, $old_value)) : 'posts';
822
+			$new_page_for_posts = $value ? $wpdb->get_var($wpdb->prepare($SQL, $value)) : 'posts';
823
+			EE_Registry::instance()->CFG->core->post_shortcodes[$new_page_for_posts] = EE_Registry::instance()->CFG->core->post_shortcodes[$old_page_for_posts];
824
+			EE_Registry::instance()->CFG->update_post_shortcodes($new_page_for_posts);
825 825
 		}
826 826
 	}
827 827
 
@@ -834,8 +834,8 @@  discard block
 block discarded – undo
834 834
 	 * @param $content
835 835
 	 * @return    string
836 836
 	 */
837
-	public function its_eSpresso( $content ) {
838
-		return str_replace( '[EXPRESSO_', '[ESPRESSO_', $content );
837
+	public function its_eSpresso($content) {
838
+		return str_replace('[EXPRESSO_', '[ESPRESSO_', $content);
839 839
 	}
840 840
 
841 841
 
@@ -848,9 +848,9 @@  discard block
 block discarded – undo
848 848
 	 */
849 849
 	public function espresso_admin_footer() {
850 850
 		return sprintf(
851
-			__( 'Event Registration and Ticketing Powered by %sEvent Registration Powered by Event Espresso%s', 'event_espresso' ),
851
+			__('Event Registration and Ticketing Powered by %sEvent Registration Powered by Event Espresso%s', 'event_espresso'),
852 852
 			'<a href="http://eventespresso.com/" title="',
853
-			'">' . EVENT_ESPRESSO_POWERED_BY . '</a>'
853
+			'">'.EVENT_ESPRESSO_POWERED_BY.'</a>'
854 854
 		);
855 855
 	}
856 856
 
@@ -870,11 +870,11 @@  discard block
 block discarded – undo
870 870
 	 * @param array $config
871 871
 	 * @return void
872 872
 	 */
873
-	public static function register_ee_admin_page( $page_basename, $page_path, $config = array() ) {
874
-		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' );
875
-		if ( class_exists( 'EE_Register_Admin_Page' ) )
873
+	public static function register_ee_admin_page($page_basename, $page_path, $config = array()) {
874
+		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');
875
+		if (class_exists('EE_Register_Admin_Page'))
876 876
 			$config['page_path'] = $page_path;
877
-			EE_Register_Admin_Page::register( $page_basename, $config );
877
+			EE_Register_Admin_Page::register($page_basename, $config);
878 878
 	}
879 879
 
880 880
 
Please login to merge, or discard this patch.