Completed
Branch BUG-7537 (60d82a)
by
unknown
242:02 queued 226:04
created
core/EE_Config.core.php 1 patch
Spacing   +400 added lines, -400 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 */
129 129
 	public static function instance() {
130 130
 		// check if class object is instantiated, and instantiated properly
131
-		if ( ! self::$_instance instanceof EE_Config ) {
131
+		if ( ! self::$_instance instanceof EE_Config) {
132 132
 			self::$_instance = new self();
133 133
 		}
134 134
 		return self::$_instance;
@@ -145,22 +145,22 @@  discard block
 block discarded – undo
145 145
 	 * not be ready to instantiate EE_Config currently (eg if the site was put into maintenance mode)
146 146
 	 * @return EE_Config
147 147
 	 */
148
-	public static function reset( $hard_reset = FALSE, $reinstantiate = TRUE ){
149
-		if ( $hard_reset ) {
148
+	public static function reset($hard_reset = FALSE, $reinstantiate = TRUE) {
149
+		if ($hard_reset) {
150 150
 			self::$_instance->_config_option_names = array();
151 151
 			self::$_instance->_initialize_config();
152 152
 			self::$_instance->update_espresso_config();
153 153
 		}
154
-		if( self::$_instance instanceof EE_Config ){
154
+		if (self::$_instance instanceof EE_Config) {
155 155
 			self::$_instance->shutdown();
156 156
 		}
157 157
 		self::$_instance = NULL;
158 158
 		//we don't need to reset the static properties imo because those should
159 159
 		//only change when a module is added or removed. Currently we don't
160 160
 		//support removing a module during a request when it previously existed
161
-		if( $reinstantiate ){
161
+		if ($reinstantiate) {
162 162
 			return self::instance();
163
-		}else{
163
+		} else {
164 164
 			return NULL;
165 165
 		}
166 166
 	}
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
 	 * @return \EE_Config
175 175
 	 */
176 176
 	private function __construct() {
177
-		do_action( 'AHEE__EE_Config__construct__begin',$this );
178
-		$this->_config_option_names = get_option( 'ee_config_option_names', array() );
177
+		do_action('AHEE__EE_Config__construct__begin', $this);
178
+		$this->_config_option_names = get_option('ee_config_option_names', array());
179 179
 		// setup empty config classes
180 180
 		$this->_initialize_config();
181 181
 		// load existing EE site settings
@@ -183,15 +183,15 @@  discard block
 block discarded – undo
183 183
 		// confirm everything loaded correctly and set filtered defaults if not
184 184
 		$this->_verify_config();
185 185
 		//  register shortcodes and modules
186
-		add_action( 'AHEE__EE_System__register_shortcodes_modules_and_widgets', array( $this, 'register_shortcodes_and_modules' ), 999 );
186
+		add_action('AHEE__EE_System__register_shortcodes_modules_and_widgets', array($this, 'register_shortcodes_and_modules'), 999);
187 187
 		//  initialize shortcodes and modules
188
-		add_action( 'AHEE__EE_System__core_loaded_and_ready', array( $this, 'initialize_shortcodes_and_modules' ));
188
+		add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'initialize_shortcodes_and_modules'));
189 189
 		// register widgets
190
-		add_action( 'widgets_init', array( $this, 'widgets_init' ), 10 );
190
+		add_action('widgets_init', array($this, 'widgets_init'), 10);
191 191
 		// shutdown
192
-		add_action( 'shutdown', array( $this, 'shutdown' ), 10 );
192
+		add_action('shutdown', array($this, 'shutdown'), 10);
193 193
 		// construct__end hook
194
-		do_action( 'AHEE__EE_Config__construct__end',$this );
194
+		do_action('AHEE__EE_Config__construct__end', $this);
195 195
 		// hardcoded hack
196 196
 		$this->template_settings->current_espresso_theme = 'Espresso_Arabica_2014';
197 197
 	}
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 	 * @return string current theme set.
205 205
 	 */
206 206
 	public static function get_current_theme() {
207
-		return isset( self::$_instance->template_settings->current_espresso_theme ) ? self::$_instance->template_settings->current_espresso_theme : 'Espresso_Arabica_2014';
207
+		return isset(self::$_instance->template_settings->current_espresso_theme) ? self::$_instance->template_settings->current_espresso_theme : 'Espresso_Arabica_2014';
208 208
 	}
209 209
 
210 210
 
@@ -238,27 +238,27 @@  discard block
 block discarded – undo
238 238
 	 */
239 239
 	private function _load_core_config() {
240 240
 		// load_core_config__start hook
241
-		do_action( 'AHEE__EE_Config___load_core_config__start', $this );
241
+		do_action('AHEE__EE_Config___load_core_config__start', $this);
242 242
 		$espresso_config = $this->get_espresso_config();
243
-		foreach ( $espresso_config as $config => $settings ) {
243
+		foreach ($espresso_config as $config => $settings) {
244 244
 			// load_core_config__start hook
245
-			$settings = apply_filters( 'FHEE__EE_Config___load_core_config__config_settings', $settings, $config, $this );
246
-			if ( is_object( $settings ) && property_exists( $this, $config ) ) {
247
-				$this->{$config} = apply_filters( 'FHEE__EE_Config___load_core_config__' . $config, $settings );
245
+			$settings = apply_filters('FHEE__EE_Config___load_core_config__config_settings', $settings, $config, $this);
246
+			if (is_object($settings) && property_exists($this, $config)) {
247
+				$this->{$config} = apply_filters('FHEE__EE_Config___load_core_config__'.$config, $settings);
248 248
 				//call configs populate method to ensure any defaults are set for empty values.
249
-				if ( method_exists( $settings, 'populate' ) ) {
249
+				if (method_exists($settings, 'populate')) {
250 250
 					$this->{$config}->populate();
251 251
 				}
252
-				if ( method_exists( $settings, 'do_hooks' ) ) {
252
+				if (method_exists($settings, 'do_hooks')) {
253 253
 					$this->{$config}->do_hooks();
254 254
 				}
255 255
 			}
256 256
 		}
257
-		if ( apply_filters( 'FHEE__EE_Config___load_core_config__update_espresso_config', FALSE ) ) {
257
+		if (apply_filters('FHEE__EE_Config___load_core_config__update_espresso_config', FALSE)) {
258 258
 			$this->update_espresso_config();
259 259
 		}
260 260
 		// load_core_config__end hook
261
-		do_action( 'AHEE__EE_Config___load_core_config__end', $this );
261
+		do_action('AHEE__EE_Config___load_core_config__end', $this);
262 262
 	}
263 263
 
264 264
 
@@ -272,40 +272,40 @@  discard block
 block discarded – undo
272 272
 	protected function _verify_config() {
273 273
 
274 274
 		$this->core = $this->core instanceof EE_Core_Config
275
-			? $this->core  : new EE_Core_Config();
276
-		$this->core = apply_filters( 'FHEE__EE_Config___initialize_config__core', $this->core );
275
+			? $this->core : new EE_Core_Config();
276
+		$this->core = apply_filters('FHEE__EE_Config___initialize_config__core', $this->core);
277 277
 
278 278
 		$this->organization = $this->organization instanceof EE_Organization_Config
279
-			? $this->organization  : new EE_Organization_Config();
280
-		$this->organization = apply_filters( 'FHEE__EE_Config___initialize_config__organization', $this->organization );
279
+			? $this->organization : new EE_Organization_Config();
280
+		$this->organization = apply_filters('FHEE__EE_Config___initialize_config__organization', $this->organization);
281 281
 
282 282
 		$this->currency = $this->currency instanceof EE_Currency_Config
283 283
 			? $this->currency : new EE_Currency_Config();
284
-		$this->currency = apply_filters( 'FHEE__EE_Config___initialize_config__currency', $this->currency );
284
+		$this->currency = apply_filters('FHEE__EE_Config___initialize_config__currency', $this->currency);
285 285
 
286 286
 		$this->registration = $this->registration instanceof EE_Registration_Config
287 287
 			? $this->registration : new EE_Registration_Config();
288
-		$this->registration = apply_filters( 'FHEE__EE_Config___initialize_config__registration', $this->registration );
288
+		$this->registration = apply_filters('FHEE__EE_Config___initialize_config__registration', $this->registration);
289 289
 
290 290
 		$this->admin = $this->admin instanceof EE_Admin_Config
291 291
 			? $this->admin : new EE_Admin_Config();
292
-		$this->admin = apply_filters( 'FHEE__EE_Config___initialize_config__admin', $this->admin );
292
+		$this->admin = apply_filters('FHEE__EE_Config___initialize_config__admin', $this->admin);
293 293
 
294 294
 		$this->template_settings = $this->template_settings instanceof EE_Template_Config
295 295
 			? $this->template_settings : new EE_Template_Config();
296
-		$this->template_settings = apply_filters( 'FHEE__EE_Config___initialize_config__template_settings', $this->template_settings );
296
+		$this->template_settings = apply_filters('FHEE__EE_Config___initialize_config__template_settings', $this->template_settings);
297 297
 
298 298
 		$this->map_settings = $this->map_settings instanceof EE_Map_Config
299 299
 			? $this->map_settings : new EE_Map_Config();
300
-		$this->map_settings = apply_filters( 'FHEE__EE_Config___initialize_config__map_settings', $this->map_settings );
300
+		$this->map_settings = apply_filters('FHEE__EE_Config___initialize_config__map_settings', $this->map_settings);
301 301
 
302 302
 		$this->environment = $this->environment instanceof EE_Environment_Config
303 303
 			? $this->environment : new EE_Environment_Config();
304
-		$this->environment = apply_filters( 'FHEE__EE_Config___initialize_config__environment', $this->environment );
304
+		$this->environment = apply_filters('FHEE__EE_Config___initialize_config__environment', $this->environment);
305 305
 
306 306
 		$this->gateway = $this->gateway instanceof EE_Gateway_Config
307 307
 			? $this->gateway : new EE_Gateway_Config();
308
-		$this->gateway = apply_filters( 'FHEE__EE_Config___initialize_config__gateway', $this->gateway );
308
+		$this->gateway = apply_filters('FHEE__EE_Config___initialize_config__gateway', $this->gateway);
309 309
 
310 310
 	}
311 311
 
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	 */
320 320
 	public function get_espresso_config() {
321 321
 		// grab espresso configuration
322
-		return apply_filters( 'FHEE__EE_Config__get_espresso_config__CFG', get_option( 'ee_config', array() ));
322
+		return apply_filters('FHEE__EE_Config__get_espresso_config__CFG', get_option('ee_config', array()));
323 323
 	}
324 324
 
325 325
 
@@ -332,12 +332,12 @@  discard block
 block discarded – undo
332 332
 	 * @param        $old_value
333 333
 	 * @param        $value
334 334
 	 */
335
-	public function double_check_config_comparison( $option = '', $old_value, $value ) {
335
+	public function double_check_config_comparison($option = '', $old_value, $value) {
336 336
 		// make sure we're checking the ee config
337
-		if ( $option == 'ee_config' ) {
337
+		if ($option == 'ee_config') {
338 338
 			// run a loose comparison of the old value against the new value for type and properties,
339 339
 			// but NOT exact instance like WP update_option does
340
-			if ( $value != $old_value ) {
340
+			if ($value != $old_value) {
341 341
 				// if they are NOT the same, then remove the hook,
342 342
 				// which means the subsequent update results will be based solely on the update query results
343 343
 				// the reason we do this is because, as stated above,
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 				// the string it sees in the db looks the same as the new one it has been passed!!!
353 353
 				// This results in the query returning an "affected rows" value of ZERO,
354 354
 				// which gets returned immediately by WP update_option and looks like an error.
355
-				remove_action( 'update_option', array( $this, 'check_config_updated' ));
355
+				remove_action('update_option', array($this, 'check_config_updated'));
356 356
 			}
357 357
 		}
358 358
 	}
@@ -367,11 +367,11 @@  discard block
 block discarded – undo
367 367
 	 */
368 368
 	protected function  _reset_espresso_addon_config() {
369 369
 		$this->_config_option_names = array();
370
-		foreach( $this->addons as $addon_name => $addon_config_obj ) {
371
-			$addon_config_obj = maybe_unserialize( $addon_config_obj );
372
-			$config_class = get_class( $addon_config_obj );
373
-			if ( $addon_config_obj instanceof $config_class && ! $addon_config_obj instanceof __PHP_Incomplete_Class ) {
374
-				$this->update_config( 'addons', $addon_name, $addon_config_obj, FALSE );
370
+		foreach ($this->addons as $addon_name => $addon_config_obj) {
371
+			$addon_config_obj = maybe_unserialize($addon_config_obj);
372
+			$config_class = get_class($addon_config_obj);
373
+			if ($addon_config_obj instanceof $config_class && ! $addon_config_obj instanceof __PHP_Incomplete_Class) {
374
+				$this->update_config('addons', $addon_name, $addon_config_obj, FALSE);
375 375
 			}
376 376
 			$this->addons->{$addon_name} = NULL;
377 377
 		}
@@ -387,17 +387,17 @@  discard block
 block discarded – undo
387 387
 	 * @param   bool $add_error
388 388
 	 * @return   bool
389 389
 	 */
390
-	public function  update_espresso_config( $add_success = FALSE, $add_error = TRUE ) {
390
+	public function  update_espresso_config($add_success = FALSE, $add_error = TRUE) {
391 391
 		// commented out the following re: https://events.codebasehq.com/projects/event-espresso/tickets/8197
392 392
 		//$clone = clone( self::$_instance );
393 393
 		//self::$_instance = NULL;
394
-		do_action( 'AHEE__EE_Config__update_espresso_config__begin',$this );
394
+		do_action('AHEE__EE_Config__update_espresso_config__begin', $this);
395 395
 		$this->_reset_espresso_addon_config();
396 396
 		// hook into update_option because that happens AFTER the ( $value === $old_value ) conditional
397 397
 		// but BEFORE the actual update occurs
398
-		add_action( 'update_option', array( $this, 'double_check_config_comparison' ), 1, 3 );
398
+		add_action('update_option', array($this, 'double_check_config_comparison'), 1, 3);
399 399
 		// now update "ee_config"
400
-		$saved = update_option( 'ee_config', $this );
400
+		$saved = update_option('ee_config', $this);
401 401
 		// if not saved... check if the hook we just added still exists;
402 402
 		// if it does, it means one of two things:
403 403
 		// 		that update_option bailed at the ( $value === $old_value ) conditional,
@@ -408,25 +408,25 @@  discard block
 block discarded – undo
408 408
 		// but just means no update occurred, so don't display an error to the user.
409 409
 		// BUT... if update_option returns FALSE, AND the hook is missing,
410 410
 		// then it means that something truly went wrong
411
-		$saved = ! $saved ? has_action( 'update_option', array( $this, 'double_check_config_comparison' )) : $saved;
411
+		$saved = ! $saved ? has_action('update_option', array($this, 'double_check_config_comparison')) : $saved;
412 412
 		// remove our action since we don't want it in the system anymore
413
-		remove_action( 'update_option', array( $this, 'double_check_config_comparison' ), 1 );
414
-		do_action( 'AHEE__EE_Config__update_espresso_config__end', $this, $saved );
413
+		remove_action('update_option', array($this, 'double_check_config_comparison'), 1);
414
+		do_action('AHEE__EE_Config__update_espresso_config__end', $this, $saved);
415 415
 		//self::$_instance = $clone;
416 416
 		//unset( $clone );
417 417
 		// if config remains the same or was updated successfully
418
-		if ( $saved ) {
419
-			if ( $add_success ) {
418
+		if ($saved) {
419
+			if ($add_success) {
420 420
 				EE_Error::add_success(
421
-					__( 'The Event Espresso Configuration Settings have been successfully updated.', 'event_espresso' ),
421
+					__('The Event Espresso Configuration Settings have been successfully updated.', 'event_espresso'),
422 422
 					__FILE__, __FUNCTION__, __LINE__
423 423
 				);
424 424
 			}
425 425
 			return TRUE;
426 426
 		} else {
427
-			if ( $add_error ) {
427
+			if ($add_error) {
428 428
 				EE_Error::add_error(
429
-					__( 'The Event Espresso Configuration Settings were not updated.', 'event_espresso' ),
429
+					__('The Event Espresso Configuration Settings were not updated.', 'event_espresso'),
430 430
 					__FILE__, __FUNCTION__, __LINE__
431 431
 				);
432 432
 			}
@@ -452,20 +452,20 @@  discard block
 block discarded – undo
452 452
 		$name = '',
453 453
 		$config_class = '',
454 454
 		$config_obj = NULL,
455
-		$tests_to_run = array( 1, 2, 3, 4, 5, 6, 7, 8 ),
455
+		$tests_to_run = array(1, 2, 3, 4, 5, 6, 7, 8),
456 456
 		$display_errors = TRUE
457 457
 	) {
458 458
 		try {
459
-			foreach ( $tests_to_run as $test ) {
460
-				switch ( $test ) {
459
+			foreach ($tests_to_run as $test) {
460
+				switch ($test) {
461 461
 
462 462
 					// TEST #1 : check that section was set
463 463
 					case 1 :
464
-						if ( empty( $section ) ) {
465
-							if ( $display_errors ) {
464
+						if (empty($section)) {
465
+							if ($display_errors) {
466 466
 								throw new EE_Error(
467 467
 									sprintf(
468
-										__( 'No configuration section has been provided while attempting to save "%s".', 'event_espresso' ),
468
+										__('No configuration section has been provided while attempting to save "%s".', 'event_espresso'),
469 469
 										$config_class
470 470
 									)
471 471
 								);
@@ -476,11 +476,11 @@  discard block
 block discarded – undo
476 476
 
477 477
 					// TEST #2 : check that settings section exists
478 478
 					case 2 :
479
-						if ( ! isset( $this->{$section} ) ) {
480
-							if ( $display_errors ) {
479
+						if ( ! isset($this->{$section} )) {
480
+							if ($display_errors) {
481 481
 								throw new EE_Error(
482
-									sprintf( __( 'The "%s" configuration section does not exist.', 'event_espresso' ),
483
-											 $section )
482
+									sprintf(__('The "%s" configuration section does not exist.', 'event_espresso'),
483
+											 $section)
484 484
 								);
485 485
 							}
486 486
 							return false;
@@ -490,12 +490,12 @@  discard block
 block discarded – undo
490 490
 					// TEST #3 : check that section is the proper format
491 491
 					case 3 :
492 492
 						if (
493
-							! ( $this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass )
493
+							! ($this->{$section} instanceof EE_Config_Base || $this->{$section} instanceof stdClass)
494 494
 						) {
495
-							if ( $display_errors ) {
495
+							if ($display_errors) {
496 496
 								throw new EE_Error(
497 497
 									sprintf(
498
-										__( 'The "%s" configuration settings have not been formatted correctly.', 'event_espresso' ),
498
+										__('The "%s" configuration settings have not been formatted correctly.', 'event_espresso'),
499 499
 										$section
500 500
 									)
501 501
 								);
@@ -506,10 +506,10 @@  discard block
 block discarded – undo
506 506
 
507 507
 					// TEST #4 : check that config section name has been set
508 508
 					case 4 :
509
-						if ( empty( $name ) ) {
510
-							if ( $display_errors ) {
509
+						if (empty($name)) {
510
+							if ($display_errors) {
511 511
 								throw new EE_Error(
512
-									__( 'No name has been provided for the specific configuration section.', 'event_espresso' )
512
+									__('No name has been provided for the specific configuration section.', 'event_espresso')
513 513
 								);
514 514
 							}
515 515
 							return false;
@@ -518,10 +518,10 @@  discard block
 block discarded – undo
518 518
 
519 519
 					// TEST #5 : check that a config class name has been set
520 520
 					case 5 :
521
-						if ( empty( $config_class ) ) {
522
-							if ( $display_errors ) {
521
+						if (empty($config_class)) {
522
+							if ($display_errors) {
523 523
 								throw new EE_Error(
524
-									__( 'No class name has been provided for the specific configuration section.', 'event_espresso' )
524
+									__('No class name has been provided for the specific configuration section.', 'event_espresso')
525 525
 								);
526 526
 							}
527 527
 							return false;
@@ -530,11 +530,11 @@  discard block
 block discarded – undo
530 530
 
531 531
 					// TEST #6 : verify config class is accessible
532 532
 					case 6 :
533
-						if ( ! class_exists( $config_class ) ) {
534
-							if ( $display_errors ) {
533
+						if ( ! class_exists($config_class)) {
534
+							if ($display_errors) {
535 535
 								throw new EE_Error(
536 536
 									sprintf(
537
-										__( 'The "%s" class does not exist. Please ensure that an autoloader has been set for it.', 'event_espresso' ),
537
+										__('The "%s" class does not exist. Please ensure that an autoloader has been set for it.', 'event_espresso'),
538 538
 										$config_class
539 539
 									)
540 540
 								);
@@ -545,11 +545,11 @@  discard block
 block discarded – undo
545 545
 
546 546
 					// TEST #7 : check that config has even been set
547 547
 					case 7 :
548
-						if ( ! isset( $this->{$section}->{$name} ) ) {
549
-							if ( $display_errors ) {
548
+						if ( ! isset($this->{$section}->{$name} )) {
549
+							if ($display_errors) {
550 550
 								throw new EE_Error(
551 551
 									sprintf(
552
-										__( 'No configuration has been set for "%1$s->%2$s".', 'event_espresso' ),
552
+										__('No configuration has been set for "%1$s->%2$s".', 'event_espresso'),
553 553
 										$section,
554 554
 										$name
555 555
 									)
@@ -558,17 +558,17 @@  discard block
 block discarded – undo
558 558
 							return false;
559 559
 						} else {
560 560
 							// and make sure it's not serialized
561
-							$this->{$section}->{$name} = maybe_unserialize( $this->{$section}->{$name} );
561
+							$this->{$section}->{$name} = maybe_unserialize($this->{$section}->{$name} );
562 562
 						}
563 563
 						break;
564 564
 
565 565
 					// TEST #8 : check that config is the requested type
566 566
 					case 8 :
567
-						if ( ! $this->{$section}->{$name} instanceof $config_class ) {
568
-							if ( $display_errors ) {
567
+						if ( ! $this->{$section}->{$name} instanceof $config_class) {
568
+							if ($display_errors) {
569 569
 								throw new EE_Error(
570 570
 									sprintf(
571
-										__( 'The configuration for "%1$s->%2$s" is not of the "%3$s" class.', 'event_espresso' ),
571
+										__('The configuration for "%1$s->%2$s" is not of the "%3$s" class.', 'event_espresso'),
572 572
 										$section,
573 573
 										$name,
574 574
 										$config_class
@@ -581,12 +581,12 @@  discard block
 block discarded – undo
581 581
 
582 582
 					// TEST #9 : verify config object
583 583
 					case 9 :
584
-						if ( ! $config_obj instanceof EE_Config_Base ) {
585
-							if ( $display_errors ) {
584
+						if ( ! $config_obj instanceof EE_Config_Base) {
585
+							if ($display_errors) {
586 586
 								throw new EE_Error(
587 587
 									sprintf(
588
-										__( 'The "%s" class is not an instance of EE_Config_Base.', 'event_espresso' ),
589
-										print_r( $config_obj, true )
588
+										__('The "%s" class is not an instance of EE_Config_Base.', 'event_espresso'),
589
+										print_r($config_obj, true)
590 590
 									)
591 591
 								);
592 592
 							}
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 				}
598 598
 			}
599 599
 
600
-		} catch( EE_Error $e ) {
600
+		} catch (EE_Error $e) {
601 601
 			$e->get_error();
602 602
 		}
603 603
 		// you have successfully run the gauntlet
@@ -614,8 +614,8 @@  discard block
 block discarded – undo
614 614
 	 * @param        string          $name
615 615
 	 * @return        string
616 616
 	 */
617
-	private function _generate_config_option_name( $section = '', $name = '' ) {
618
-		return 'ee_config-' . strtolower( $section . '-' . str_replace( array( 'EE_', 'EED_' ), '', $name ) );
617
+	private function _generate_config_option_name($section = '', $name = '') {
618
+		return 'ee_config-'.strtolower($section.'-'.str_replace(array('EE_', 'EED_'), '', $name));
619 619
 	}
620 620
 
621 621
 
@@ -629,10 +629,10 @@  discard block
 block discarded – undo
629 629
 	 * @param 	string $name
630 630
 	 * @return 	string
631 631
 	 */
632
-	private function _set_config_class( $config_class = '', $name = '' ) {
633
-		return ! empty( $config_class )
632
+	private function _set_config_class($config_class = '', $name = '') {
633
+		return ! empty($config_class)
634 634
 			? $config_class
635
-			: str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $name ) ) ) . '_Config';
635
+			: str_replace(' ', '_', ucwords(str_replace('_', ' ', $name))).'_Config';
636 636
 	}
637 637
 
638 638
 
@@ -646,34 +646,34 @@  discard block
 block discarded – undo
646 646
 	 * @param 	EE_Config_Base $config_obj
647 647
 	 * @return 	EE_Config_Base
648 648
 	 */
649
-	public function set_config( $section = '', $name = '', $config_class = '', EE_Config_Base $config_obj = null ) {
649
+	public function set_config($section = '', $name = '', $config_class = '', EE_Config_Base $config_obj = null) {
650 650
 		// ensure config class is set to something
651
-		$config_class = $this->_set_config_class( $config_class, $name );
651
+		$config_class = $this->_set_config_class($config_class, $name);
652 652
 		// run tests 1-4, 6, and 7 to verify all config params are set and valid
653
-		if ( ! $this->_verify_config_params( $section, $name, $config_class, null, array( 1, 2, 3, 4, 5, 6 ))) {
653
+		if ( ! $this->_verify_config_params($section, $name, $config_class, null, array(1, 2, 3, 4, 5, 6))) {
654 654
 			return null;
655 655
 		}
656
-		$config_option_name = $this->_generate_config_option_name( $section, $name );
656
+		$config_option_name = $this->_generate_config_option_name($section, $name);
657 657
 		// if the config option name hasn't been added yet to the list of option names we're tracking, then do so now
658
-		if ( ! isset( $this->_config_option_names[ $config_option_name ] )) {
659
-			$this->_config_option_names[ $config_option_name ] = $config_class;
658
+		if ( ! isset($this->_config_option_names[$config_option_name])) {
659
+			$this->_config_option_names[$config_option_name] = $config_class;
660 660
 		}
661 661
 		// verify the incoming config object but suppress errors
662
-		if ( ! $this->_verify_config_params( $section, $name, $config_class, $config_obj, array( 9 ), false )) {
662
+		if ( ! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), false)) {
663 663
 			$config_obj = new $config_class();
664 664
 		}
665
-		if ( get_option( $config_option_name ) ) {
666
-			update_option( $config_option_name, $config_obj );
665
+		if (get_option($config_option_name)) {
666
+			update_option($config_option_name, $config_obj);
667 667
 			$this->{$section}->{$name} = $config_obj;
668 668
 			return $this->{$section}->{$name};
669 669
 		} else {
670 670
 			// create a wp-option for this config
671
-			if ( add_option( $config_option_name, $config_obj, '', 'no' )) {
672
-				$this->{$section}->{$name} = maybe_unserialize( $config_obj );
671
+			if (add_option($config_option_name, $config_obj, '', 'no')) {
672
+				$this->{$section}->{$name} = maybe_unserialize($config_obj);
673 673
 				return $this->{$section}->{$name};
674 674
 			} else {
675 675
 				EE_Error::add_error(
676
-					sprintf( __( 'The "%s" could not be saved to the database.', 'event_espresso' ), $config_class ),
676
+					sprintf(__('The "%s" could not be saved to the database.', 'event_espresso'), $config_class),
677 677
 					__FILE__, __FUNCTION__, __LINE__
678 678
 				);
679 679
 				return null;
@@ -694,37 +694,37 @@  discard block
 block discarded – undo
694 694
 	 * @param 	bool 					$throw_errors
695 695
 	 * @return 	bool
696 696
 	 */
697
-	public function update_config( $section = '', $name = '', $config_obj = '', $throw_errors = true ) {
698
-		$config_obj = maybe_unserialize( $config_obj );
697
+	public function update_config($section = '', $name = '', $config_obj = '', $throw_errors = true) {
698
+		$config_obj = maybe_unserialize($config_obj);
699 699
 		// get class name of the incoming object
700
-		$config_class = get_class( $config_obj );
700
+		$config_class = get_class($config_obj);
701 701
 		// run tests 1-5 and 9 to verify config
702
-		if ( ! $this->_verify_config_params( $section, $name, $config_class, $config_obj, array( 1, 2, 3, 4, 7, 9 ))) {
702
+		if ( ! $this->_verify_config_params($section, $name, $config_class, $config_obj, array(1, 2, 3, 4, 7, 9))) {
703 703
 			return false;
704 704
 		}
705
-		$config_option_name = $this->_generate_config_option_name( $section, $name );
705
+		$config_option_name = $this->_generate_config_option_name($section, $name);
706 706
 		// check if config object has been added to db by seeing if config option name is in $this->_config_option_names array
707
-		if ( ! isset( $this->_config_option_names[ $config_option_name ] )) {
707
+		if ( ! isset($this->_config_option_names[$config_option_name])) {
708 708
 			// save new config to db
709
-			return $this->set_config( $section, $name, $config_class, $config_obj );
709
+			return $this->set_config($section, $name, $config_class, $config_obj);
710 710
 		} else {
711 711
 			// first check if the record already exists
712
-			$existing_config = get_option( $config_option_name );
713
-			$config_obj = serialize( $config_obj );
712
+			$existing_config = get_option($config_option_name);
713
+			$config_obj = serialize($config_obj);
714 714
 			// just return if db record is already up to date
715
-			if ( $existing_config == $config_obj ) {
715
+			if ($existing_config == $config_obj) {
716 716
 				$this->{$section}->{$name} = $config_obj;
717 717
 				return true;
718
-			} else if ( update_option( $config_option_name, $config_obj )) {
718
+			} else if (update_option($config_option_name, $config_obj)) {
719 719
 				// update wp-option for this config class
720 720
 				$this->{$section}->{$name} = $config_obj;
721 721
 				return true;
722
-			} elseif ( $throw_errors ) {
722
+			} elseif ($throw_errors) {
723 723
 				EE_Error::add_error(
724 724
 					sprintf(
725
-						__( 'The "%1$s" object stored at"%2$s" was not successfully updated in the database.', 'event_espresso' ),
725
+						__('The "%1$s" object stored at"%2$s" was not successfully updated in the database.', 'event_espresso'),
726 726
 						$config_class,
727
-						'EE_Config->' . $section . '->' . $name
727
+						'EE_Config->'.$section.'->'.$name
728 728
 					),
729 729
 					__FILE__, __FUNCTION__, __LINE__
730 730
 				);
@@ -744,34 +744,34 @@  discard block
 block discarded – undo
744 744
 	 * @param 	string 	$config_class
745 745
 	 * @return 	mixed EE_Config_Base | NULL
746 746
 	 */
747
-	public function get_config( $section = '', $name = '', $config_class = '' ) {
747
+	public function get_config($section = '', $name = '', $config_class = '') {
748 748
 		// ensure config class is set to something
749
-		$config_class = $this->_set_config_class( $config_class, $name );
749
+		$config_class = $this->_set_config_class($config_class, $name);
750 750
 		// run tests 1-4, 6 and 7 to verify that all params have been set
751
-		if ( ! $this->_verify_config_params( $section, $name, $config_class, NULL, array( 1, 2, 3, 4, 5, 6 ))) {
751
+		if ( ! $this->_verify_config_params($section, $name, $config_class, NULL, array(1, 2, 3, 4, 5, 6))) {
752 752
 			return NULL;
753 753
 		}
754 754
 		// now test if the requested config object exists, but suppress errors
755
-		if ( $this->_verify_config_params( $section, $name, $config_class, NULL, array( 7, 8 ), FALSE )) {
755
+		if ($this->_verify_config_params($section, $name, $config_class, NULL, array(7, 8), FALSE)) {
756 756
 			// config already exists, so pass it back
757 757
 			return $this->{$section}->{$name};
758 758
 		}
759 759
 		// load config option from db if it exists
760
-		$config_obj = $this->get_config_option( $this->_generate_config_option_name( $section, $name ));
760
+		$config_obj = $this->get_config_option($this->_generate_config_option_name($section, $name));
761 761
 		// verify the newly retrieved config object, but suppress errors
762
-		if ( $this->_verify_config_params( $section, $name, $config_class, $config_obj, array( 9 ), FALSE )) {
762
+		if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9), FALSE)) {
763 763
 			// config is good, so set it and pass it back
764 764
 			$this->{$section}->{$name} = $config_obj;
765 765
 			return $this->{$section}->{$name};
766 766
 		}
767 767
 		// oops! $config_obj is not already set and does not exist in the db, so create a new one
768
-		$config_obj =$this->set_config( $section, $name, $config_class );
768
+		$config_obj = $this->set_config($section, $name, $config_class);
769 769
 		// verify the newly created config object
770
-		if ( $this->_verify_config_params( $section, $name, $config_class, $config_obj, array( 9 ))) {
770
+		if ($this->_verify_config_params($section, $name, $config_class, $config_obj, array(9))) {
771 771
 			return $this->{$section}->{$name};
772 772
 		} else {
773 773
 			EE_Error::add_error(
774
-				sprintf( __( 'The "%s" could not be retrieved from the database.', 'event_espresso' ), $config_class ),
774
+				sprintf(__('The "%s" could not be retrieved from the database.', 'event_espresso'), $config_class),
775 775
 				__FILE__, __FUNCTION__, __LINE__
776 776
 			);
777 777
 		}
@@ -786,9 +786,9 @@  discard block
 block discarded – undo
786 786
 	 * @param 	string 	$config_option_name
787 787
 	 * @return 	mixed EE_Config_Base | FALSE
788 788
 	 */
789
-	public function get_config_option( $config_option_name = '' ) {
789
+	public function get_config_option($config_option_name = '') {
790 790
 		// retrieve the wp-option for this config class.
791
-		return maybe_unserialize( get_option( $config_option_name ));
791
+		return maybe_unserialize(get_option($config_option_name));
792 792
 	}
793 793
 
794 794
 
@@ -801,45 +801,45 @@  discard block
 block discarded – undo
801 801
 	 * @param $page_for_posts
802 802
 	 * @return    void
803 803
 	 */
804
-	public function update_post_shortcodes( $page_for_posts = '' ) {
804
+	public function update_post_shortcodes($page_for_posts = '') {
805 805
 		// make sure page_for_posts is set
806
-		$page_for_posts = ! empty( $page_for_posts ) ? $page_for_posts : EE_Config::get_page_for_posts();
806
+		$page_for_posts = ! empty($page_for_posts) ? $page_for_posts : EE_Config::get_page_for_posts();
807 807
 		// critical page shortcodes that we do NOT want added to the Posts page (blog)
808 808
 		$critical_shortcodes = $this->core->get_critical_pages_shortcodes_array();
809 809
 		// allow others to mess stuff up :D
810
-		do_action( 'AHEE__EE_Config__update_post_shortcodes', $this->core->post_shortcodes, $page_for_posts );
810
+		do_action('AHEE__EE_Config__update_post_shortcodes', $this->core->post_shortcodes, $page_for_posts);
811 811
 		// verify that post_shortcodes is set
812
-		$this->core->post_shortcodes = isset( $this->core->post_shortcodes ) && is_array( $this->core->post_shortcodes ) ? $this->core->post_shortcodes : array();
812
+		$this->core->post_shortcodes = isset($this->core->post_shortcodes) && is_array($this->core->post_shortcodes) ? $this->core->post_shortcodes : array();
813 813
 		// cycle thru post_shortcodes
814
-		foreach( $this->core->post_shortcodes as $post_name => $shortcodes ){
814
+		foreach ($this->core->post_shortcodes as $post_name => $shortcodes) {
815 815
 			// are there any shortcodes to track ?
816
-			if ( ! empty( $shortcodes )) {
816
+			if ( ! empty($shortcodes)) {
817 817
 				// loop thru list of tracked shortcodes
818
-				foreach( $shortcodes as $shortcode => $post_id ) {
818
+				foreach ($shortcodes as $shortcode => $post_id) {
819 819
 					// if shortcode is for a critical page, BUT this is NOT the corresponding critical page for that shortcode
820
-					if ( isset( $critical_shortcodes[ $post_id ] ) && $post_name == $page_for_posts ) {
820
+					if (isset($critical_shortcodes[$post_id]) && $post_name == $page_for_posts) {
821 821
 						// then remove this shortcode, because we don't want critical page shortcodes like ESPRESSO_TXN_PAGE running on the "Posts Page" (blog)
822
-						unset( $this->core->post_shortcodes[ $post_name ][ $shortcode ] );
822
+						unset($this->core->post_shortcodes[$post_name][$shortcode]);
823 823
 					}
824 824
 					// skip the posts page, because we want all shortcodes registered for it
825
-					if ( $post_name == $page_for_posts ) {
825
+					if ($post_name == $page_for_posts) {
826 826
 						continue;
827 827
 					}
828 828
 					// make sure post still exists
829
-					$post = get_post( $post_id );
830
-					if ( $post ) {
829
+					$post = get_post($post_id);
830
+					if ($post) {
831 831
 						// check that the post name matches what we have saved
832
-						if ( $post->post_name == $post_name ) {
832
+						if ($post->post_name == $post_name) {
833 833
 							// if so, then break before hitting the unset below
834 834
 							continue;
835 835
 						}
836 836
 					}
837 837
 					// we don't like missing posts around here >:(
838
-					unset( $this->core->post_shortcodes[ $post_name ] );
838
+					unset($this->core->post_shortcodes[$post_name]);
839 839
 				}
840 840
 			} else {
841 841
 				// you got no shortcodes to keep track of !
842
-				unset( $this->core->post_shortcodes[ $post_name ] );
842
+				unset($this->core->post_shortcodes[$post_name]);
843 843
 			}
844 844
 		}
845 845
 		//only show errors
@@ -858,14 +858,14 @@  discard block
 block discarded – undo
858 858
 	 *  @return 	string
859 859
 	 */
860 860
 	public static function get_page_for_posts() {
861
-		$page_for_posts = get_option( 'page_for_posts' );
862
-		if ( ! $page_for_posts ) {
861
+		$page_for_posts = get_option('page_for_posts');
862
+		if ( ! $page_for_posts) {
863 863
 			return 'posts';
864 864
 		}
865 865
 		/** @type WPDB $wpdb */
866 866
 		global $wpdb;
867 867
 		$SQL = "SELECT post_name from $wpdb->posts WHERE post_type='posts' OR post_type='page' AND post_status='publish' AND ID=%d";
868
-		return $wpdb->get_var( $wpdb->prepare( $SQL, $page_for_posts ));
868
+		return $wpdb->get_var($wpdb->prepare($SQL, $page_for_posts));
869 869
 	}
870 870
 
871 871
 
@@ -881,11 +881,11 @@  discard block
 block discarded – undo
881 881
 	 *  @return 	void
882 882
 	 */
883 883
 	public function register_shortcodes_and_modules() {
884
-		if ( EE_Maintenance_Mode::disable_frontend_for_maintenance() ) {
884
+		if (EE_Maintenance_Mode::disable_frontend_for_maintenance()) {
885 885
 			return;
886 886
 		}
887 887
 		// allow shortcodes to register with WP and to set hooks for the rest of the system
888
-		EE_Registry::instance()->shortcodes =$this->_register_shortcodes();
888
+		EE_Registry::instance()->shortcodes = $this->_register_shortcodes();
889 889
 		// allow modules to set hooks for the rest of the system
890 890
 		EE_Registry::instance()->modules = $this->_register_modules();
891 891
 	}
@@ -899,7 +899,7 @@  discard block
 block discarded – undo
899 899
 	 *  @return 	void
900 900
 	 */
901 901
 	public function initialize_shortcodes_and_modules() {
902
-		if ( EE_Maintenance_Mode::disable_frontend_for_maintenance() ) {
902
+		if (EE_Maintenance_Mode::disable_frontend_for_maintenance()) {
903 903
 			return;
904 904
 		}
905 905
 		// allow shortcodes to set hooks for the rest of the system
@@ -918,26 +918,26 @@  discard block
 block discarded – undo
918 918
 	 * 	@return void
919 919
 	 */
920 920
 	public function widgets_init() {
921
-		if ( EE_Maintenance_Mode::disable_frontend_for_maintenance() ) {
921
+		if (EE_Maintenance_Mode::disable_frontend_for_maintenance()) {
922 922
 			return;
923 923
 		}
924 924
 		//only init widgets on admin pages when not in complete maintenance, and
925 925
 		//on frontend when not in any maintenance mode
926
-		if (( is_admin() && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance)  || ! EE_Maintenance_Mode::instance()->level() ) {
926
+		if ((is_admin() && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) || ! EE_Maintenance_Mode::instance()->level()) {
927 927
 			// grab list of installed widgets
928
-			$widgets_to_register = glob( EE_WIDGETS . '*', GLOB_ONLYDIR );
928
+			$widgets_to_register = glob(EE_WIDGETS.'*', GLOB_ONLYDIR);
929 929
 			// filter list of modules to register
930
-			$widgets_to_register = apply_filters( 'FHEE__EE_Config__register_widgets__widgets_to_register', $widgets_to_register );
930
+			$widgets_to_register = apply_filters('FHEE__EE_Config__register_widgets__widgets_to_register', $widgets_to_register);
931 931
 
932
-			if ( ! empty( $widgets_to_register ) ) {
932
+			if ( ! empty($widgets_to_register)) {
933 933
 				// cycle thru widget folders
934
-				foreach ( $widgets_to_register as $widget_path ) {
934
+				foreach ($widgets_to_register as $widget_path) {
935 935
 					// add to list of installed widget modules
936
-					EE_Config::register_ee_widget( $widget_path );
936
+					EE_Config::register_ee_widget($widget_path);
937 937
 				}
938 938
 			}
939 939
 			// filter list of installed modules
940
-			EE_Registry::instance()->widgets = apply_filters( 'FHEE__EE_Config__register_widgets__installed_widgets', EE_Registry::instance()->widgets );
940
+			EE_Registry::instance()->widgets = apply_filters('FHEE__EE_Config__register_widgets__installed_widgets', EE_Registry::instance()->widgets);
941 941
 		}
942 942
 	}
943 943
 
@@ -950,54 +950,54 @@  discard block
 block discarded – undo
950 950
 	 *  @param 	string 	$widget_path - full path up to and including widget folder
951 951
 	 *  @return 	void
952 952
 	 */
953
-	public static function register_ee_widget( $widget_path = NULL ) {
954
-		do_action( 'AHEE__EE_Config__register_widget__begin', $widget_path );
953
+	public static function register_ee_widget($widget_path = NULL) {
954
+		do_action('AHEE__EE_Config__register_widget__begin', $widget_path);
955 955
 		$widget_ext = '.widget.php';
956 956
 		// make all separators match
957
-		$widget_path = rtrim( str_replace( '/\\', DS, $widget_path ), DS );
957
+		$widget_path = rtrim(str_replace('/\\', DS, $widget_path), DS);
958 958
 		// does the file path INCLUDE the actual file name as part of the path ?
959
-		if ( strpos( $widget_path, $widget_ext ) !== FALSE ) {
959
+		if (strpos($widget_path, $widget_ext) !== FALSE) {
960 960
 			// grab and shortcode file name from directory name and break apart at dots
961
-			$file_name = explode( '.', basename( $widget_path ));
961
+			$file_name = explode('.', basename($widget_path));
962 962
 			// take first segment from file name pieces and remove class prefix if it exists
963
-			$widget = strpos( $file_name[0], 'EEW_' ) === 0 ? substr( $file_name[0], 4 ) : $file_name[0];
963
+			$widget = strpos($file_name[0], 'EEW_') === 0 ? substr($file_name[0], 4) : $file_name[0];
964 964
 			// sanitize shortcode directory name
965
-			$widget = sanitize_key( $widget );
965
+			$widget = sanitize_key($widget);
966 966
 			// now we need to rebuild the shortcode path
967
-			$widget_path = explode( DS, $widget_path );
967
+			$widget_path = explode(DS, $widget_path);
968 968
 			// remove last segment
969
-			array_pop( $widget_path );
969
+			array_pop($widget_path);
970 970
 			// glue it back together
971
-			$widget_path = implode( DS, $widget_path );
971
+			$widget_path = implode(DS, $widget_path);
972 972
 		} else {
973 973
 			// grab and sanitize widget directory name
974
-			$widget = sanitize_key( basename( $widget_path ));
974
+			$widget = sanitize_key(basename($widget_path));
975 975
 		}
976 976
 		// create classname from widget directory name
977
-		$widget = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $widget )));
977
+		$widget = str_replace(' ', '_', ucwords(str_replace('_', ' ', $widget)));
978 978
 		// add class prefix
979
-		$widget_class = 'EEW_' . $widget;
979
+		$widget_class = 'EEW_'.$widget;
980 980
 		// does the widget exist ?
981
-		if ( ! is_readable( $widget_path . DS . $widget_class . $widget_ext )) {
981
+		if ( ! is_readable($widget_path.DS.$widget_class.$widget_ext)) {
982 982
 			$msg = sprintf(
983
-				__( 'The requested %s widget file could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso' ),
983
+				__('The requested %s widget file could not be found or is not readable due to file permissions. Please ensure the following path is correct: %s', 'event_espresso'),
984 984
 				$widget_class,
985
-				$widget_path . DS . $widget_class . $widget_ext
985
+				$widget_path.DS.$widget_class.$widget_ext
986 986
 			);
987
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
987
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
988 988
 			return;
989 989
 		}
990 990
 		// load the widget class file
991
-		require_once( $widget_path . DS . $widget_class . $widget_ext );
991
+		require_once($widget_path.DS.$widget_class.$widget_ext);
992 992
 		// verify that class exists
993
-		if ( ! class_exists( $widget_class )) {
994
-			$msg = sprintf( __( 'The requested %s widget class does not exist.', 'event_espresso' ), $widget_class );
995
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
993
+		if ( ! class_exists($widget_class)) {
994
+			$msg = sprintf(__('The requested %s widget class does not exist.', 'event_espresso'), $widget_class);
995
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
996 996
 			return;
997 997
 		}
998
-		register_widget( $widget_class );
998
+		register_widget($widget_class);
999 999
 		// add to array of registered widgets
1000
-		EE_Registry::instance()->widgets->{$widget_class} = $widget_path . DS . $widget_class . $widget_ext;
1000
+		EE_Registry::instance()->widgets->{$widget_class} = $widget_path.DS.$widget_class.$widget_ext;
1001 1001
 	}
1002 1002
 
1003 1003
 
@@ -1010,18 +1010,18 @@  discard block
 block discarded – undo
1010 1010
 	 */
1011 1011
 	private function _register_shortcodes() {
1012 1012
 		// grab list of installed shortcodes
1013
-		$shortcodes_to_register = glob( EE_SHORTCODES . '*', GLOB_ONLYDIR );
1013
+		$shortcodes_to_register = glob(EE_SHORTCODES.'*', GLOB_ONLYDIR);
1014 1014
 		// filter list of modules to register
1015
-		$shortcodes_to_register = apply_filters( 'FHEE__EE_Config__register_shortcodes__shortcodes_to_register', $shortcodes_to_register );
1016
-		if ( ! empty( $shortcodes_to_register ) ) {
1015
+		$shortcodes_to_register = apply_filters('FHEE__EE_Config__register_shortcodes__shortcodes_to_register', $shortcodes_to_register);
1016
+		if ( ! empty($shortcodes_to_register)) {
1017 1017
 			// cycle thru shortcode folders
1018
-			foreach ( $shortcodes_to_register as $shortcode_path ) {
1018
+			foreach ($shortcodes_to_register as $shortcode_path) {
1019 1019
 				// add to list of installed shortcode modules
1020
-				EE_Config::register_shortcode( $shortcode_path );
1020
+				EE_Config::register_shortcode($shortcode_path);
1021 1021
 			}
1022 1022
 		}
1023 1023
 		// filter list of installed modules
1024
-		return apply_filters( 'FHEE__EE_Config___register_shortcodes__installed_shortcodes', EE_Registry::instance()->shortcodes );
1024
+		return apply_filters('FHEE__EE_Config___register_shortcodes__installed_shortcodes', EE_Registry::instance()->shortcodes);
1025 1025
 	}
1026 1026
 
1027 1027
 
@@ -1033,56 +1033,56 @@  discard block
 block discarded – undo
1033 1033
 	 *  @param 	string 		$shortcode_path - full path up to and including shortcode folder
1034 1034
 	 *  @return 	bool
1035 1035
 	 */
1036
-	public static function register_shortcode( $shortcode_path = NULL ) {
1037
-		do_action( 'AHEE__EE_Config__register_shortcode__begin',$shortcode_path );
1036
+	public static function register_shortcode($shortcode_path = NULL) {
1037
+		do_action('AHEE__EE_Config__register_shortcode__begin', $shortcode_path);
1038 1038
 		$shortcode_ext = '.shortcode.php';
1039 1039
 		// make all separators match
1040
-		$shortcode_path = str_replace( array( '\\', '/' ), DS, $shortcode_path );
1040
+		$shortcode_path = str_replace(array('\\', '/'), DS, $shortcode_path);
1041 1041
 		// does the file path INCLUDE the actual file name as part of the path ?
1042
-		if ( strpos( $shortcode_path, $shortcode_ext ) !== FALSE ) {
1042
+		if (strpos($shortcode_path, $shortcode_ext) !== FALSE) {
1043 1043
 			// grab shortcode file name from directory name and break apart at dots
1044
-			$shortcode_file = explode( '.', basename( $shortcode_path ));
1044
+			$shortcode_file = explode('.', basename($shortcode_path));
1045 1045
 			// take first segment from file name pieces and remove class prefix if it exists
1046
-			$shortcode = strpos( $shortcode_file[0], 'EES_' ) === 0 ? substr( $shortcode_file[0], 4 ) : $shortcode_file[0];
1046
+			$shortcode = strpos($shortcode_file[0], 'EES_') === 0 ? substr($shortcode_file[0], 4) : $shortcode_file[0];
1047 1047
 			// sanitize shortcode directory name
1048
-			$shortcode = sanitize_key( $shortcode );
1048
+			$shortcode = sanitize_key($shortcode);
1049 1049
 			// now we need to rebuild the shortcode path
1050
-			$shortcode_path = explode( DS, $shortcode_path );
1050
+			$shortcode_path = explode(DS, $shortcode_path);
1051 1051
 			// remove last segment
1052
-			array_pop( $shortcode_path );
1052
+			array_pop($shortcode_path);
1053 1053
 			// glue it back together
1054
-			$shortcode_path = implode( DS, $shortcode_path ) . DS;
1054
+			$shortcode_path = implode(DS, $shortcode_path).DS;
1055 1055
 		} else {
1056 1056
 			// we need to generate the filename based off of the folder name
1057 1057
 			// grab and sanitize shortcode directory name
1058
-			$shortcode = sanitize_key( basename( $shortcode_path ));
1059
-			$shortcode_path = rtrim( $shortcode_path, DS ) . DS;
1058
+			$shortcode = sanitize_key(basename($shortcode_path));
1059
+			$shortcode_path = rtrim($shortcode_path, DS).DS;
1060 1060
 		}
1061 1061
 		// create classname from shortcode directory or file name
1062
-		$shortcode = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $shortcode )));
1062
+		$shortcode = str_replace(' ', '_', ucwords(str_replace('_', ' ', $shortcode)));
1063 1063
 		// add class prefix
1064
-		$shortcode_class = 'EES_' . $shortcode;
1064
+		$shortcode_class = 'EES_'.$shortcode;
1065 1065
 		// does the shortcode exist ?
1066
-		if ( ! is_readable( $shortcode_path . DS . $shortcode_class . $shortcode_ext )) {
1066
+		if ( ! is_readable($shortcode_path.DS.$shortcode_class.$shortcode_ext)) {
1067 1067
 			$msg = sprintf(
1068
-				__( 'The requested %s shortcode file could not be found or is not readable due to file permissions. It should be in %s', 'event_espresso' ),
1068
+				__('The requested %s shortcode file could not be found or is not readable due to file permissions. It should be in %s', 'event_espresso'),
1069 1069
 				$shortcode_class,
1070
-				$shortcode_path . DS . $shortcode_class . $shortcode_ext
1070
+				$shortcode_path.DS.$shortcode_class.$shortcode_ext
1071 1071
 			);
1072
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1072
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1073 1073
 			return FALSE;
1074 1074
 		}
1075 1075
 		// load the shortcode class file
1076
-		require_once( $shortcode_path . $shortcode_class . $shortcode_ext );
1076
+		require_once($shortcode_path.$shortcode_class.$shortcode_ext);
1077 1077
 		// verify that class exists
1078
-		if ( ! class_exists( $shortcode_class )) {
1079
-			$msg = sprintf( __( 'The requested %s shortcode class does not exist.', 'event_espresso' ), $shortcode_class );
1080
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1078
+		if ( ! class_exists($shortcode_class)) {
1079
+			$msg = sprintf(__('The requested %s shortcode class does not exist.', 'event_espresso'), $shortcode_class);
1080
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1081 1081
 			return FALSE;
1082 1082
 		}
1083
-		$shortcode = strtoupper( $shortcode );
1083
+		$shortcode = strtoupper($shortcode);
1084 1084
 		// add to array of registered shortcodes
1085
-		EE_Registry::instance()->shortcodes->{$shortcode} = $shortcode_path . $shortcode_class . $shortcode_ext;
1085
+		EE_Registry::instance()->shortcodes->{$shortcode} = $shortcode_path.$shortcode_class.$shortcode_ext;
1086 1086
 		return TRUE;
1087 1087
 	}
1088 1088
 
@@ -1097,23 +1097,23 @@  discard block
 block discarded – undo
1097 1097
 	 */
1098 1098
 	private function _register_modules() {
1099 1099
 		// grab list of installed modules
1100
-		$modules_to_register = glob( EE_MODULES . '*', GLOB_ONLYDIR );
1100
+		$modules_to_register = glob(EE_MODULES.'*', GLOB_ONLYDIR);
1101 1101
 		// filter list of modules to register
1102
-		$modules_to_register = apply_filters( 'FHEE__EE_Config__register_modules__modules_to_register', $modules_to_register );
1102
+		$modules_to_register = apply_filters('FHEE__EE_Config__register_modules__modules_to_register', $modules_to_register);
1103 1103
 
1104 1104
 
1105
-		if ( ! empty( $modules_to_register ) ) {
1105
+		if ( ! empty($modules_to_register)) {
1106 1106
 			// loop through folders
1107
-			foreach ( $modules_to_register as $module_path ) {
1107
+			foreach ($modules_to_register as $module_path) {
1108 1108
 				/**TEMPORARILY EXCLUDE gateways from modules for time being**/
1109
-				if ( $module_path != EE_MODULES . 'zzz-copy-this-module-template' && $module_path != EE_MODULES . 'gateways' ) {
1109
+				if ($module_path != EE_MODULES.'zzz-copy-this-module-template' && $module_path != EE_MODULES.'gateways') {
1110 1110
 					// add to list of installed modules
1111
-					EE_Config::register_module( $module_path );
1111
+					EE_Config::register_module($module_path);
1112 1112
 				}
1113 1113
 			}
1114 1114
 		}
1115 1115
 		// filter list of installed modules
1116
-		return apply_filters( 'FHEE__EE_Config___register_modules__installed_modules', EE_Registry::instance()->modules );
1116
+		return apply_filters('FHEE__EE_Config___register_modules__installed_modules', EE_Registry::instance()->modules);
1117 1117
 	}
1118 1118
 
1119 1119
 
@@ -1126,54 +1126,54 @@  discard block
 block discarded – undo
1126 1126
 	 *  @param 	string 		$module_path - full path up to and including module folder
1127 1127
 	 *  @return 	bool
1128 1128
 	 */
1129
-	public static function register_module( $module_path = NULL ) {
1130
-		do_action( 'AHEE__EE_Config__register_module__begin', $module_path );
1129
+	public static function register_module($module_path = NULL) {
1130
+		do_action('AHEE__EE_Config__register_module__begin', $module_path);
1131 1131
 		$module_ext = '.module.php';
1132 1132
 		// make all separators match
1133
-		$module_path = str_replace( array( '\\', '/' ), DS, $module_path );
1133
+		$module_path = str_replace(array('\\', '/'), DS, $module_path);
1134 1134
 		// does the file path INCLUDE the actual file name as part of the path ?
1135
-		if ( strpos( $module_path, $module_ext ) !== FALSE ) {
1135
+		if (strpos($module_path, $module_ext) !== FALSE) {
1136 1136
 			// grab and shortcode file name from directory name and break apart at dots
1137
-			$module_file = explode( '.', basename( $module_path ));
1137
+			$module_file = explode('.', basename($module_path));
1138 1138
 			// now we need to rebuild the shortcode path
1139
-			$module_path = explode( DS, $module_path );
1139
+			$module_path = explode(DS, $module_path);
1140 1140
 			// remove last segment
1141
-			array_pop( $module_path );
1141
+			array_pop($module_path);
1142 1142
 			// glue it back together
1143
-			$module_path = implode( DS, $module_path ) . DS;
1143
+			$module_path = implode(DS, $module_path).DS;
1144 1144
 			// take first segment from file name pieces and sanitize it
1145
-			$module = preg_replace( '/[^a-zA-Z0-9_\-]/', '', $module_file[0] );
1145
+			$module = preg_replace('/[^a-zA-Z0-9_\-]/', '', $module_file[0]);
1146 1146
 			// ensure class prefix is added
1147
-			$module_class = strpos( $module, 'EED_' ) !== 0 ? 'EED_' . $module : $module;
1147
+			$module_class = strpos($module, 'EED_') !== 0 ? 'EED_'.$module : $module;
1148 1148
 		} else {
1149 1149
 			// we need to generate the filename based off of the folder name
1150 1150
 			// grab and sanitize module name
1151
-			$module = strtolower( basename( $module_path ));
1152
-			$module = preg_replace( '/[^a-z0-9_\-]/', '', $module);
1151
+			$module = strtolower(basename($module_path));
1152
+			$module = preg_replace('/[^a-z0-9_\-]/', '', $module);
1153 1153
 			// like trailingslashit()
1154
-			$module_path = rtrim( $module_path, DS ) . DS;
1154
+			$module_path = rtrim($module_path, DS).DS;
1155 1155
 			// create classname from module directory name
1156
-			$module = str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $module )));
1156
+			$module = str_replace(' ', '_', ucwords(str_replace('_', ' ', $module)));
1157 1157
 			// add class prefix
1158
-			$module_class = 'EED_' . $module;
1158
+			$module_class = 'EED_'.$module;
1159 1159
 		}
1160 1160
 		// does the module exist ?
1161
-		if ( ! is_readable( $module_path . DS . $module_class . $module_ext )) {
1162
-			$msg = sprintf( __( 'The requested %s module file could not be found or is not readable due to file permissions.', 'event_espresso' ), $module );
1163
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1161
+		if ( ! is_readable($module_path.DS.$module_class.$module_ext)) {
1162
+			$msg = sprintf(__('The requested %s module file could not be found or is not readable due to file permissions.', 'event_espresso'), $module);
1163
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1164 1164
 			return FALSE;
1165 1165
 		}
1166 1166
 		// load the module class file
1167
-		require_once( $module_path . $module_class . $module_ext );
1167
+		require_once($module_path.$module_class.$module_ext);
1168 1168
 		// verify that class exists
1169
-		if ( ! class_exists( $module_class )) {
1170
-			$msg = sprintf( __( 'The requested %s module class does not exist.', 'event_espresso' ), $module_class );
1171
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1169
+		if ( ! class_exists($module_class)) {
1170
+			$msg = sprintf(__('The requested %s module class does not exist.', 'event_espresso'), $module_class);
1171
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1172 1172
 			return FALSE;
1173 1173
 		}
1174 1174
 		// add to array of registered modules
1175
-		EE_Registry::instance()->modules->{$module_class} = $module_path . $module_class . $module_ext;
1176
-		do_action( 'AHEE__EE_Config__register_module__complete', $module_class, EE_Registry::instance()->modules->{$module_class} );
1175
+		EE_Registry::instance()->modules->{$module_class} = $module_path.$module_class.$module_ext;
1176
+		do_action('AHEE__EE_Config__register_module__complete', $module_class, EE_Registry::instance()->modules->{$module_class} );
1177 1177
 		return TRUE;
1178 1178
 	}
1179 1179
 
@@ -1187,23 +1187,23 @@  discard block
 block discarded – undo
1187 1187
 	 */
1188 1188
 	private function _initialize_shortcodes() {
1189 1189
 		// cycle thru shortcode folders
1190
-		foreach ( EE_Registry::instance()->shortcodes as $shortcode => $shortcode_path ) {
1190
+		foreach (EE_Registry::instance()->shortcodes as $shortcode => $shortcode_path) {
1191 1191
 			// add class prefix
1192
-			$shortcode_class = 'EES_' . $shortcode;
1192
+			$shortcode_class = 'EES_'.$shortcode;
1193 1193
 			// fire the shortcode class's set_hooks methods in case it needs to hook into other parts of the system
1194 1194
 			// which set hooks ?
1195
-			if ( is_admin() ) {
1195
+			if (is_admin()) {
1196 1196
 				// fire immediately
1197
-				call_user_func( array( $shortcode_class, 'set_hooks_admin' ));
1197
+				call_user_func(array($shortcode_class, 'set_hooks_admin'));
1198 1198
 			} else {
1199 1199
 				// delay until other systems are online
1200
-				add_action( 'AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', array( $shortcode_class,'set_hooks' ));
1200
+				add_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', array($shortcode_class, 'set_hooks'));
1201 1201
 				// convert classname to UPPERCASE and create WP shortcode.
1202
-				$shortcode_tag = strtoupper( $shortcode );
1202
+				$shortcode_tag = strtoupper($shortcode);
1203 1203
 				// but first check if the shortcode has already been added before assigning 'fallback_shortcode_processor'
1204
-				if ( ! shortcode_exists( $shortcode_tag )) {
1204
+				if ( ! shortcode_exists($shortcode_tag)) {
1205 1205
 					// NOTE: this shortcode declaration will get overridden if the shortcode is successfully detected in the post content in EE_Front_Controller->_initialize_shortcodes()
1206
-					add_shortcode( $shortcode_tag, array( $shortcode_class, 'fallback_shortcode_processor' ));
1206
+					add_shortcode($shortcode_tag, array($shortcode_class, 'fallback_shortcode_processor'));
1207 1207
 				}
1208 1208
 			}
1209 1209
 		}
@@ -1220,15 +1220,15 @@  discard block
 block discarded – undo
1220 1220
 	 */
1221 1221
 	private function _initialize_modules() {
1222 1222
 		// cycle thru shortcode folders
1223
-		foreach ( EE_Registry::instance()->modules as $module_class => $module_path ) {
1223
+		foreach (EE_Registry::instance()->modules as $module_class => $module_path) {
1224 1224
 			// fire the shortcode class's set_hooks methods in case it needs to hook into other parts of the system
1225 1225
 			// which set hooks ?
1226
-			if ( is_admin() ) {
1226
+			if (is_admin()) {
1227 1227
 				// fire immediately
1228
-				call_user_func( array( $module_class, 'set_hooks_admin' ));
1228
+				call_user_func(array($module_class, 'set_hooks_admin'));
1229 1229
 			} else {
1230 1230
 				// delay until other systems are online
1231
-				add_action( 'AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', array( $module_class,'set_hooks' ));
1231
+				add_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons', array($module_class, 'set_hooks'));
1232 1232
 			}
1233 1233
 		}
1234 1234
 	}
@@ -1246,26 +1246,26 @@  discard block
 block discarded – undo
1246 1246
 	 *  @param 	string 		$key - url param key indicating a route is being called
1247 1247
 	 *  @return 	bool
1248 1248
 	 */
1249
-	public static function register_route( $route = NULL, $module = NULL, $method_name = NULL, $key = 'ee' ) {
1250
-		do_action( 'AHEE__EE_Config__register_route__begin', $route, $module, $method_name );
1251
-		$module = str_replace( 'EED_', '', $module );
1252
-		$module_class = 'EED_' . $module;
1253
-		if ( ! isset( EE_Registry::instance()->modules->{$module_class} )) {
1254
-			$msg = sprintf( __( 'The module %s has not been registered.', 'event_espresso' ), $module );
1255
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1249
+	public static function register_route($route = NULL, $module = NULL, $method_name = NULL, $key = 'ee') {
1250
+		do_action('AHEE__EE_Config__register_route__begin', $route, $module, $method_name);
1251
+		$module = str_replace('EED_', '', $module);
1252
+		$module_class = 'EED_'.$module;
1253
+		if ( ! isset(EE_Registry::instance()->modules->{$module_class} )) {
1254
+			$msg = sprintf(__('The module %s has not been registered.', 'event_espresso'), $module);
1255
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1256 1256
 			return FALSE;
1257 1257
 		}
1258
-		if ( empty( $route )) {
1259
-			$msg = sprintf( __( 'No route has been supplied.', 'event_espresso' ), $route );
1260
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1258
+		if (empty($route)) {
1259
+			$msg = sprintf(__('No route has been supplied.', 'event_espresso'), $route);
1260
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1261 1261
 			return FALSE;
1262 1262
 		}
1263
-		if ( ! method_exists ( 'EED_' . $module, $method_name )) {
1264
-			$msg = sprintf( __( 'A valid class method for the %s route has not been supplied.', 'event_espresso' ), $route );
1265
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1263
+		if ( ! method_exists('EED_'.$module, $method_name)) {
1264
+			$msg = sprintf(__('A valid class method for the %s route has not been supplied.', 'event_espresso'), $route);
1265
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1266 1266
 			return FALSE;
1267 1267
 		}
1268
-		EE_Config::$_module_route_map[ $key ][ $route ] = array( 'EED_' . $module, $method_name );
1268
+		EE_Config::$_module_route_map[$key][$route] = array('EED_'.$module, $method_name);
1269 1269
 		return TRUE;
1270 1270
 	}
1271 1271
 
@@ -1279,11 +1279,11 @@  discard block
 block discarded – undo
1279 1279
 	 *  @param 	string 		$key - url param key indicating a route is being called
1280 1280
 	 *  @return 	string
1281 1281
 	 */
1282
-	public static function get_route( $route = NULL, $key = 'ee' ) {
1283
-		do_action( 'AHEE__EE_Config__get_route__begin',$route );
1284
-		$route = apply_filters( 'FHEE__EE_Config__get_route',$route );
1285
-		if ( isset( EE_Config::$_module_route_map[ $key ][ $route ] )) {
1286
-			return EE_Config::$_module_route_map[ $key ][ $route ];
1282
+	public static function get_route($route = NULL, $key = 'ee') {
1283
+		do_action('AHEE__EE_Config__get_route__begin', $route);
1284
+		$route = apply_filters('FHEE__EE_Config__get_route', $route);
1285
+		if (isset(EE_Config::$_module_route_map[$key][$route])) {
1286
+			return EE_Config::$_module_route_map[$key][$route];
1287 1287
 		}
1288 1288
 		return NULL;
1289 1289
 	}
@@ -1312,35 +1312,35 @@  discard block
 block discarded – undo
1312 1312
 	 * @param    string 		$key - url param key indicating a route is being called
1313 1313
 	 * @return    bool
1314 1314
 	 */
1315
-	public static function register_forward( $route = NULL, $status = 0, $forward = NULL, $key = 'ee' ) {
1316
-		do_action( 'AHEE__EE_Config__register_forward',$route,$status,$forward );
1317
-		if ( ! isset( EE_Config::$_module_route_map[ $key ][ $route ] ) ||  empty( $route )) {
1318
-			$msg = sprintf( __( 'The module route %s for this forward has not been registered.', 'event_espresso' ), $route );
1319
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1315
+	public static function register_forward($route = NULL, $status = 0, $forward = NULL, $key = 'ee') {
1316
+		do_action('AHEE__EE_Config__register_forward', $route, $status, $forward);
1317
+		if ( ! isset(EE_Config::$_module_route_map[$key][$route]) || empty($route)) {
1318
+			$msg = sprintf(__('The module route %s for this forward has not been registered.', 'event_espresso'), $route);
1319
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1320 1320
 			return FALSE;
1321 1321
 		}
1322
-		if ( empty( $forward )) {
1323
-			$msg = sprintf( __( 'No forwarding route has been supplied.', 'event_espresso' ), $route );
1324
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1322
+		if (empty($forward)) {
1323
+			$msg = sprintf(__('No forwarding route has been supplied.', 'event_espresso'), $route);
1324
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1325 1325
 			return FALSE;
1326 1326
 		}
1327
-		if ( is_array( $forward )) {
1328
-			if ( ! isset( $forward[1] )) {
1329
-				$msg = sprintf( __( 'A class method for the %s forwarding route has not been supplied.', 'event_espresso' ), $route );
1330
-				EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1327
+		if (is_array($forward)) {
1328
+			if ( ! isset($forward[1])) {
1329
+				$msg = sprintf(__('A class method for the %s forwarding route has not been supplied.', 'event_espresso'), $route);
1330
+				EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1331 1331
 				return FALSE;
1332 1332
 			}
1333
-			if ( ! method_exists( $forward[0], $forward[1] )) {
1334
-				$msg = sprintf( __( 'The class method %s for the %s forwarding route is in invalid.', 'event_espresso' ), $forward[1], $route );
1335
-				EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1333
+			if ( ! method_exists($forward[0], $forward[1])) {
1334
+				$msg = sprintf(__('The class method %s for the %s forwarding route is in invalid.', 'event_espresso'), $forward[1], $route);
1335
+				EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1336 1336
 				return FALSE;
1337 1337
 			}
1338
-		} else if ( ! function_exists( $forward )) {
1339
-			$msg = sprintf( __( 'The function %s for the %s forwarding route is in invalid.', 'event_espresso' ), $forward, $route );
1340
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1338
+		} else if ( ! function_exists($forward)) {
1339
+			$msg = sprintf(__('The function %s for the %s forwarding route is in invalid.', 'event_espresso'), $forward, $route);
1340
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1341 1341
 			return FALSE;
1342 1342
 		}
1343
-		EE_Config::$_module_forward_map[ $key ][ $route ][ absint( $status ) ] = $forward;
1343
+		EE_Config::$_module_forward_map[$key][$route][absint($status)] = $forward;
1344 1344
 		return TRUE;
1345 1345
 	}
1346 1346
 
@@ -1355,10 +1355,10 @@  discard block
 block discarded – undo
1355 1355
 	 *  @param    string 		$key - url param key indicating a route is being called
1356 1356
 	 *  @return 	string
1357 1357
 	 */
1358
-	public static function get_forward( $route = NULL, $status = 0, $key = 'ee' ) {
1359
-		do_action( 'AHEE__EE_Config__get_forward__begin',$route,$status );
1360
-		if ( isset( EE_Config::$_module_forward_map[ $key ][ $route ][ $status ] )) {
1361
-			return apply_filters( 'FHEE__EE_Config__get_forward', EE_Config::$_module_forward_map[ $key ][ $route ][ $status ], $route,$status );
1358
+	public static function get_forward($route = NULL, $status = 0, $key = 'ee') {
1359
+		do_action('AHEE__EE_Config__get_forward__begin', $route, $status);
1360
+		if (isset(EE_Config::$_module_forward_map[$key][$route][$status])) {
1361
+			return apply_filters('FHEE__EE_Config__get_forward', EE_Config::$_module_forward_map[$key][$route][$status], $route, $status);
1362 1362
 		}
1363 1363
 		return NULL;
1364 1364
 	}
@@ -1375,19 +1375,19 @@  discard block
 block discarded – undo
1375 1375
 	 * @param    string 		$key - url param key indicating a route is being called
1376 1376
 	 * @return    bool
1377 1377
 	 */
1378
-	public static function register_view( $route = NULL, $status = 0, $view = NULL, $key = 'ee' ) {
1379
-		do_action( 'AHEE__EE_Config__register_view__begin',$route,$status,$view );
1380
-		if ( ! isset( EE_Config::$_module_route_map[ $key ][ $route ] ) ||  empty( $route )) {
1381
-			$msg = sprintf( __( 'The module route %s for this view has not been registered.', 'event_espresso' ), $route );
1382
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1378
+	public static function register_view($route = NULL, $status = 0, $view = NULL, $key = 'ee') {
1379
+		do_action('AHEE__EE_Config__register_view__begin', $route, $status, $view);
1380
+		if ( ! isset(EE_Config::$_module_route_map[$key][$route]) || empty($route)) {
1381
+			$msg = sprintf(__('The module route %s for this view has not been registered.', 'event_espresso'), $route);
1382
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1383 1383
 			return FALSE;
1384 1384
 		}
1385
-		if ( ! is_readable( $view )) {
1386
-			$msg = sprintf( __( 'The %s view file could not be found or is not readable due to file permissions.', 'event_espresso' ), $view );
1387
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
1385
+		if ( ! is_readable($view)) {
1386
+			$msg = sprintf(__('The %s view file could not be found or is not readable due to file permissions.', 'event_espresso'), $view);
1387
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
1388 1388
 			return FALSE;
1389 1389
 		}
1390
-		EE_Config::$_module_view_map[ $key ][ $route ][ absint( $status ) ] = $view;
1390
+		EE_Config::$_module_view_map[$key][$route][absint($status)] = $view;
1391 1391
 		return TRUE;
1392 1392
 	}
1393 1393
 
@@ -1404,10 +1404,10 @@  discard block
 block discarded – undo
1404 1404
 	 *  @param    string 		$key - url param key indicating a route is being called
1405 1405
 	 *  @return 	string
1406 1406
 	 */
1407
-	public static function get_view( $route = NULL, $status = 0, $key = 'ee' ) {
1408
-		do_action( 'AHEE__EE_Config__get_view__begin',$route,$status );
1409
-		if ( isset( EE_Config::$_module_view_map[ $key ][ $route ][ $status ] )) {
1410
-			return apply_filters( 'FHEE__EE_Config__get_view', EE_Config::$_module_view_map[ $key ][ $route ][ $status ], $route,$status );
1407
+	public static function get_view($route = NULL, $status = 0, $key = 'ee') {
1408
+		do_action('AHEE__EE_Config__get_view__begin', $route, $status);
1409
+		if (isset(EE_Config::$_module_view_map[$key][$route][$status])) {
1410
+			return apply_filters('FHEE__EE_Config__get_view', EE_Config::$_module_view_map[$key][$route][$status], $route, $status);
1411 1411
 		}
1412 1412
 		return NULL;
1413 1413
 	}
@@ -1415,7 +1415,7 @@  discard block
 block discarded – undo
1415 1415
 
1416 1416
 
1417 1417
 	public function shutdown() {
1418
-		update_option( 'ee_config_option_names', $this->_config_option_names );
1418
+		update_option('ee_config_option_names', $this->_config_option_names);
1419 1419
 	}
1420 1420
 
1421 1421
 
@@ -1431,7 +1431,7 @@  discard block
 block discarded – undo
1431 1431
  * magic functions in use, except we'll allow them to magically set and get stuff...
1432 1432
  * basically, they should just be well-defined stdClasses
1433 1433
  */
1434
-class EE_Config_Base{
1434
+class EE_Config_Base {
1435 1435
 
1436 1436
 	/**
1437 1437
 	 * Utility function for escaping the value of a property and returning.
@@ -1440,13 +1440,13 @@  discard block
 block discarded – undo
1440 1440
 	 * @return mixed if a detected type found return the escaped value, otherwise just the raw value is returned.
1441 1441
 	 * @throws \EE_Error
1442 1442
 	 */
1443
-	public function get_pretty( $property ) {
1444
-		if ( ! property_exists( $this, $property ) ) {
1445
-			throw new EE_Error( sprintf( __('%1$s::get_pretty() has been called with the property %2$s which does not exist on the %1$s config class.', 'event_espresso' ), get_class( $this ), $property ) );
1443
+	public function get_pretty($property) {
1444
+		if ( ! property_exists($this, $property)) {
1445
+			throw new EE_Error(sprintf(__('%1$s::get_pretty() has been called with the property %2$s which does not exist on the %1$s config class.', 'event_espresso'), get_class($this), $property));
1446 1446
 		}
1447 1447
 		//just handling escaping of strings for now.
1448
-		if ( is_string( $this->{$property} ) ) {
1449
-			return stripslashes( $this->{$property} );
1448
+		if (is_string($this->{$property} )) {
1449
+			return stripslashes($this->{$property} );
1450 1450
 		}
1451 1451
 		return $this->{$property};
1452 1452
 	}
@@ -1455,19 +1455,19 @@  discard block
 block discarded – undo
1455 1455
 
1456 1456
 	public function populate() {
1457 1457
 		//grab defaults via a new instance of this class.
1458
-		$class_name = get_class( $this );
1458
+		$class_name = get_class($this);
1459 1459
 		$defaults = new $class_name;
1460 1460
 
1461 1461
 		//loop through the properties for this class and see if they are set.  If they are NOT, then grab the
1462 1462
 		//default from our $defaults object.
1463
-		foreach ( get_object_vars( $defaults ) as $property => $value ) {
1464
-			if ( is_null( $this->{$property} ) ) {
1463
+		foreach (get_object_vars($defaults) as $property => $value) {
1464
+			if (is_null($this->{$property} )) {
1465 1465
 				$this->{$property} = $value;
1466 1466
 			}
1467 1467
 		}
1468 1468
 
1469 1469
 		//cleanup
1470
-		unset( $defaults );
1470
+		unset($defaults);
1471 1471
 	}
1472 1472
 
1473 1473
 
@@ -1559,12 +1559,12 @@  discard block
 block discarded – undo
1559 1559
 	 */
1560 1560
 	public function __construct() {
1561 1561
 		$current_network_main_site = is_multisite() ? get_current_site() : NULL;
1562
-		$current_main_site_id = !empty( $current_network_main_site ) ? $current_network_main_site->blog_id : 1;
1562
+		$current_main_site_id = ! empty($current_network_main_site) ? $current_network_main_site->blog_id : 1;
1563 1563
 		// set default organization settings
1564 1564
 		$this->current_blog_id = get_current_blog_id();
1565 1565
 		$this->current_blog_id = $this->current_blog_id === NULL ? 1 : $this->current_blog_id;
1566
-		$this->ee_ueip_optin = is_main_site() ? get_option( 'ee_ueip_optin', TRUE ) : get_blog_option( $current_main_site_id, 'ee_ueip_optin', TRUE );
1567
-		$this->ee_ueip_has_notified = is_main_site() ? get_option( 'ee_ueip_has_notified', FALSE ) : TRUE;
1566
+		$this->ee_ueip_optin = is_main_site() ? get_option('ee_ueip_optin', TRUE) : get_blog_option($current_main_site_id, 'ee_ueip_optin', TRUE);
1567
+		$this->ee_ueip_has_notified = is_main_site() ? get_option('ee_ueip_has_notified', FALSE) : TRUE;
1568 1568
 		$this->post_shortcodes = array();
1569 1569
 		$this->module_route_map = array();
1570 1570
 		$this->module_forward_map = array();
@@ -1583,7 +1583,7 @@  discard block
 block discarded – undo
1583 1583
 		$this->event_cpt_slug = __('events', 'event_espresso');
1584 1584
 
1585 1585
 		//ueip constant check
1586
-		if ( defined( 'EE_DISABLE_UXIP' ) && EE_DISABLE_UXIP ) {
1586
+		if (defined('EE_DISABLE_UXIP') && EE_DISABLE_UXIP) {
1587 1587
 			$this->ee_ueip_optin = FALSE;
1588 1588
 			$this->ee_ueip_has_notified = TRUE;
1589 1589
 		}
@@ -1623,8 +1623,8 @@  discard block
 block discarded – undo
1623 1623
 	 *  @return 	string
1624 1624
 	 */
1625 1625
 	public function reg_page_url() {
1626
-		if ( ! $this->reg_page_url ) {
1627
-			$this->reg_page_url = get_permalink( $this->reg_page_id ) . '#checkout';
1626
+		if ( ! $this->reg_page_url) {
1627
+			$this->reg_page_url = get_permalink($this->reg_page_id).'#checkout';
1628 1628
 		}
1629 1629
 		return $this->reg_page_url;
1630 1630
 	}
@@ -1637,12 +1637,12 @@  discard block
 block discarded – undo
1637 1637
 	 *  @return 	string
1638 1638
 	 */
1639 1639
 	public function txn_page_url($query_args = array()) {
1640
-		if ( ! $this->txn_page_url ) {
1641
-			$this->txn_page_url = get_permalink( $this->txn_page_id );
1640
+		if ( ! $this->txn_page_url) {
1641
+			$this->txn_page_url = get_permalink($this->txn_page_id);
1642 1642
 		}
1643
-		if($query_args){
1644
-			return add_query_arg($query_args,$this->txn_page_url);
1645
-		}else{
1643
+		if ($query_args) {
1644
+			return add_query_arg($query_args, $this->txn_page_url);
1645
+		} else {
1646 1646
 			return $this->txn_page_url;
1647 1647
 		}
1648 1648
 	}
@@ -1654,12 +1654,12 @@  discard block
 block discarded – undo
1654 1654
 	 *  @return 	string
1655 1655
 	 */
1656 1656
 	public function thank_you_page_url($query_args = array()) {
1657
-		if ( ! $this->thank_you_page_url ) {
1658
-			$this->thank_you_page_url = get_permalink( $this->thank_you_page_id );
1657
+		if ( ! $this->thank_you_page_url) {
1658
+			$this->thank_you_page_url = get_permalink($this->thank_you_page_id);
1659 1659
 		}
1660
-		if($query_args){
1661
-			return add_query_arg($query_args,$this->thank_you_page_url);
1662
-		}else{
1660
+		if ($query_args) {
1661
+			return add_query_arg($query_args, $this->thank_you_page_url);
1662
+		} else {
1663 1663
 			return $this->thank_you_page_url;
1664 1664
 		}
1665 1665
 	}
@@ -1670,8 +1670,8 @@  discard block
 block discarded – undo
1670 1670
 	 *  @return 	string
1671 1671
 	 */
1672 1672
 	public function cancel_page_url() {
1673
-		if ( ! $this->cancel_page_url ) {
1674
-			$this->cancel_page_url = get_permalink( $this->cancel_page_id );
1673
+		if ( ! $this->cancel_page_url) {
1674
+			$this->cancel_page_url = get_permalink($this->cancel_page_id);
1675 1675
 		}
1676 1676
 		return $this->cancel_page_url;
1677 1677
 	}
@@ -1699,7 +1699,7 @@  discard block
 block discarded – undo
1699 1699
 		//reset all url properties
1700 1700
 		$this->_reset_urls();
1701 1701
 		//return what to save to db
1702
-		return array_keys( get_object_vars( $this ) );
1702
+		return array_keys(get_object_vars($this));
1703 1703
 	}
1704 1704
 
1705 1705
 }
@@ -1931,39 +1931,39 @@  discard block
 block discarded – undo
1931 1931
 	 * @param null $CNT_ISO
1932 1932
 	 * @return \EE_Currency_Config
1933 1933
 	 */
1934
-	public function __construct( $CNT_ISO = NULL ) {
1934
+	public function __construct($CNT_ISO = NULL) {
1935 1935
 
1936 1936
 		// get country code from organization settings or use default
1937
-		$ORG_CNT = isset( EE_Registry::instance()->CFG->organization ) && EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ? EE_Registry::instance()->CFG->organization->CNT_ISO : NULL;
1937
+		$ORG_CNT = isset(EE_Registry::instance()->CFG->organization) && EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ? EE_Registry::instance()->CFG->organization->CNT_ISO : NULL;
1938 1938
 		// but override if requested
1939
-		$CNT_ISO = ! empty( $CNT_ISO ) ? $CNT_ISO : $ORG_CNT;
1940
-		EE_Registry::instance()->load_helper( 'Activation' );
1939
+		$CNT_ISO = ! empty($CNT_ISO) ? $CNT_ISO : $ORG_CNT;
1940
+		EE_Registry::instance()->load_helper('Activation');
1941 1941
 		// so if that all went well, and we are not in M-Mode (cuz you can't query the db in M-Mode) and double-check the countries table exists
1942
-		if ( ! empty( $CNT_ISO ) && EE_Maintenance_Mode::instance()->models_can_query() && EEH_Activation::table_exists( EE_Registry::instance()->load_model( 'Country' )->table() ) ) {
1942
+		if ( ! empty($CNT_ISO) && EE_Maintenance_Mode::instance()->models_can_query() && EEH_Activation::table_exists(EE_Registry::instance()->load_model('Country')->table())) {
1943 1943
 			// retrieve the country settings from the db, just in case they have been customized
1944
-			$country = EE_Registry::instance()->load_model( 'Country' )->get_one_by_ID( $CNT_ISO );
1945
-			if ( $country instanceof EE_Country ) {
1946
-				$this->code = $country->currency_code(); 	// currency code: USD, CAD, EUR
1947
-				$this->name = $country->currency_name_single();	// Dollar
1948
-				$this->plural = $country->currency_name_plural(); 	// Dollars
1949
-				$this->sign =  $country->currency_sign(); 			// currency sign: $
1950
-				$this->sign_b4 = $country->currency_sign_before(); 		// currency sign before or after: $TRUE  or  FALSE$
1951
-				$this->dec_plc = $country->currency_decimal_places();	// decimal places: 2 = 0.00  3 = 0.000
1952
-				$this->dec_mrk = $country->currency_decimal_mark();	// decimal mark: (comma) ',' = 0,01   or (decimal) '.' = 0.01
1953
-				$this->thsnds = $country->currency_thousands_separator();	// thousands separator: (comma) ',' = 1,000   or (decimal) '.' = 1.000
1944
+			$country = EE_Registry::instance()->load_model('Country')->get_one_by_ID($CNT_ISO);
1945
+			if ($country instanceof EE_Country) {
1946
+				$this->code = $country->currency_code(); // currency code: USD, CAD, EUR
1947
+				$this->name = $country->currency_name_single(); // Dollar
1948
+				$this->plural = $country->currency_name_plural(); // Dollars
1949
+				$this->sign = $country->currency_sign(); // currency sign: $
1950
+				$this->sign_b4 = $country->currency_sign_before(); // currency sign before or after: $TRUE  or  FALSE$
1951
+				$this->dec_plc = $country->currency_decimal_places(); // decimal places: 2 = 0.00  3 = 0.000
1952
+				$this->dec_mrk = $country->currency_decimal_mark(); // decimal mark: (comma) ',' = 0,01   or (decimal) '.' = 0.01
1953
+				$this->thsnds = $country->currency_thousands_separator(); // thousands separator: (comma) ',' = 1,000   or (decimal) '.' = 1.000
1954 1954
 			}
1955 1955
 		}
1956 1956
 		// fallback to hardcoded defaults, in case the above failed
1957
-		if ( empty( $this->code )) {
1957
+		if (empty($this->code)) {
1958 1958
 			// set default currency settings
1959
-			$this->code = 'USD'; 	// currency code: USD, CAD, EUR
1960
-			$this->name = __( 'Dollar', 'event_espresso' ); 	// Dollar
1961
-			$this->plural = __( 'Dollars', 'event_espresso' ); 	// Dollars
1962
-			$this->sign =  '$'; 	// currency sign: $
1963
-			$this->sign_b4 = TRUE; 	// currency sign before or after: $TRUE  or  FALSE$
1964
-			$this->dec_plc = 2; 	// decimal places: 2 = 0.00  3 = 0.000
1965
-			$this->dec_mrk = '.'; 	// decimal mark: (comma) ',' = 0,01   or (decimal) '.' = 0.01
1966
-			$this->thsnds = ','; 	// thousands separator: (comma) ',' = 1,000   or (decimal) '.' = 1.000
1959
+			$this->code = 'USD'; // currency code: USD, CAD, EUR
1960
+			$this->name = __('Dollar', 'event_espresso'); // Dollar
1961
+			$this->plural = __('Dollars', 'event_espresso'); // Dollars
1962
+			$this->sign = '$'; // currency sign: $
1963
+			$this->sign_b4 = TRUE; // currency sign before or after: $TRUE  or  FALSE$
1964
+			$this->dec_plc = 2; // decimal places: 2 = 0.00  3 = 0.000
1965
+			$this->dec_mrk = '.'; // decimal mark: (comma) ',' = 0,01   or (decimal) '.' = 0.01
1966
+			$this->thsnds = ','; // thousands separator: (comma) ',' = 1,000   or (decimal) '.' = 1.000
1967 1967
 		}
1968 1968
 	}
1969 1969
 }
@@ -2103,7 +2103,7 @@  discard block
 block discarded – undo
2103 2103
 	 * @since 4.8.8.rc.019
2104 2104
 	 */
2105 2105
 	public function do_hooks() {
2106
-		add_action( 'AHEE__EE_Config___load_core_config__end', array( $this, 'set_default_reg_status_on_EEM_Event' ));
2106
+		add_action('AHEE__EE_Config___load_core_config__end', array($this, 'set_default_reg_status_on_EEM_Event'));
2107 2107
 	}
2108 2108
 
2109 2109
 
@@ -2111,7 +2111,7 @@  discard block
 block discarded – undo
2111 2111
 	 * @return void
2112 2112
 	 */
2113 2113
 	public function set_default_reg_status_on_EEM_Event() {
2114
-		EEM_Event::set_default_reg_status( $this->default_STS_ID );
2114
+		EEM_Event::set_default_reg_status($this->default_STS_ID);
2115 2115
 	}
2116 2116
 
2117 2117
 
@@ -2216,10 +2216,10 @@  discard block
 block discarded – undo
2216 2216
 	 * @param bool $reset
2217 2217
 	 * @return string
2218 2218
 	 */
2219
-	public function log_file_name( $reset = FALSE ) {
2220
-		if ( empty( $this->log_file_name ) || $reset ) {
2221
-			$this->log_file_name = sanitize_key( 'espresso_log_' . md5( uniqid( '', TRUE ))) . '.txt';
2222
-			EE_Config::instance()->update_espresso_config( FALSE, FALSE );
2219
+	public function log_file_name($reset = FALSE) {
2220
+		if (empty($this->log_file_name) || $reset) {
2221
+			$this->log_file_name = sanitize_key('espresso_log_'.md5(uniqid('', TRUE))).'.txt';
2222
+			EE_Config::instance()->update_espresso_config(FALSE, FALSE);
2223 2223
 		}
2224 2224
 		return $this->log_file_name;
2225 2225
 	}
@@ -2231,10 +2231,10 @@  discard block
 block discarded – undo
2231 2231
 	 * @param bool $reset
2232 2232
 	 * @return string
2233 2233
 	 */
2234
-	public function debug_file_name( $reset = FALSE ) {
2235
-		if ( empty( $this->debug_file_name ) || $reset ) {
2236
-			$this->debug_file_name = sanitize_key( 'espresso_debug_' . md5( uniqid( '', TRUE ))) . '.txt';
2237
-			EE_Config::instance()->update_espresso_config( FALSE, FALSE );
2234
+	public function debug_file_name($reset = FALSE) {
2235
+		if (empty($this->debug_file_name) || $reset) {
2236
+			$this->debug_file_name = sanitize_key('espresso_debug_'.md5(uniqid('', TRUE))).'.txt';
2237
+			EE_Config::instance()->update_espresso_config(FALSE, FALSE);
2238 2238
 		}
2239 2239
 		return $this->debug_file_name;
2240 2240
 	}
@@ -2407,21 +2407,21 @@  discard block
 block discarded – undo
2407 2407
 		// set default map settings
2408 2408
 		$this->use_google_maps = TRUE;
2409 2409
 		// for event details pages (reg page)
2410
-		$this->event_details_map_width = 585; 			// ee_map_width_single
2411
-		$this->event_details_map_height = 362; 			// ee_map_height_single
2412
-		$this->event_details_map_zoom = 14; 			// ee_map_zoom_single
2413
-		$this->event_details_display_nav = TRUE; 			// ee_map_nav_display_single
2414
-		$this->event_details_nav_size = FALSE; 			// ee_map_nav_size_single
2415
-		$this->event_details_control_type = 'default'; 		// ee_map_type_control_single
2416
-		$this->event_details_map_align = 'center'; 			// ee_map_align_single
2410
+		$this->event_details_map_width = 585; // ee_map_width_single
2411
+		$this->event_details_map_height = 362; // ee_map_height_single
2412
+		$this->event_details_map_zoom = 14; // ee_map_zoom_single
2413
+		$this->event_details_display_nav = TRUE; // ee_map_nav_display_single
2414
+		$this->event_details_nav_size = FALSE; // ee_map_nav_size_single
2415
+		$this->event_details_control_type = 'default'; // ee_map_type_control_single
2416
+		$this->event_details_map_align = 'center'; // ee_map_align_single
2417 2417
 		// for event list pages
2418
-		$this->event_list_map_width = 300; 			// ee_map_width
2419
-		$this->event_list_map_height = 185; 		// ee_map_height
2420
-		$this->event_list_map_zoom = 12; 			// ee_map_zoom
2421
-		$this->event_list_display_nav = FALSE; 		// ee_map_nav_display
2422
-		$this->event_list_nav_size = TRUE; 			// ee_map_nav_size
2423
-		$this->event_list_control_type = 'dropdown'; 		// ee_map_type_control
2424
-		$this->event_list_map_align = 'center'; 			// ee_map_align
2418
+		$this->event_list_map_width = 300; // ee_map_width
2419
+		$this->event_list_map_height = 185; // ee_map_height
2420
+		$this->event_list_map_zoom = 12; // ee_map_zoom
2421
+		$this->event_list_display_nav = FALSE; // ee_map_nav_display
2422
+		$this->event_list_nav_size = TRUE; // ee_map_nav_size
2423
+		$this->event_list_control_type = 'dropdown'; // ee_map_type_control
2424
+		$this->event_list_map_align = 'center'; // ee_map_align
2425 2425
 	}
2426 2426
 
2427 2427
 }
@@ -2432,7 +2432,7 @@  discard block
 block discarded – undo
2432 2432
 /**
2433 2433
  * stores Events_Archive settings
2434 2434
  */
2435
-class EE_Events_Archive_Config extends EE_Config_Base{
2435
+class EE_Events_Archive_Config extends EE_Config_Base {
2436 2436
 
2437 2437
 	public $display_status_banner;
2438 2438
 	public $display_description;
@@ -2451,7 +2451,7 @@  discard block
 block discarded – undo
2451 2451
 	/**
2452 2452
 	 *	class constructor
2453 2453
 	 */
2454
-	public function __construct(){
2454
+	public function __construct() {
2455 2455
 		$this->display_status_banner = 0;
2456 2456
 		$this->display_description = 1;
2457 2457
 		$this->display_ticket_selector = 0;
@@ -2471,7 +2471,7 @@  discard block
 block discarded – undo
2471 2471
 /**
2472 2472
  * Stores Event_Single_Config settings
2473 2473
  */
2474
-class EE_Event_Single_Config extends EE_Config_Base{
2474
+class EE_Event_Single_Config extends EE_Config_Base {
2475 2475
 
2476 2476
 	public $display_status_banner_single;
2477 2477
 	public $display_venue;
@@ -2500,7 +2500,7 @@  discard block
 block discarded – undo
2500 2500
 /**
2501 2501
  * Stores Ticket_Selector_Config settings
2502 2502
  */
2503
-class EE_Ticket_Selector_Config extends EE_Config_Base{
2503
+class EE_Ticket_Selector_Config extends EE_Config_Base {
2504 2504
 	public $show_ticket_sale_columns;
2505 2505
 	public $show_ticket_details;
2506 2506
 	public $show_expired_tickets;
@@ -2554,7 +2554,7 @@  discard block
 block discarded – undo
2554 2554
 	 * @return void
2555 2555
 	 */
2556 2556
 	protected function _set_php_values() {
2557
-		$this->php->max_input_vars = ini_get( 'max_input_vars' );
2557
+		$this->php->max_input_vars = ini_get('max_input_vars');
2558 2558
 		$this->php->version = phpversion();
2559 2559
 	}
2560 2560
 
@@ -2573,8 +2573,8 @@  discard block
 block discarded – undo
2573 2573
 	 *         @type string $msg 		Any message to be displayed.
2574 2574
 	 * }
2575 2575
 	 */
2576
-	public function max_input_vars_limit_check( $input_count = 0 ) {
2577
-		if ( ( $input_count >= $this->php->max_input_vars ) && ( PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 3 && PHP_RELEASE_VERSION >=9 ) ) {
2576
+	public function max_input_vars_limit_check($input_count = 0) {
2577
+		if (($input_count >= $this->php->max_input_vars) && (PHP_MAJOR_VERSION >= 5 && PHP_MINOR_VERSION >= 3 && PHP_RELEASE_VERSION >= 9)) {
2578 2578
 			return  __('The number of inputs on this page has been exceeded.  You cannot add anymore items (i.e. tickets, datetimes, custom fields) on this page because of your servers PHP "max_input_vars" setting.', 'event_espresso');
2579 2579
 		} else {
2580 2580
 			return '';
@@ -2610,7 +2610,7 @@  discard block
 block discarded – undo
2610 2610
  * stores payment gateway info
2611 2611
  * @deprecated
2612 2612
  */
2613
-class EE_Gateway_Config extends EE_Config_Base{
2613
+class EE_Gateway_Config extends EE_Config_Base {
2614 2614
 
2615 2615
 	/**
2616 2616
 	 * Array with keys that are payment gateways slugs, and values are arrays
@@ -2632,9 +2632,9 @@  discard block
 block discarded – undo
2632 2632
 	 *	class constructor
2633 2633
 	 * @deprecated
2634 2634
 	 */
2635
-	public function __construct(){
2635
+	public function __construct() {
2636 2636
 		$this->payment_settings = array();
2637
-		$this->active_gateways = array( 'Invoice' => FALSE );
2637
+		$this->active_gateways = array('Invoice' => FALSE);
2638 2638
 	}
2639 2639
 }
2640 2640
 
Please login to merge, or discard this patch.
core/EE_Front_Controller.core.php 1 patch
Spacing   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	 */
62 62
 	public static function instance() {
63 63
 		// check if class object is instantiated, and instantiated properly
64
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof  EE_Front_Controller )) {
64
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof  EE_Front_Controller)) {
65 65
 			self::$_instance = new self();
66 66
 		}
67 67
 		return self::$_instance;
@@ -79,37 +79,37 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
 	private function __construct() {
81 81
 		// make sure template tags are loaded immediately so that themes don't break
82
-		add_action( 'AHEE__EE_System__core_loaded_and_ready', array( $this, 'load_espresso_template_tags' ), 10 );
82
+		add_action('AHEE__EE_System__core_loaded_and_ready', array($this, 'load_espresso_template_tags'), 10);
83 83
 		// determine how to integrate WP_Query with the EE models
84
-		add_action( 'AHEE__EE_System__initialize', array( $this, 'employ_CPT_Strategy' ));
84
+		add_action('AHEE__EE_System__initialize', array($this, 'employ_CPT_Strategy'));
85 85
 		// load other resources and begin to actually run shortcodes and modules
86
-		add_action( 'wp_loaded', array( $this, 'wp_loaded' ), 5 );
86
+		add_action('wp_loaded', array($this, 'wp_loaded'), 5);
87 87
 		// analyse the incoming WP request
88
-		add_action( 'parse_request', array( $this, 'get_request' ), 1, 1 );
88
+		add_action('parse_request', array($this, 'get_request'), 1, 1);
89 89
 		// process any content shortcodes
90
-		add_action( 'parse_request', array( $this, '_initialize_shortcodes' ), 5 );
90
+		add_action('parse_request', array($this, '_initialize_shortcodes'), 5);
91 91
 		// process request with module factory
92
-		add_action( 'pre_get_posts', array( $this, 'pre_get_posts' ), 10, 1 );
92
+		add_action('pre_get_posts', array($this, 'pre_get_posts'), 10, 1);
93 93
 		// before headers sent
94
-		add_action( 'wp', array( $this, 'wp' ), 5 );
94
+		add_action('wp', array($this, 'wp'), 5);
95 95
 		// load css and js
96
-		add_action('wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ), 1 );
96
+		add_action('wp_enqueue_scripts', array($this, 'wp_enqueue_scripts'), 1);
97 97
 		// header
98
-		add_action('wp_head', array( $this, 'header_meta_tag' ), 5 );
99
-		add_filter( 'template_include', array( $this, 'template_include' ), 1 );
98
+		add_action('wp_head', array($this, 'header_meta_tag'), 5);
99
+		add_filter('template_include', array($this, 'template_include'), 1);
100 100
 		// display errors
101
-		add_action('loop_start', array( $this, 'display_errors' ), 2 );
101
+		add_action('loop_start', array($this, 'display_errors'), 2);
102 102
 		// the content
103
-		add_filter( 'the_content', array( $this, 'the_content' ), 5, 1 );
103
+		add_filter('the_content', array($this, 'the_content'), 5, 1);
104 104
 		//exclude our private cpt comments
105
-		add_filter( 'comments_clauses', array( $this, 'filter_wp_comments'), 10, 1 );
105
+		add_filter('comments_clauses', array($this, 'filter_wp_comments'), 10, 1);
106 106
 		//make sure any ajax requests will respect the url schema when requests are made against admin-ajax.php (http:// or https://)
107
-		add_filter( 'admin_url', array( $this, 'maybe_force_admin_ajax_ssl' ), 200, 1 );
107
+		add_filter('admin_url', array($this, 'maybe_force_admin_ajax_ssl'), 200, 1);
108 108
 		// action hook EE
109
-		do_action( 'AHEE__EE_Front_Controller__construct__done',$this );
109
+		do_action('AHEE__EE_Front_Controller__construct__done', $this);
110 110
 		// for checking that browser cookies are enabled
111
-		if ( apply_filters( 'FHEE__EE_Front_Controller____construct__set_test_cookie', true )) {
112
-			setcookie( 'ee_cookie_test', uniqid(), time() + 24 * HOUR_IN_SECONDS, '/' );
111
+		if (apply_filters('FHEE__EE_Front_Controller____construct__set_test_cookie', true)) {
112
+			setcookie('ee_cookie_test', uniqid(), time() + 24 * HOUR_IN_SECONDS, '/');
113 113
 		}
114 114
 	}
115 115
 
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
 	 * 	@return void
130 130
 	 */
131 131
 	public function load_espresso_template_tags() {
132
-		if ( is_readable( EE_PUBLIC . 'template_tags.php' )) {
133
-			require_once( EE_PUBLIC . 'template_tags.php' );
132
+		if (is_readable(EE_PUBLIC.'template_tags.php')) {
133
+			require_once(EE_PUBLIC.'template_tags.php');
134 134
 		}
135 135
 	}
136 136
 
@@ -145,12 +145,12 @@  discard block
 block discarded – undo
145 145
 	 * @param  array $clauses array of comment clauses setup by WP_Comment_Query
146 146
 	 * @return array array of comment clauses with modifications.
147 147
 	 */
148
-	public function filter_wp_comments( $clauses ) {
148
+	public function filter_wp_comments($clauses) {
149 149
 		global $wpdb;
150
-		if ( strpos( $clauses['join'], $wpdb->posts ) !== FALSE ) {
150
+		if (strpos($clauses['join'], $wpdb->posts) !== FALSE) {
151 151
 			$cpts = EE_Register_CPTs::get_private_CPTs();
152
-			foreach ( $cpts as $cpt => $details ) {
153
-				$clauses['where'] .= $wpdb->prepare( " AND $wpdb->posts.post_type != %s", $cpt );
152
+			foreach ($cpts as $cpt => $details) {
153
+				$clauses['where'] .= $wpdb->prepare(" AND $wpdb->posts.post_type != %s", $cpt);
154 154
 			}
155 155
 		}
156 156
 		return $clauses;
@@ -167,8 +167,8 @@  discard block
 block discarded – undo
167 167
 	 *  @return 	void
168 168
 	 */
169 169
 	public function employ_CPT_Strategy() {
170
-		if ( apply_filters( 'FHEE__EE_Front_Controller__employ_CPT_Strategy',true) ){
171
-			EE_Registry::instance()->load_core( 'CPT_Strategy' );
170
+		if (apply_filters('FHEE__EE_Front_Controller__employ_CPT_Strategy', true)) {
171
+			EE_Registry::instance()->load_core('CPT_Strategy');
172 172
 		}
173 173
 	}
174 174
 
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
 	 * @param  string $url    incoming url
181 181
 	 * @return string         final assembled url
182 182
 	 */
183
-	public function maybe_force_admin_ajax_ssl( $url ) {
184
-		if ( is_ssl() && preg_match( '/admin-ajax.php/', $url )) {
185
-			$url = str_replace( 'http://', 'https://', $url );
183
+	public function maybe_force_admin_ajax_ssl($url) {
184
+		if (is_ssl() && preg_match('/admin-ajax.php/', $url)) {
185
+			$url = str_replace('http://', 'https://', $url);
186 186
 		}
187 187
 		return $url;
188 188
 	}
@@ -219,12 +219,12 @@  discard block
 block discarded – undo
219 219
 	 * @param WP $WP
220 220
 	 * @return void
221 221
 	 */
222
-	public function get_request( WP $WP ) {
223
-		do_action( 'AHEE__EE_Front_Controller__get_request__start' );
222
+	public function get_request(WP $WP) {
223
+		do_action('AHEE__EE_Front_Controller__get_request__start');
224 224
 		/** @var EE_Request_Handler $Request_Handler */
225
-		$Request_Handler = EE_Registry::instance()->load_core( 'Request_Handler' );
226
-		$Request_Handler->parse_request( $WP );
227
-		do_action( 'AHEE__EE_Front_Controller__get_request__complete' );
225
+		$Request_Handler = EE_Registry::instance()->load_core('Request_Handler');
226
+		$Request_Handler->parse_request($WP);
227
+		do_action('AHEE__EE_Front_Controller__get_request__complete');
228 228
 	}
229 229
 
230 230
 
@@ -236,22 +236,22 @@  discard block
 block discarded – undo
236 236
 	 * @param WP $WP
237 237
 	 * @return    void
238 238
 	 */
239
-	public function _initialize_shortcodes( WP $WP ) {
240
-		do_action( 'AHEE__EE_Front_Controller__initialize_shortcodes__begin', $WP, $this );
239
+	public function _initialize_shortcodes(WP $WP) {
240
+		do_action('AHEE__EE_Front_Controller__initialize_shortcodes__begin', $WP, $this);
241 241
 		// grab post_name from request
242
-		$current_post = apply_filters( 'FHEE__EE_Front_Controller__initialize_shortcodes__current_post_name', EE_Registry::instance()->REQ->get( 'post_name' ));
242
+		$current_post = apply_filters('FHEE__EE_Front_Controller__initialize_shortcodes__current_post_name', EE_Registry::instance()->REQ->get('post_name'));
243 243
 		// if it's not set, then check if frontpage is blog
244
-		if ( empty( $current_post ) && get_option( 'show_on_front' ) == 'posts' ) {
244
+		if (empty($current_post) && get_option('show_on_front') == 'posts') {
245 245
 			// yup.. this is the posts page, prepare to load all shortcode modules
246 246
 			$current_post = 'posts';
247
-		} else if ( empty( $current_post ) && get_option( 'show_on_front' ) == 'page' ) {
247
+		} else if (empty($current_post) && get_option('show_on_front') == 'page') {
248 248
 			// some other page is set as the homepage
249
-			$page_on_front = get_option( 'page_on_front' );
250
-			if ( $page_on_front ) {
249
+			$page_on_front = get_option('page_on_front');
250
+			if ($page_on_front) {
251 251
 				// k now we need to find the post_name for this page
252 252
 				global $wpdb;
253 253
 				$SQL = "SELECT post_name from $wpdb->posts WHERE post_type='page' AND post_status='publish' AND ID=%d";
254
-				$page_on_front = $wpdb->get_var( $wpdb->prepare( $SQL, $page_on_front ));
254
+				$page_on_front = $wpdb->get_var($wpdb->prepare($SQL, $page_on_front));
255 255
 				// set the current post slug to what it actually is
256 256
 				$current_post = $page_on_front ? $page_on_front : $current_post;
257 257
 			}
@@ -259,58 +259,58 @@  discard block
 block discarded – undo
259 259
 		// where are posts being displayed ?
260 260
 		$page_for_posts = EE_Config::get_page_for_posts();
261 261
 		// in case $current_post is hierarchical like: /parent-page/current-page
262
-		$current_post = basename( $current_post );
262
+		$current_post = basename($current_post);
263 263
 		// are we on a category page?
264
-		$term_exists = is_array( term_exists( $current_post, 'category' )) || array_key_exists( 'category_name', $WP->query_vars );
264
+		$term_exists = is_array(term_exists($current_post, 'category')) || array_key_exists('category_name', $WP->query_vars);
265 265
 		// make sure shortcodes are set
266
-		if ( isset( EE_Registry::instance()->CFG->core->post_shortcodes )) {
266
+		if (isset(EE_Registry::instance()->CFG->core->post_shortcodes)) {
267 267
 			// d( EE_Registry::instance()->CFG->core->post_shortcodes );
268 268
 			// cycle thru all posts with shortcodes set
269
-			foreach ( EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $post_shortcodes ) {
269
+			foreach (EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $post_shortcodes) {
270 270
 				// filter shortcodes so
271
-				$post_shortcodes = apply_filters( 'FHEE__Front_Controller__initialize_shortcodes__post_shortcodes', $post_shortcodes );
271
+				$post_shortcodes = apply_filters('FHEE__Front_Controller__initialize_shortcodes__post_shortcodes', $post_shortcodes);
272 272
 				// now cycle thru shortcodes
273
-				foreach ( $post_shortcodes as $shortcode_class => $post_id ) {
273
+				foreach ($post_shortcodes as $shortcode_class => $post_id) {
274 274
 					// are we on this page, or on the blog page, or an EE CPT category page ?
275
-					if ( $current_post == $post_name || $term_exists ) {
275
+					if ($current_post == $post_name || $term_exists) {
276 276
 						// verify shortcode is in list of registered shortcodes
277
-						if ( ! isset( EE_Registry::instance()->shortcodes->{$shortcode_class} )) {
278
-							if ( $current_post != $page_for_posts && current_user_can( 'edit_post', $post_id )) {
279
-								$msg = sprintf( __( 'The [%s] shortcode has not been properly registered or the corresponding addon/module is not active for some reason. Either fix/remove the shortcode from the post, or activate the addon/module the shortcode is associated with.', 'event_espresso' ), $shortcode_class );
280
-								EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
281
-								add_filter( 'FHEE_run_EE_the_content', '__return_true' );
277
+						if ( ! isset(EE_Registry::instance()->shortcodes->{$shortcode_class} )) {
278
+							if ($current_post != $page_for_posts && current_user_can('edit_post', $post_id)) {
279
+								$msg = sprintf(__('The [%s] shortcode has not been properly registered or the corresponding addon/module is not active for some reason. Either fix/remove the shortcode from the post, or activate the addon/module the shortcode is associated with.', 'event_espresso'), $shortcode_class);
280
+								EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
281
+								add_filter('FHEE_run_EE_the_content', '__return_true');
282 282
 							}
283
-							add_shortcode( $shortcode_class, array( 'EES_Shortcode', 'invalid_shortcode_processor' ));
283
+							add_shortcode($shortcode_class, array('EES_Shortcode', 'invalid_shortcode_processor'));
284 284
 							continue;
285 285
 						}
286 286
 						// is this : a shortcodes set exclusively for this post, or for the home page, or a category, or a taxonomy ?
287
-						if ( isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $current_post ] ) || $term_exists || $current_post == $page_for_posts ) {
287
+						if (isset(EE_Registry::instance()->CFG->core->post_shortcodes[$current_post]) || $term_exists || $current_post == $page_for_posts) {
288 288
 							// let's pause to reflect on this...
289
-							$sc_reflector = new ReflectionClass( 'EES_' . $shortcode_class );
289
+							$sc_reflector = new ReflectionClass('EES_'.$shortcode_class);
290 290
 							// ensure that class is actually a shortcode
291
-							if ( ! $sc_reflector->isSubclassOf( 'EES_Shortcode' ) && defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE ) {
292
-								$msg = sprintf( __( 'The requested %s shortcode is not of the class "EES_Shortcode". Please check your files.', 'event_espresso' ), $shortcode_class );
293
-								EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
294
-								add_filter( 'FHEE_run_EE_the_content', '__return_true' );
291
+							if ( ! $sc_reflector->isSubclassOf('EES_Shortcode') && defined('WP_DEBUG') && WP_DEBUG === TRUE) {
292
+								$msg = sprintf(__('The requested %s shortcode is not of the class "EES_Shortcode". Please check your files.', 'event_espresso'), $shortcode_class);
293
+								EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
294
+								add_filter('FHEE_run_EE_the_content', '__return_true');
295 295
 								continue;
296 296
 							}
297 297
 							// and pass the request object to the run method
298 298
 							EE_Registry::instance()->shortcodes->{$shortcode_class} = $sc_reflector->newInstance();
299 299
 							// fire the shortcode class's run method, so that it can activate resources
300
-							EE_Registry::instance()->shortcodes->{$shortcode_class}->run( $WP );
300
+							EE_Registry::instance()->shortcodes->{$shortcode_class}->run($WP);
301 301
 						}
302 302
 					// if this is NOT the "Posts page" and we have a valid entry for the "Posts page" in our tracked post_shortcodes array
303
-					} else if ( $post_name != $page_for_posts && isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ] )) {
303
+					} else if ($post_name != $page_for_posts && isset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts])) {
304 304
 						// and the shortcode is not being tracked for this page
305
-						if ( ! isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ][ $shortcode_class ] )) {
305
+						if ( ! isset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts][$shortcode_class])) {
306 306
 							// then remove the "fallback" shortcode processor
307
-							remove_shortcode( $shortcode_class );
307
+							remove_shortcode($shortcode_class);
308 308
 						}
309 309
 					}
310 310
 				}
311 311
 			}
312 312
 		}
313
-		do_action( 'AHEE__EE_Front_Controller__initialize_shortcodes__end', $this );
313
+		do_action('AHEE__EE_Front_Controller__initialize_shortcodes__end', $this);
314 314
 	}
315 315
 
316 316
 
@@ -322,20 +322,20 @@  discard block
 block discarded – undo
322 322
 	 * @param   WP_Query    $WP_Query
323 323
 	 * @return    void
324 324
 	 */
325
-	public function pre_get_posts( $WP_Query ) {
325
+	public function pre_get_posts($WP_Query) {
326 326
 		// only load Module_Request_Router if this is the main query
327
-		if ( $WP_Query->is_main_query() ) {
327
+		if ($WP_Query->is_main_query()) {
328 328
 			// load module request router
329
-			$Module_Request_Router = EE_Registry::instance()->load_core( 'Module_Request_Router' );
329
+			$Module_Request_Router = EE_Registry::instance()->load_core('Module_Request_Router');
330 330
 			// verify object
331
-			if ( $Module_Request_Router instanceof EE_Module_Request_Router ) {
331
+			if ($Module_Request_Router instanceof EE_Module_Request_Router) {
332 332
 				// cycle thru module routes
333
-				while ( $route = $Module_Request_Router->get_route( $WP_Query )) {
333
+				while ($route = $Module_Request_Router->get_route($WP_Query)) {
334 334
 					// determine module and method for route
335
-					$module = $Module_Request_Router->resolve_route( $route[0], $route[1] );
336
-					if( $module instanceof EED_Module ) {
335
+					$module = $Module_Request_Router->resolve_route($route[0], $route[1]);
336
+					if ($module instanceof EED_Module) {
337 337
 						// get registered view for route
338
-						$this->_template_path = $Module_Request_Router->get_view( $route );
338
+						$this->_template_path = $Module_Request_Router->get_view($route);
339 339
 						// grab module name
340 340
 						$module_name = $module->module_name();
341 341
 						// map the module to the module objects
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
 	 *  @return 	void
363 363
 	 */
364 364
 	public function wp() {
365
-		EE_Registry::instance()->load_helper( 'Template' );
365
+		EE_Registry::instance()->load_helper('Template');
366 366
 	}
367 367
 
368 368
 
@@ -380,30 +380,30 @@  discard block
 block discarded – undo
380 380
 	public function wp_enqueue_scripts() {
381 381
 
382 382
 		// css is turned ON by default, but prior to the wp_enqueue_scripts hook, can be turned OFF  via:  add_filter( 'FHEE_load_css', '__return_false' );
383
-		if ( apply_filters( 'FHEE_load_css', TRUE ) ) {
383
+		if (apply_filters('FHEE_load_css', TRUE)) {
384 384
 
385 385
 			EE_Registry::instance()->CFG->template_settings->enable_default_style = TRUE;
386 386
 			//Load the ThemeRoller styles if enabled
387
-			if ( isset( EE_Registry::instance()->CFG->template_settings->enable_default_style ) && EE_Registry::instance()->CFG->template_settings->enable_default_style ) {
387
+			if (isset(EE_Registry::instance()->CFG->template_settings->enable_default_style) && EE_Registry::instance()->CFG->template_settings->enable_default_style) {
388 388
 
389 389
 				//Load custom style sheet if available
390
-				if ( isset( EE_Registry::instance()->CFG->template_settings->custom_style_sheet )) {
391
-					wp_register_style('espresso_custom_css', EVENT_ESPRESSO_UPLOAD_URL . 'css/' . EE_Registry::instance()->CFG->template_settings->custom_style_sheet, EVENT_ESPRESSO_VERSION );
390
+				if (isset(EE_Registry::instance()->CFG->template_settings->custom_style_sheet)) {
391
+					wp_register_style('espresso_custom_css', EVENT_ESPRESSO_UPLOAD_URL.'css/'.EE_Registry::instance()->CFG->template_settings->custom_style_sheet, EVENT_ESPRESSO_VERSION);
392 392
 					wp_enqueue_style('espresso_custom_css');
393 393
 				}
394 394
 
395
-				EE_Registry::instance()->load_helper( 'File' );
396
-				if ( is_readable( EVENT_ESPRESSO_UPLOAD_DIR . 'css/style.css' )) {
397
-					wp_register_style( 'espresso_default', EVENT_ESPRESSO_UPLOAD_DIR . 'css/espresso_default.css', array( 'dashicons' ), EVENT_ESPRESSO_VERSION );
395
+				EE_Registry::instance()->load_helper('File');
396
+				if (is_readable(EVENT_ESPRESSO_UPLOAD_DIR.'css/style.css')) {
397
+					wp_register_style('espresso_default', EVENT_ESPRESSO_UPLOAD_DIR.'css/espresso_default.css', array('dashicons'), EVENT_ESPRESSO_VERSION);
398 398
 				} else {
399
-					wp_register_style( 'espresso_default', EE_GLOBAL_ASSETS_URL . 'css/espresso_default.css', array( 'dashicons' ), EVENT_ESPRESSO_VERSION );
399
+					wp_register_style('espresso_default', EE_GLOBAL_ASSETS_URL.'css/espresso_default.css', array('dashicons'), EVENT_ESPRESSO_VERSION);
400 400
 				}
401 401
 				wp_enqueue_style('espresso_default');
402 402
 
403
-				if ( is_readable( get_stylesheet_directory() . EE_Config::get_current_theme() . DS . 'style.css' )) {
404
-					wp_register_style( 'espresso_style', get_stylesheet_directory_uri() . EE_Config::get_current_theme() . DS . 'style.css', array( 'dashicons', 'espresso_default' ) );
403
+				if (is_readable(get_stylesheet_directory().EE_Config::get_current_theme().DS.'style.css')) {
404
+					wp_register_style('espresso_style', get_stylesheet_directory_uri().EE_Config::get_current_theme().DS.'style.css', array('dashicons', 'espresso_default'));
405 405
 				} else {
406
-					wp_register_style( 'espresso_style', EE_TEMPLATES_URL . EE_Config::get_current_theme() . DS . 'style.css', array( 'dashicons', 'espresso_default' ) );
406
+					wp_register_style('espresso_style', EE_TEMPLATES_URL.EE_Config::get_current_theme().DS.'style.css', array('dashicons', 'espresso_default'));
407 407
 				}
408 408
 
409 409
 			}
@@ -411,29 +411,29 @@  discard block
 block discarded – undo
411 411
 		}
412 412
 
413 413
 		// js is turned ON by default, but prior to the wp_enqueue_scripts hook, can be turned OFF  via:  add_filter( 'FHEE_load_js', '__return_false' );
414
-		if ( apply_filters( 'FHEE_load_js', TRUE ) ) {
414
+		if (apply_filters('FHEE_load_js', TRUE)) {
415 415
 
416
-			wp_enqueue_script( 'jquery' );
416
+			wp_enqueue_script('jquery');
417 417
 			//let's make sure that all required scripts have been setup
418
-			if ( function_exists( 'wp_script_is' )) {
419
-				if ( ! wp_script_is( 'jquery' )) {
418
+			if (function_exists('wp_script_is')) {
419
+				if ( ! wp_script_is('jquery')) {
420 420
 					$msg = sprintf(
421
-						__( '%sJquery is not loaded!%sEvent Espresso is unable to load Jquery due to a conflict with your theme or another plugin.', 'event_espresso' ),
421
+						__('%sJquery is not loaded!%sEvent Espresso is unable to load Jquery due to a conflict with your theme or another plugin.', 'event_espresso'),
422 422
 						'<em><br />',
423 423
 						'</em>'
424 424
 					);
425
-					EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
425
+					EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
426 426
 				}
427 427
 			}
428 428
 			// load core js
429
-			wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
430
-			wp_enqueue_script( 'espresso_core' );
431
-			wp_localize_script( 'espresso_core', 'eei18n', EE_Registry::$i18n_js_strings );
429
+			wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
430
+			wp_enqueue_script('espresso_core');
431
+			wp_localize_script('espresso_core', 'eei18n', EE_Registry::$i18n_js_strings);
432 432
 
433 433
 		}
434 434
 
435 435
 		//qtip is turned OFF by default, but prior to the wp_enqueue_scripts hook, can be turned back on again via: add_filter('FHEE_load_qtip', '__return_true' );
436
-		if ( apply_filters( 'FHEE_load_qtip', FALSE ) ) {
436
+		if (apply_filters('FHEE_load_qtip', FALSE)) {
437 437
 			EE_Registry::instance()->load_helper('Qtip_Loader');
438 438
 			EEH_Qtip_Loader::instance()->register_and_enqueue();
439 439
 		}
@@ -441,11 +441,11 @@  discard block
 block discarded – undo
441 441
 
442 442
 		//accounting.js library
443 443
 		// @link http://josscrowcroft.github.io/accounting.js/
444
-		if ( apply_filters( 'FHEE_load_accounting_js', FALSE ) ) {
445
-			$acct_js = EE_THIRD_PARTY_URL . 'accounting/accounting.js';
446
-			wp_register_script( 'ee-accounting', EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE );
447
-			wp_register_script( 'ee-accounting-core', $acct_js, array('underscore'), '0.3.2', TRUE );
448
-			wp_enqueue_script( 'ee-accounting' );
444
+		if (apply_filters('FHEE_load_accounting_js', FALSE)) {
445
+			$acct_js = EE_THIRD_PARTY_URL.'accounting/accounting.js';
446
+			wp_register_script('ee-accounting', EE_GLOBAL_ASSETS_URL.'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE);
447
+			wp_register_script('ee-accounting-core', $acct_js, array('underscore'), '0.3.2', TRUE);
448
+			wp_enqueue_script('ee-accounting');
449 449
 
450 450
 			$currency_config = array(
451 451
 				'currency' => array(
@@ -468,21 +468,21 @@  discard block
 block discarded – undo
468 468
 			wp_localize_script('ee-accounting', 'EE_ACCOUNTING_CFG', $currency_config);
469 469
 		}
470 470
 
471
-		if ( ! function_exists( 'wp_head' )) {
471
+		if ( ! function_exists('wp_head')) {
472 472
 			$msg = sprintf(
473
-				__( '%sMissing wp_head() function.%sThe WordPress function wp_head() seems to be missing in your theme. Please contact the theme developer to make sure this is fixed before using Event Espresso.', 'event_espresso' ),
473
+				__('%sMissing wp_head() function.%sThe WordPress function wp_head() seems to be missing in your theme. Please contact the theme developer to make sure this is fixed before using Event Espresso.', 'event_espresso'),
474 474
 				'<em><br />',
475 475
 				'</em>'
476 476
 			);
477
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
477
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
478 478
 		}
479
-		if ( ! function_exists( 'wp_footer' )) {
479
+		if ( ! function_exists('wp_footer')) {
480 480
 			$msg = sprintf(
481
-				__( '%sMissing wp_footer() function.%sThe WordPress function wp_footer() seems to be missing in your theme. Please contact the theme developer to make sure this is fixed before using Event Espresso.', 'event_espresso' ),
481
+				__('%sMissing wp_footer() function.%sThe WordPress function wp_footer() seems to be missing in your theme. Please contact the theme developer to make sure this is fixed before using Event Espresso.', 'event_espresso'),
482 482
 				'<em><br />',
483 483
 				'</em>'
484 484
 			);
485
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
485
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
486 486
 		}
487 487
 
488 488
 	}
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
 	 *  @return 	void
497 497
 	 */
498 498
 	public function header_meta_tag() {
499
-		print( apply_filters("FHEE__EE_Front_Controller__header_meta_tag","<meta name='generator' content='Event Espresso Version " . EVENT_ESPRESSO_VERSION . "' />"));
499
+		print(apply_filters("FHEE__EE_Front_Controller__header_meta_tag", "<meta name='generator' content='Event Espresso Version ".EVENT_ESPRESSO_VERSION."' />"));
500 500
 	}
501 501
 
502 502
 
@@ -510,9 +510,9 @@  discard block
 block discarded – undo
510 510
 	 * @param   $the_content
511 511
 	 * @return    string
512 512
 	 */
513
-	public function the_content( $the_content ) {
513
+	public function the_content($the_content) {
514 514
 		// nothing gets loaded at this point unless other systems turn this hookpoint on by using:  add_filter( 'FHEE_run_EE_the_content', '__return_true' );
515
-		if ( apply_filters( 'FHEE_run_EE_the_content', FALSE ) ) {
515
+		if (apply_filters('FHEE_run_EE_the_content', FALSE)) {
516 516
 		}
517 517
 		return $the_content;
518 518
 	}
@@ -537,9 +537,9 @@  discard block
 block discarded – undo
537 537
 	 */
538 538
 	public function display_errors() {
539 539
 		static $shown_already = FALSE;
540
-		do_action( 'AHEE__EE_Front_Controller__display_errors__begin' );
540
+		do_action('AHEE__EE_Front_Controller__display_errors__begin');
541 541
 		if (
542
-			apply_filters( 'FHEE__EE_Front_Controller__display_errors', TRUE )
542
+			apply_filters('FHEE__EE_Front_Controller__display_errors', TRUE)
543 543
 			&& ! $shown_already
544 544
 			&& is_main_query()
545 545
 			&& ! is_feed()
@@ -548,10 +548,10 @@  discard block
 block discarded – undo
548 548
 		) {
549 549
 			echo EE_Error::get_notices();
550 550
 			$shown_already = TRUE;
551
-			EE_Registry::instance()->load_helper( 'Template' );
552
-			EEH_Template::display_template( EE_TEMPLATES . 'espresso-ajax-notices.template.php' );
551
+			EE_Registry::instance()->load_helper('Template');
552
+			EEH_Template::display_template(EE_TEMPLATES.'espresso-ajax-notices.template.php');
553 553
 		}
554
-		do_action( 'AHEE__EE_Front_Controller__display_errors__end' );
554
+		do_action('AHEE__EE_Front_Controller__display_errors__end');
555 555
 	}
556 556
 
557 557
 
@@ -566,12 +566,12 @@  discard block
 block discarded – undo
566 566
 	 * @param   string $template_include_path
567 567
 	 * @return    string
568 568
 	 */
569
-	public function template_include( $template_include_path = NULL ) {
570
-		if ( EE_Registry::instance()->REQ->is_espresso_page() ) {
571
-			$this->_template_path = ! empty( $this->_template_path ) ? basename( $this->_template_path ) : basename( $template_include_path );
572
-			$template_path = EEH_Template::locate_template( $this->_template_path, array(), false );
573
-			$this->_template_path = ! empty( $template_path ) ? $template_path : $template_include_path;
574
-			$this->_template = basename( $this->_template_path );
569
+	public function template_include($template_include_path = NULL) {
570
+		if (EE_Registry::instance()->REQ->is_espresso_page()) {
571
+			$this->_template_path = ! empty($this->_template_path) ? basename($this->_template_path) : basename($template_include_path);
572
+			$template_path = EEH_Template::locate_template($this->_template_path, array(), false);
573
+			$this->_template_path = ! empty($template_path) ? $template_path : $template_include_path;
574
+			$this->_template = basename($this->_template_path);
575 575
 			return $this->_template_path;
576 576
 		}
577 577
 		return $template_include_path;
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
 	 * @param bool $with_path
587 587
 	 * @return    string
588 588
 	 */
589
-	public function get_selected_template( $with_path = FALSE ) {
589
+	public function get_selected_template($with_path = FALSE) {
590 590
 		return $with_path ? $this->_template_path : $this->_template;
591 591
 	}
592 592
 
Please login to merge, or discard this patch.
core/EE_Load_Espresso_Core.core.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * @param 	EE_Response $response
51 51
 	 * @return 	EE_Response
52 52
 	 */
53
-	public function handle_request( EE_Request $request, EE_Response $response ) {
53
+	public function handle_request(EE_Request $request, EE_Response $response) {
54 54
 		$this->request = $request;
55 55
 		$this->response = $response;
56 56
 		// central repository for classes
@@ -58,15 +58,15 @@  discard block
 block discarded – undo
58 58
 		// workarounds for PHP < 5.3
59 59
 		$this->_load_class_tools();
60 60
 		// PSR4 Autoloaders
61
-		EE_Registry::instance()->load_core( 'EE_Psr4AutoloaderInit' );
61
+		EE_Registry::instance()->load_core('EE_Psr4AutoloaderInit');
62 62
 		// deprecated functions
63
-		espresso_load_required( 'EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php' );
63
+		espresso_load_required('EE_Deprecated', EE_CORE.'EE_Deprecated.core.php');
64 64
 		// load interfaces
65
-		espresso_load_required( 'EEI_Payment_Method_Interfaces', EE_LIBRARIES . 'payment_methods' . DS . 'EEI_Payment_Method_Interfaces.php' );
65
+		espresso_load_required('EEI_Payment_Method_Interfaces', EE_LIBRARIES.'payment_methods'.DS.'EEI_Payment_Method_Interfaces.php');
66 66
 		//// WP cron jobs
67
-		EE_Registry::instance()->load_core( 'Cron_Tasks' );
68
-		EE_Registry::instance()->load_core( 'Request_Handler' );
69
-		EE_Registry::instance()->load_core( 'EE_System' );
67
+		EE_Registry::instance()->load_core('Cron_Tasks');
68
+		EE_Registry::instance()->load_core('Request_Handler');
69
+		EE_Registry::instance()->load_core('EE_System');
70 70
 
71 71
 		return $this->response;
72 72
 	}
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
 	 * 	@return void
81 81
 	 */
82 82
 	private function _load_registry() {
83
-		if ( is_readable( EE_CORE . 'EE_Registry.core.php' )) {
84
-			require_once( EE_CORE . 'EE_Registry.core.php' );
83
+		if (is_readable(EE_CORE.'EE_Registry.core.php')) {
84
+			require_once(EE_CORE.'EE_Registry.core.php');
85 85
 		} else {
86
-			$msg = __( 'The EE_Registry core class could not be loaded.', 'event_espresso' );
87
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
88
-			wp_die( EE_Error::get_notices() );
86
+			$msg = __('The EE_Registry core class could not be loaded.', 'event_espresso');
87
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
88
+			wp_die(EE_Error::get_notices());
89 89
 		}
90 90
 	}
91 91
 
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
 	 * 	@return void
98 98
 	 */
99 99
 	private function _load_class_tools() {
100
-		if ( is_readable( EE_HELPERS . 'EEH_Class_Tools.helper.php' )) {
101
-			require_once( EE_HELPERS . 'EEH_Class_Tools.helper.php' );
100
+		if (is_readable(EE_HELPERS.'EEH_Class_Tools.helper.php')) {
101
+			require_once(EE_HELPERS.'EEH_Class_Tools.helper.php');
102 102
 		} else {
103
-			$msg = __( 'The EEH_Class_Tools helper could not be loaded.', 'event_espresso' );
104
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
103
+			$msg = __('The EEH_Class_Tools helper could not be loaded.', 'event_espresso');
104
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
105 105
 		}
106 106
 	}
107 107
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	 * @param \EE_Request $request
117 117
 	 * @param \EE_Response $response
118 118
 	 */
119
-	public function handle_response( EE_Request $request, EE_Response $response ) {
119
+	public function handle_response(EE_Request $request, EE_Response $response) {
120 120
 		//EEH_Debug_Tools::printr( $request, '$request', __FILE__, __LINE__ );
121 121
 		//EEH_Debug_Tools::printr( $response, '$response', __FILE__, __LINE__ );
122 122
 		//die();
Please login to merge, or discard this patch.
core/EE_Network_Config.core.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 */
59 59
 	public static function instance() {
60 60
 		// check if class object is instantiated, and instantiated properly
61
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_Network_Config )) {
61
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Network_Config)) {
62 62
 			self::$_instance = new self();
63 63
 		}
64 64
 		return self::$_instance;
@@ -74,15 +74,15 @@  discard block
 block discarded – undo
74 74
 	 *  @return 	void
75 75
 	 */
76 76
 	private function __construct() {
77
-		do_action( 'AHEE__EE_Network_Config__construct__begin',$this );
77
+		do_action('AHEE__EE_Network_Config__construct__begin', $this);
78 78
 		//set defaults
79
-		$this->core = apply_filters( 'FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config() );
79
+		$this->core = apply_filters('FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config());
80 80
 		$this->addons = array();
81 81
 
82 82
 		$this->_load_config();
83 83
 
84 84
 		// construct__end hook
85
-		do_action( 'AHEE__EE_Network_Config__construct__end',$this );
85
+		do_action('AHEE__EE_Network_Config__construct__end', $this);
86 86
 	}
87 87
 
88 88
 
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
 	 */
96 96
 	private function _load_config() {
97 97
 		$config = $this->get_config();
98
-		foreach ( $config as $prop => $settings ) {
99
-			$prop_class = is_object( $settings ) ? get_class( $this->{$prop} ) : FALSE;
100
-			if ( ! empty( $settings ) && ( ! $prop_class || ( $settings instanceof $prop_class ))) {
98
+		foreach ($config as $prop => $settings) {
99
+			$prop_class = is_object($settings) ? get_class($this->{$prop} ) : FALSE;
100
+			if ( ! empty($settings) && ( ! $prop_class || ($settings instanceof $prop_class))) {
101 101
 				$this->{$prop} = $settings;
102 102
 			}
103 103
 		}
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
 	 */
115 115
 	public function get_config() {
116 116
 		// grab network configuration
117
-		$CFG = get_site_option( 'ee_network_config', array() );
118
-		$CFG = apply_filters( 'FHEE__EE_Network_Config__get_config__CFG', $CFG );
117
+		$CFG = get_site_option('ee_network_config', array());
118
+		$CFG = apply_filters('FHEE__EE_Network_Config__get_config__CFG', $CFG);
119 119
 		return $CFG;
120 120
 	}
121 121
 
@@ -127,24 +127,24 @@  discard block
 block discarded – undo
127 127
 	 *  @access 	public
128 128
 	 *  @return 	boolean success
129 129
 	 */
130
-	public function update_config( $add_success = FALSE, $add_error = TRUE ) {
131
-		do_action( 'AHEE__EE_Network_Config__update_config__begin',$this );
130
+	public function update_config($add_success = FALSE, $add_error = TRUE) {
131
+		do_action('AHEE__EE_Network_Config__update_config__begin', $this);
132 132
 		// compare existing settings with what's already saved'
133 133
 		$saved_config = $this->get_config();
134 134
 		// update
135
-		$saved = $saved_config == $this ? TRUE : update_site_option( 'ee_network_config', $this );
136
-		do_action( 'AHEE__EE_Network_Config__update_config__end', $this, $saved );
135
+		$saved = $saved_config == $this ? TRUE : update_site_option('ee_network_config', $this);
136
+		do_action('AHEE__EE_Network_Config__update_config__end', $this, $saved);
137 137
 		// if config remains the same or was updated successfully
138
-		if ( $saved ) {
139
-			if ( $add_success ) {
140
-				$msg = is_multisite() ? __( 'The Event Espresso Network Configuration Settings have been successfully updated.', 'event_espresso' ) : __( 'Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso' );
141
-				EE_Error::add_success( $msg );
138
+		if ($saved) {
139
+			if ($add_success) {
140
+				$msg = is_multisite() ? __('The Event Espresso Network Configuration Settings have been successfully updated.', 'event_espresso') : __('Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso');
141
+				EE_Error::add_success($msg);
142 142
 			}
143 143
 			return TRUE;
144 144
 		} else {
145
-			if ( $add_error ) {
146
-				$msg = is_multisite() ? __( 'The Event Espresso Network Configuration Settings were not updated.', 'event_espresso' ) : __( 'Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso' );
147
-				EE_Error::add_error( $msg , __FILE__, __FUNCTION__, __LINE__ );
145
+			if ($add_error) {
146
+				$msg = is_multisite() ? __('The Event Espresso Network Configuration Settings were not updated.', 'event_espresso') : __('Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso');
147
+				EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
148 148
 			}
149 149
 			return FALSE;
150 150
 		}
@@ -158,9 +158,9 @@  discard block
 block discarded – undo
158 158
 	 *  @return 	array
159 159
 	 */
160 160
 	public function __sleep() {
161
-		return apply_filters( 'FHEE__EE_Network_Config__sleep',array(
161
+		return apply_filters('FHEE__EE_Network_Config__sleep', array(
162 162
 			'core',
163
-		) );
163
+		));
164 164
 	}
165 165
 
166 166
 } //end EE_Network_Config.
Please login to merge, or discard this patch.
core/EE_Registry.core.php 1 patch
Spacing   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 	 */
157 157
 	public static function instance() {
158 158
 		// check if class object is instantiated
159
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_Registry )) {
159
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Registry)) {
160 160
 			self::$_instance = new self();
161 161
 		}
162 162
 		return self::$_instance;
@@ -171,14 +171,14 @@  discard block
 block discarded – undo
171 171
 	 * @return EE_Registry
172 172
 	 */
173 173
 	private function __construct() {
174
-		$this->load_core( 'Base' );
174
+		$this->load_core('Base');
175 175
 		// class library
176 176
 		$this->LIB = new StdClass();
177 177
 		$this->addons = new StdClass();
178 178
 		$this->modules = new StdClass();
179 179
 		$this->shortcodes = new StdClass();
180 180
 		$this->widgets = new StdClass();
181
-		add_action( 'AHEE__EE_System__set_hooks_for_core', array( $this, 'init' ));
181
+		add_action('AHEE__EE_System__set_hooks_for_core', array($this, 'init'));
182 182
 	}
183 183
 
184 184
 
@@ -191,10 +191,10 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	public function init() {
193 193
 		// Get current page protocol
194
-		$protocol = isset( $_SERVER['HTTPS'] ) ? 'https://' : 'http://';
194
+		$protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://';
195 195
 		// Output admin-ajax.php URL with same protocol as current page
196
-		self::$i18n_js_strings['ajax_url'] = admin_url( 'admin-ajax.php', $protocol );
197
-		self::$i18n_js_strings['wp_debug'] = defined( 'WP_DEBUG' ) ? WP_DEBUG : FALSE;
196
+		self::$i18n_js_strings['ajax_url'] = admin_url('admin-ajax.php', $protocol);
197
+		self::$i18n_js_strings['wp_debug'] = defined('WP_DEBUG') ? WP_DEBUG : FALSE;
198 198
 	}
199 199
 
200 200
 
@@ -205,14 +205,14 @@  discard block
 block discarded – undo
205 205
 	 * @return string
206 206
 	 */
207 207
 	public static function localize_i18n_js_strings() {
208
-		$i18n_js_strings = (array)EE_Registry::$i18n_js_strings;
209
-		foreach ( $i18n_js_strings as $key => $value ) {
210
-			if ( is_scalar( $value ) ) {
211
-				$i18n_js_strings[ $key ] = html_entity_decode( (string)$value, ENT_QUOTES, 'UTF-8' );
208
+		$i18n_js_strings = (array) EE_Registry::$i18n_js_strings;
209
+		foreach ($i18n_js_strings as $key => $value) {
210
+			if (is_scalar($value)) {
211
+				$i18n_js_strings[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
212 212
 			}
213 213
 		}
214 214
 
215
-		return "/* <![CDATA[ */ var eei18n = " . wp_json_encode( $i18n_js_strings ) . '; /* ]]> */';
215
+		return "/* <![CDATA[ */ var eei18n = ".wp_json_encode($i18n_js_strings).'; /* ]]> */';
216 216
 	}
217 217
 
218 218
 
@@ -220,15 +220,15 @@  discard block
 block discarded – undo
220 220
 	/**
221 221
 	 * @param mixed string | EED_Module $module
222 222
 	 */
223
-	public function add_module( $module ) {
224
-		if ( $module instanceof EED_Module ) {
225
-			$module_class = get_class( $module );
223
+	public function add_module($module) {
224
+		if ($module instanceof EED_Module) {
225
+			$module_class = get_class($module);
226 226
 			$this->modules->{$module_class} = $module;
227 227
 		} else {
228
-			if ( ! class_exists( 'EE_Module_Request_Router' )) {
229
-				$this->load_core( 'Module_Request_Router' );
228
+			if ( ! class_exists('EE_Module_Request_Router')) {
229
+				$this->load_core('Module_Request_Router');
230 230
 			}
231
-			$this->modules->{$module} = EE_Module_Request_Router::module_factory( $module );
231
+			$this->modules->{$module} = EE_Module_Request_Router::module_factory($module);
232 232
 		}
233 233
 	}
234 234
 
@@ -238,8 +238,8 @@  discard block
 block discarded – undo
238 238
 	 * @param string $module_name
239 239
 	 * @return mixed EED_Module | NULL
240 240
 	 */
241
-	public function get_module( $module_name = '' ) {
242
-		return isset( $this->modules->{$module_name} ) ? $this->modules->{$module_name} : NULL;
241
+	public function get_module($module_name = '') {
242
+		return isset($this->modules->{$module_name} ) ? $this->modules->{$module_name} : NULL;
243 243
 	}
244 244
 
245 245
 
@@ -252,18 +252,18 @@  discard block
 block discarded – undo
252 252
 	 * @param bool   $load_only
253 253
 	 * @return mixed
254 254
 	 */
255
-	public function load_core ( $class_name, $arguments = array(), $load_only = FALSE ) {
255
+	public function load_core($class_name, $arguments = array(), $load_only = FALSE) {
256 256
 		$core_paths = apply_filters(
257 257
 			'FHEE__EE_Registry__load_core__core_paths',
258 258
 			array(
259 259
 				EE_CORE,
260 260
 				EE_ADMIN,
261 261
 				EE_CPTS,
262
-				EE_CORE . 'data_migration_scripts' . DS
262
+				EE_CORE.'data_migration_scripts'.DS
263 263
 			)
264 264
 		);
265 265
 		// retrieve instantiated class
266
-		return $this->_load( $core_paths, 'EE_' , $class_name, 'core', $arguments, FALSE, TRUE, $load_only );
266
+		return $this->_load($core_paths, 'EE_', $class_name, 'core', $arguments, FALSE, TRUE, $load_only);
267 267
 	}
268 268
 
269 269
 
@@ -276,9 +276,9 @@  discard block
 block discarded – undo
276 276
 	 * @param mixed  $arguments
277 277
 	 * @return EE_Data_Migration_Script_Base
278 278
 	 */
279
-	public function load_dms ( $class_name, $arguments = array() ) {
279
+	public function load_dms($class_name, $arguments = array()) {
280 280
 		// retrieve instantiated class
281
-		return $this->_load( EE_Data_Migration_Manager::instance()->get_data_migration_script_folders(), 'EE_DMS_' , $class_name, 'dms', $arguments, FALSE, FALSE, FALSE );
281
+		return $this->_load(EE_Data_Migration_Manager::instance()->get_data_migration_script_folders(), 'EE_DMS_', $class_name, 'dms', $arguments, FALSE, FALSE, FALSE);
282 282
 	}
283 283
 
284 284
 
@@ -293,14 +293,14 @@  discard block
 block discarded – undo
293 293
 	 *	@param bool   $load_only      whether or not to just load the file and NOT instantiate, or load AND instantiate (default)
294 294
 	 *	@return EE_Base_Class
295 295
 	 */
296
-	public function load_class ( $class_name, $arguments = array(), $from_db = FALSE, $cache = TRUE, $load_only = FALSE ) {
297
-		$paths = apply_filters('FHEE__EE_Registry__load_class__paths',array(
296
+	public function load_class($class_name, $arguments = array(), $from_db = FALSE, $cache = TRUE, $load_only = FALSE) {
297
+		$paths = apply_filters('FHEE__EE_Registry__load_class__paths', array(
298 298
 			EE_CORE,
299 299
 			EE_CLASSES,
300 300
 			EE_BUSINESS
301 301
 		));
302 302
 		// retrieve instantiated class
303
-		return $this->_load( $paths, 'EE_' , $class_name, 'class', $arguments, $from_db, $cache, $load_only );
303
+		return $this->_load($paths, 'EE_', $class_name, 'class', $arguments, $from_db, $cache, $load_only);
304 304
 	}
305 305
 
306 306
 
@@ -314,10 +314,10 @@  discard block
 block discarded – undo
314 314
 	 * @param bool   $load_only
315 315
 	 * @return EEH_Base
316 316
 	 */
317
-	public function load_helper ( $class_name, $arguments = array(), $load_only = TRUE ) {
318
-		$helper_paths = apply_filters( 'FHEE__EE_Registry__load_helper__helper_paths', array(EE_HELPERS ) );
317
+	public function load_helper($class_name, $arguments = array(), $load_only = TRUE) {
318
+		$helper_paths = apply_filters('FHEE__EE_Registry__load_helper__helper_paths', array(EE_HELPERS));
319 319
 		// retrieve instantiated class
320
-		return $this->_load( $helper_paths, 'EEH_', $class_name, 'helper', $arguments, FALSE, TRUE, $load_only );
320
+		return $this->_load($helper_paths, 'EEH_', $class_name, 'helper', $arguments, FALSE, TRUE, $load_only);
321 321
 	}
322 322
 
323 323
 
@@ -331,16 +331,16 @@  discard block
 block discarded – undo
331 331
 	 * @param bool   $load_only
332 332
 	 * @return mixed
333 333
 	 */
334
-	public function load_lib ( $class_name, $arguments = array(), $load_only = FALSE ) {
334
+	public function load_lib($class_name, $arguments = array(), $load_only = FALSE) {
335 335
 		$paths = array(
336 336
 			EE_LIBRARIES,
337
-			EE_LIBRARIES . 'messages' . DS,
338
-			EE_LIBRARIES . 'shortcodes' . DS,
339
-			EE_LIBRARIES . 'qtips' . DS,
340
-			EE_LIBRARIES . 'payment_methods' . DS,
337
+			EE_LIBRARIES.'messages'.DS,
338
+			EE_LIBRARIES.'shortcodes'.DS,
339
+			EE_LIBRARIES.'qtips'.DS,
340
+			EE_LIBRARIES.'payment_methods'.DS,
341 341
 		);
342 342
 		// retrieve instantiated class
343
-		return $this->_load( $paths, 'EE_' , $class_name, 'lib', $arguments, FALSE, TRUE, $load_only );
343
+		return $this->_load($paths, 'EE_', $class_name, 'lib', $arguments, FALSE, TRUE, $load_only);
344 344
 	}
345 345
 
346 346
 
@@ -353,13 +353,13 @@  discard block
 block discarded – undo
353 353
 	 * @param bool   $load_only
354 354
 	 * @return EEM_Base
355 355
 	 */
356
-	public function load_model ( $class_name, $arguments = array(), $load_only = FALSE ) {
357
-		$paths = apply_filters('FHEE__EE_Registry__load_model__paths',array(
356
+	public function load_model($class_name, $arguments = array(), $load_only = FALSE) {
357
+		$paths = apply_filters('FHEE__EE_Registry__load_model__paths', array(
358 358
 			EE_MODELS,
359 359
 			EE_CORE
360 360
 		));
361 361
 		// retrieve instantiated class
362
-		return $this->_load( $paths, 'EEM_' , $class_name, 'model', $arguments, FALSE, TRUE, $load_only );
362
+		return $this->_load($paths, 'EEM_', $class_name, 'model', $arguments, FALSE, TRUE, $load_only);
363 363
 	}
364 364
 
365 365
 
@@ -372,15 +372,15 @@  discard block
 block discarded – undo
372 372
 	 * @param bool   $load_only
373 373
 	 * @return mixed
374 374
 	 */
375
-	public function load_model_class ( $class_name, $arguments = array(), $load_only = TRUE ) {
375
+	public function load_model_class($class_name, $arguments = array(), $load_only = TRUE) {
376 376
 		$paths = array(
377
-			EE_MODELS . 'fields' . DS,
378
-			EE_MODELS . 'helpers' . DS,
379
-			EE_MODELS . 'relations' . DS,
380
-			EE_MODELS . 'strategies' . DS
377
+			EE_MODELS.'fields'.DS,
378
+			EE_MODELS.'helpers'.DS,
379
+			EE_MODELS.'relations'.DS,
380
+			EE_MODELS.'strategies'.DS
381 381
 		);
382 382
 		// retrieve instantiated class
383
-		return $this->_load( $paths, 'EE_' , $class_name, '', $arguments, FALSE, TRUE, $load_only );
383
+		return $this->_load($paths, 'EE_', $class_name, '', $arguments, FALSE, TRUE, $load_only);
384 384
 	}
385 385
 
386 386
 
@@ -392,8 +392,8 @@  discard block
 block discarded – undo
392 392
 	 * @param string $model_name like Event, Attendee, Question_Group_Question, etc.
393 393
 	 * @return boolean
394 394
 	 */
395
-	public function is_model_name( $model_name ){
396
-		return isset( $this->models[ $model_name ] ) ? TRUE : FALSE;
395
+	public function is_model_name($model_name) {
396
+		return isset($this->models[$model_name]) ? TRUE : FALSE;
397 397
 	}
398 398
 
399 399
 
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
 	 * @param bool   $load_only
409 409
 	 * @return mixed
410 410
 	 */
411
-	public function load_file ( $path_to_file, $file_name, $type = '', $arguments = array(), $load_only = TRUE ) {
411
+	public function load_file($path_to_file, $file_name, $type = '', $arguments = array(), $load_only = TRUE) {
412 412
 		// retrieve instantiated class
413
-		return $this->_load( $path_to_file, '', $file_name, $type, $arguments, FALSE, TRUE, $load_only );
413
+		return $this->_load($path_to_file, '', $file_name, $type, $arguments, FALSE, TRUE, $load_only);
414 414
 	}
415 415
 
416 416
 
@@ -425,9 +425,9 @@  discard block
 block discarded – undo
425 425
 	 * @param bool   $load_only
426 426
 	 * @return EE_Addon
427 427
 	 */
428
-	public function load_addon ( $path_to_file, $class_name, $type = 'class', $arguments = array(), $load_only = FALSE ) {
428
+	public function load_addon($path_to_file, $class_name, $type = 'class', $arguments = array(), $load_only = FALSE) {
429 429
 		// retrieve instantiated class
430
-		return $this->_load( $path_to_file, 'addon', $class_name, $type, $arguments, FALSE, TRUE, $load_only );
430
+		return $this->_load($path_to_file, 'addon', $class_name, $type, $arguments, FALSE, TRUE, $load_only);
431 431
 	}
432 432
 
433 433
 
@@ -445,15 +445,15 @@  discard block
 block discarded – undo
445 445
 	 * @internal param string $file_path - file path including file name
446 446
 	 * @return bool | object
447 447
 	 */
448
-	private function _load ( $file_paths = array(), $class_prefix = 'EE_', $class_name = FALSE, $type = 'class', $arguments = array(), $from_db = FALSE, $cache = TRUE, $load_only = FALSE ) {
448
+	private function _load($file_paths = array(), $class_prefix = 'EE_', $class_name = FALSE, $type = 'class', $arguments = array(), $from_db = FALSE, $cache = TRUE, $load_only = FALSE) {
449 449
 		// strip php file extension
450
-		$class_name = str_replace( '.php', '', trim( $class_name ));
450
+		$class_name = str_replace('.php', '', trim($class_name));
451 451
 		// does the class have a prefix ?
452
-		if ( ! empty( $class_prefix ) && $class_prefix != 'addon' ) {
452
+		if ( ! empty($class_prefix) && $class_prefix != 'addon') {
453 453
 			// make sure $class_prefix is uppercase
454
-			$class_prefix = strtoupper( trim( $class_prefix ));
454
+			$class_prefix = strtoupper(trim($class_prefix));
455 455
 			// add class prefix ONCE!!!
456
-			$class_name = $class_prefix . str_replace( $class_prefix, '', $class_name );
456
+			$class_name = $class_prefix.str_replace($class_prefix, '', $class_name);
457 457
 		}
458 458
 
459 459
 		$class_abbreviations = array(
@@ -465,61 +465,61 @@  discard block
 block discarded – undo
465 465
 			'EE_Capabilities' => 'CAP'
466 466
 		);
467 467
 
468
-		$class_abbreviation = isset( $class_abbreviations[ $class_name ] )
469
-			? $class_abbreviations[ $class_name ]
468
+		$class_abbreviation = isset($class_abbreviations[$class_name])
469
+			? $class_abbreviations[$class_name]
470 470
 			: '';
471 471
 		// check if class has already been loaded, and return it if it has been
472
-		if ( $class_abbreviation !== '' && ! is_null( $this->{$class_abbreviation} )
472
+		if ($class_abbreviation !== '' && ! is_null($this->{$class_abbreviation} )
473 473
 		) {
474 474
 			return $this->{$class_abbreviation};
475
-		} else if ( isset ( $this->{$class_name} ) ) {
475
+		} else if (isset ($this->{$class_name} )) {
476 476
 			return $this->{$class_name};
477
-		} else if ( isset ( $this->LIB->{$class_name} ) ) {
477
+		} else if (isset ($this->LIB->{$class_name} )) {
478 478
 			return $this->LIB->{$class_name};
479
-		} else if ( $class_prefix == 'addon' && isset ( $this->addons->{$class_name} ) ) {
479
+		} else if ($class_prefix == 'addon' && isset ($this->addons->{$class_name} )) {
480 480
 			return $this->addons->{$class_name};
481 481
 		}
482 482
 
483 483
 		// assume all paths lead nowhere
484 484
 		$path = FALSE;
485 485
 		// make sure $file_paths is an array
486
-		$file_paths = is_array( $file_paths ) ? $file_paths : array( $file_paths );
486
+		$file_paths = is_array($file_paths) ? $file_paths : array($file_paths);
487 487
 		// cycle thru paths
488
-		foreach ( $file_paths as $key => $file_path ) {
488
+		foreach ($file_paths as $key => $file_path) {
489 489
 			// convert all separators to proper DS, if no filepath, then use EE_CLASSES
490
-			$file_path = $file_path ? str_replace( array( '/', '\\' ), DS, $file_path ) : EE_CLASSES;
490
+			$file_path = $file_path ? str_replace(array('/', '\\'), DS, $file_path) : EE_CLASSES;
491 491
 			// prep file type
492
-			$type = ! empty( $type ) ? trim( $type, '.' ) . '.' : '';
492
+			$type = ! empty($type) ? trim($type, '.').'.' : '';
493 493
 			// build full file path
494
-			$file_paths[ $key ] = rtrim( $file_path, DS ) . DS . $class_name . '.' . $type . 'php';
494
+			$file_paths[$key] = rtrim($file_path, DS).DS.$class_name.'.'.$type.'php';
495 495
 			//does the file exist and can be read ?
496
-			if ( is_readable( $file_paths[ $key ] )) {
497
-				$path = $file_paths[ $key ];
496
+			if (is_readable($file_paths[$key])) {
497
+				$path = $file_paths[$key];
498 498
 				break;
499 499
 			}
500 500
 		}
501 501
 		// don't give up! you gotta...
502 502
 		try {
503 503
 			//does the file exist and can it be read ?
504
-			if ( ! $path ) {
504
+			if ( ! $path) {
505 505
 				// so sorry, can't find the file
506
-				throw new EE_Error (
507
-					sprintf (
508
-						__('The %1$s file %2$s could not be located or is not readable due to file permissions. Please ensure that the following filepath(s) are correct: %3$s','event_espresso'),
509
-						trim( $type, '.' ),
506
+				throw new EE_Error(
507
+					sprintf(
508
+						__('The %1$s file %2$s could not be located or is not readable due to file permissions. Please ensure that the following filepath(s) are correct: %3$s', 'event_espresso'),
509
+						trim($type, '.'),
510 510
 						$class_name,
511
-						'<br />' . implode( ',<br />', $file_paths )
511
+						'<br />'.implode(',<br />', $file_paths)
512 512
 					)
513 513
 				);
514 514
 			}
515 515
 			// get the file
516
-			require_once( $path );
516
+			require_once($path);
517 517
 			// if the class isn't already declared somewhere
518
-			if ( class_exists( $class_name, FALSE ) === FALSE ) {
518
+			if (class_exists($class_name, FALSE) === FALSE) {
519 519
 				// so sorry, not a class
520 520
 				throw new EE_Error(
521 521
 					sprintf(
522
-						__('The %s file %s does not appear to contain the %s Class.','event_espresso'),
522
+						__('The %s file %s does not appear to contain the %s Class.', 'event_espresso'),
523 523
 						$type,
524 524
 						$path,
525 525
 						$class_name
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
 				);
528 528
 			}
529 529
 
530
-		} catch ( EE_Error $e ) {
530
+		} catch (EE_Error $e) {
531 531
 			$e->get_error();
532 532
 		}
533 533
 
@@ -535,38 +535,38 @@  discard block
 block discarded – undo
535 535
 		// don't give up! you gotta...
536 536
 		try {
537 537
 			// create reflection
538
-			$reflector = new ReflectionClass( $class_name );
538
+			$reflector = new ReflectionClass($class_name);
539 539
 			// instantiate the class and add to the LIB array for tracking
540 540
 			// EE_Base_Classes are instantiated via new_instance by default (models call them via new_instance_from_db)
541
-			if ( $reflector->getConstructor() === NULL || $reflector->isAbstract() || $load_only ) {
541
+			if ($reflector->getConstructor() === NULL || $reflector->isAbstract() || $load_only) {
542 542
 //				$instantiation_mode = 0;
543 543
 				// no constructor = static methods only... nothing to instantiate, loading file was enough
544 544
 				return TRUE;
545
-			} else if ( $from_db && method_exists( $class_name, 'new_instance_from_db' ) ) {
545
+			} else if ($from_db && method_exists($class_name, 'new_instance_from_db')) {
546 546
 //				$instantiation_mode = 1;
547
-				$class_obj =  call_user_func_array( array( $class_name, 'new_instance_from_db' ), $arguments );
548
-			} else if ( method_exists( $class_name, 'new_instance' ) ) {
547
+				$class_obj = call_user_func_array(array($class_name, 'new_instance_from_db'), $arguments);
548
+			} else if (method_exists($class_name, 'new_instance')) {
549 549
 //				$instantiation_mode = 2;
550
-				$class_obj =  call_user_func_array( array( $class_name, 'new_instance' ), $arguments );
551
-			} else if ( method_exists( $class_name, 'instance' )) {
550
+				$class_obj = call_user_func_array(array($class_name, 'new_instance'), $arguments);
551
+			} else if (method_exists($class_name, 'instance')) {
552 552
 //				$instantiation_mode = 3;
553
-				$class_obj =  call_user_func_array( array( $class_name, 'instance' ), $arguments );
554
-			} else if ( $reflector->isInstantiable() ) {
553
+				$class_obj = call_user_func_array(array($class_name, 'instance'), $arguments);
554
+			} else if ($reflector->isInstantiable()) {
555 555
 //				$instantiation_mode = 4;
556
-				$class_obj =  $reflector->newInstance( $arguments );
557
-			} else if ( ! $load_only ) {
556
+				$class_obj = $reflector->newInstance($arguments);
557
+			} else if ( ! $load_only) {
558 558
 				// heh ? something's not right !
559 559
 //				$instantiation_mode = 5;
560 560
 				throw new EE_Error(
561 561
 					sprintf(
562
-						__('The %s file %s could not be instantiated.','event_espresso'),
562
+						__('The %s file %s could not be instantiated.', 'event_espresso'),
563 563
 						$type,
564 564
 						$class_name
565 565
 					)
566 566
 				);
567 567
 			}
568 568
 
569
-		} catch ( EE_Error $e ) {
569
+		} catch (EE_Error $e) {
570 570
 			$e->get_error();
571 571
 		}
572 572
 
@@ -578,15 +578,15 @@  discard block
 block discarded – undo
578 578
 //	EEH_Debug_Tools::printr( $class_obj, '$class_obj  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
579 579
 
580 580
 
581
-		if ( isset( $class_obj )) {
581
+		if (isset($class_obj)) {
582 582
 			// return newly instantiated class
583
-			if ( $class_abbreviation !== '' ) {
583
+			if ($class_abbreviation !== '') {
584 584
 				$this->{$class_abbreviation} = $class_obj;
585
-			} else if ( EEH_Class_Tools::has_property( $this, $class_name )) {
585
+			} else if (EEH_Class_Tools::has_property($this, $class_name)) {
586 586
 				$this->{$class_name} = $class_obj;
587
-			} else if ( $class_prefix == 'addon' && $cache  ) {
587
+			} else if ($class_prefix == 'addon' && $cache) {
588 588
 				$this->addons->{$class_name} = $class_obj;
589
-			} else if ( !$from_db && $cache  ) {
589
+			} else if ( ! $from_db && $cache) {
590 590
 				$this->LIB->{$class_name} = $class_obj;
591 591
 			}
592 592
 			return $class_obj;
@@ -611,7 +611,7 @@  discard block
 block discarded – undo
611 611
 	 * @param $a
612 612
 	 * @param $b
613 613
 	 */
614
-	final function __call($a,$b) {}
614
+	final function __call($a, $b) {}
615 615
 
616 616
 
617 617
 
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
 	 * @param $a
627 627
 	 * @param $b
628 628
 	 */
629
-	final function __set($a,$b) {}
629
+	final function __set($a, $b) {}
630 630
 
631 631
 
632 632
 
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
 	 * @param $a
667 667
 	 * @param $b
668 668
 	 */
669
-	final static function __callStatic($a,$b) {}
669
+	final static function __callStatic($a, $b) {}
670 670
 
671 671
 	/**
672 672
 	 * Gets the addon by its name/slug (not classname. For that, just
@@ -674,9 +674,9 @@  discard block
 block discarded – undo
674 674
 	 * @param string $name
675 675
 	 * @return EE_Addon
676 676
 	 */
677
-	public function get_addon_by_name( $name ){
678
-		foreach($this->addons as $addon){
679
-			if( $addon->name() == $name){
677
+	public function get_addon_by_name($name) {
678
+		foreach ($this->addons as $addon) {
679
+			if ($addon->name() == $name) {
680 680
 				return $addon;
681 681
 			}
682 682
 		}
@@ -687,10 +687,10 @@  discard block
 block discarded – undo
687 687
 	 *
688 688
 	 * @return EE_Addon[] where the KEYS are the addon's name()
689 689
 	 */
690
-	public function get_addons_by_name(){
690
+	public function get_addons_by_name() {
691 691
 		$addons = array();
692
-		foreach($this->addons as $addon){
693
-			$addons[ $addon->name() ] = $addon;
692
+		foreach ($this->addons as $addon) {
693
+			$addons[$addon->name()] = $addon;
694 694
 		}
695 695
 		return $addons;
696 696
 	}
@@ -705,14 +705,14 @@  discard block
 block discarded – undo
705 705
 	 * @return EEM_Base
706 706
 	 * @throws EE_Error
707 707
 	 */
708
-	public function reset_model( $model_name ){
709
-		$model = $this->load_model( $model_name );
710
-		$model_class_name = get_class( $model );
708
+	public function reset_model($model_name) {
709
+		$model = $this->load_model($model_name);
710
+		$model_class_name = get_class($model);
711 711
 		//get that model reset it and make sure we nuke the old reference to it
712
-		if ( $model instanceof $model_class_name && is_callable( array( $model_class_name, 'reset' ))) {
712
+		if ($model instanceof $model_class_name && is_callable(array($model_class_name, 'reset'))) {
713 713
 			$this->LIB->{$model_class_name} = $model::reset();
714
-		}else{
715
-			throw new EE_Error( sprintf( __( 'Model %s does not have a method "reset"', 'event_espresso' ), $model_name ) );
714
+		} else {
715
+			throw new EE_Error(sprintf(__('Model %s does not have a method "reset"', 'event_espresso'), $model_name));
716 716
 		}
717 717
 		return $this->LIB->{$model_class_name};
718 718
 	}
@@ -728,15 +728,15 @@  discard block
 block discarded – undo
728 728
 	 * currently reinstantiate the singletons at the moment)
729 729
 	 * @return EE_Registry
730 730
 	 */
731
-	public static function reset( $hard = FALSE, $reinstantiate = TRUE ){
731
+	public static function reset($hard = FALSE, $reinstantiate = TRUE) {
732 732
 		$instance = self::instance();
733 733
 		$instance->load_helper('Activation');
734 734
 		EEH_Activation::reset();
735
-		$instance->CFG = EE_Config::reset( $hard, $reinstantiate );
735
+		$instance->CFG = EE_Config::reset($hard, $reinstantiate);
736 736
 		$instance->LIB->EE_Data_Migration_Manager = EE_Data_Migration_Manager::reset();
737 737
 		$instance->LIB = new stdClass();
738
-		foreach( array_keys( $instance->non_abstract_db_models ) as $model_name ){
739
-			$instance->reset_model( $model_name );
738
+		foreach (array_keys($instance->non_abstract_db_models) as $model_name) {
739
+			$instance->reset_model($model_name);
740 740
 		}
741 741
 		return $instance;
742 742
 	}
@@ -747,9 +747,9 @@  discard block
 block discarded – undo
747 747
 	 */
748 748
 	public function cpt_models() {
749 749
 		$cpt_models = array();
750
-		foreach( $this->non_abstract_db_models as $shortname => $classname ) {
751
-			if( is_subclass_of(  $classname, 'EEM_CPT_Base' ) ) {
752
-				$cpt_models[ $shortname ] = $classname;
750
+		foreach ($this->non_abstract_db_models as $shortname => $classname) {
751
+			if (is_subclass_of($classname, 'EEM_CPT_Base')) {
752
+				$cpt_models[$shortname] = $classname;
753 753
 			}
754 754
 		}
755 755
 		return $cpt_models;
Please login to merge, or discard this patch.
core/admin/EE_Admin.core.php 1 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,11 +95,11 @@  discard block
 block discarded – undo
95 95
 	 * @return void
96 96
 	 */
97 97
 	private function _define_all_constants() {
98
-		define( 'EE_ADMIN_URL', EE_PLUGIN_DIR_URL . 'core/admin/' );
99
-		define( 'EE_ADMIN_PAGES_URL', EE_PLUGIN_DIR_URL . 'admin_pages/' );
100
-		define( 'EE_ADMIN_TEMPLATE', EE_ADMIN . 'templates' . DS );
101
-		define( 'WP_ADMIN_PATH', ABSPATH . 'wp-admin/' );
102
-		define( 'WP_AJAX_URL', admin_url( 'admin-ajax.php' ));
98
+		define('EE_ADMIN_URL', EE_PLUGIN_DIR_URL.'core/admin/');
99
+		define('EE_ADMIN_PAGES_URL', EE_PLUGIN_DIR_URL.'admin_pages/');
100
+		define('EE_ADMIN_TEMPLATE', EE_ADMIN.'templates'.DS);
101
+		define('WP_ADMIN_PATH', ABSPATH.'wp-admin/');
102
+		define('WP_AJAX_URL', admin_url('admin-ajax.php'));
103 103
 	}
104 104
 
105 105
 
@@ -112,23 +112,23 @@  discard block
 block discarded – undo
112 112
 	 * @param 	string 	$plugin
113 113
 	 * @return 	array
114 114
 	 */
115
-	public function filter_plugin_actions( $links, $plugin ) {
115
+	public function filter_plugin_actions($links, $plugin) {
116 116
 		// set $main_file in stone
117 117
 		static $main_file;
118 118
 		// if $main_file is not set yet
119
-		if ( ! $main_file ) {
120
-			$main_file = plugin_basename( EVENT_ESPRESSO_MAIN_FILE );
119
+		if ( ! $main_file) {
120
+			$main_file = plugin_basename(EVENT_ESPRESSO_MAIN_FILE);
121 121
 		}
122
-		 if ( $plugin == $main_file ) {
122
+		 if ($plugin == $main_file) {
123 123
 		 	// compare current plugin to this one
124
-			if ( EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance ) {
125
-				$maintenance_link = '<a href="admin.php?page=espresso_maintenance_settings" title="Event Espresso is in maintenance mode.  Click this link to learn why.">' . __('Maintenance Mode Active', 'event_espresso' ) . '</a>';
126
-				array_unshift( $links, $maintenance_link );
124
+			if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
125
+				$maintenance_link = '<a href="admin.php?page=espresso_maintenance_settings" title="Event Espresso is in maintenance mode.  Click this link to learn why.">'.__('Maintenance Mode Active', 'event_espresso').'</a>';
126
+				array_unshift($links, $maintenance_link);
127 127
 			} else {
128
-				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">' . __( 'Settings', 'event_espresso' ) . '</a>';
129
-				$events_link = '<a href="admin.php?page=espresso_events">' . __( 'Events', 'event_espresso' ) . '</a>';
128
+				$org_settings_link = '<a href="admin.php?page=espresso_general_settings">'.__('Settings', 'event_espresso').'</a>';
129
+				$events_link = '<a href="admin.php?page=espresso_events">'.__('Events', 'event_espresso').'</a>';
130 130
 				// add before other links
131
-				array_unshift( $links, $org_settings_link, $events_link );
131
+				array_unshift($links, $org_settings_link, $events_link);
132 132
 			}
133 133
 		}
134 134
 		return $links;
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
 	 *	@return void
144 144
 	 */
145 145
 	public function get_request() {
146
-		EE_Registry::instance()->load_core( 'Request_Handler' );
147
-		EE_Registry::instance()->load_core( 'CPT_Strategy' );
146
+		EE_Registry::instance()->load_core('Request_Handler');
147
+		EE_Registry::instance()->load_core('CPT_Strategy');
148 148
 	}
149 149
 
150 150
 
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
156 156
 	 * @param array $admin_page_folder_names
157 157
 	 * @return array
158 158
 	 */
159
-	public function hide_admin_pages_except_maintenance_mode( $admin_page_folder_names = array() ){
159
+	public function hide_admin_pages_except_maintenance_mode($admin_page_folder_names = array()) {
160 160
 		return array(
161
-			'maintenance' => EE_ADMIN_PAGES . 'maintenance' . DS,
162
-			'about' => EE_ADMIN_PAGES . 'about' . DS,
163
-			'support' => EE_ADMIN_PAGES . 'support' . DS
161
+			'maintenance' => EE_ADMIN_PAGES.'maintenance'.DS,
162
+			'about' => EE_ADMIN_PAGES.'about'.DS,
163
+			'support' => EE_ADMIN_PAGES.'support'.DS
164 164
 		);
165 165
 	}
166 166
 
@@ -175,36 +175,36 @@  discard block
 block discarded – undo
175 175
 	public function init() {
176 176
 
177 177
 		//only enable most of the EE_Admin IF we're not in full maintenance mode
178
-		if ( EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ){
178
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
179 179
 			//ok so we want to enable the entire admin
180
-			add_action( 'wp_ajax_dismiss_ee_nag_notice', array( $this, 'dismiss_ee_nag_notice_callback' ));
181
-			add_action( 'save_post', array( 'EE_Admin', 'parse_post_content_on_save' ), 100, 2 );
182
-			add_action( 'update_option', array( $this, 'reset_page_for_posts_on_change' ), 100, 3 );
183
-			add_filter( 'content_save_pre', array( $this, 'its_eSpresso' ), 10, 1 );
184
-			add_action( 'admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
185
-			add_action( 'network_admin_notices', array( $this, 'get_persistent_admin_notices' ), 9 );
180
+			add_action('wp_ajax_dismiss_ee_nag_notice', array($this, 'dismiss_ee_nag_notice_callback'));
181
+			add_action('save_post', array('EE_Admin', 'parse_post_content_on_save'), 100, 2);
182
+			add_action('update_option', array($this, 'reset_page_for_posts_on_change'), 100, 3);
183
+			add_filter('content_save_pre', array($this, 'its_eSpresso'), 10, 1);
184
+			add_action('admin_notices', array($this, 'get_persistent_admin_notices'), 9);
185
+			add_action('network_admin_notices', array($this, 'get_persistent_admin_notices'), 9);
186 186
 			//at a glance dashboard widget
187
-			add_filter( 'dashboard_glance_items', array( $this, 'dashboard_glance_items'), 10 );
187
+			add_filter('dashboard_glance_items', array($this, 'dashboard_glance_items'), 10);
188 188
 			//filter for get_edit_post_link used on comments for custom post types
189
-			add_filter('get_edit_post_link', array( $this, 'modify_edit_post_link' ), 10, 3 );
189
+			add_filter('get_edit_post_link', array($this, 'modify_edit_post_link'), 10, 3);
190 190
 		}
191 191
 
192 192
 		// run the admin page factory but ONLY if we are doing an ee admin ajax request
193
-		if ( !defined('DOING_AJAX') || EE_ADMIN_AJAX ) {
193
+		if ( ! defined('DOING_AJAX') || EE_ADMIN_AJAX) {
194 194
 			try {
195 195
 				//this loads the controller for the admin pages which will setup routing etc
196
-				EE_Registry::instance()->load_core( 'Admin_Page_Loader' );
197
-			} catch ( EE_Error $e ) {
196
+				EE_Registry::instance()->load_core('Admin_Page_Loader');
197
+			} catch (EE_Error $e) {
198 198
 				$e->get_error();
199 199
 			}
200 200
 		}
201 201
 
202 202
 		//make sure our CPTs and custom taxonomy metaboxes get shown for first time users
203
-		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes' ), 10 );
204
-		add_action('admin_head', array( $this, 'register_custom_nav_menu_boxes' ), 10 );
203
+		add_action('admin_head', array($this, 'enable_hidden_ee_nav_menu_metaboxes'), 10);
204
+		add_action('admin_head', array($this, 'register_custom_nav_menu_boxes'), 10);
205 205
 
206 206
 		//exclude EE critical pages from all nav menus and wp_list_pages
207
-		add_filter('nav_menu_meta_box_object', array( $this, 'remove_pages_from_nav_menu'), 10 );
207
+		add_filter('nav_menu_meta_box_object', array($this, 'remove_pages_from_nav_menu'), 10);
208 208
 	}
209 209
 
210 210
 
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
 	 * @param  object $post_type WP post type object
218 218
 	 * @return object            WP post type object
219 219
 	 */
220
-	public function remove_pages_from_nav_menu( $post_type ) {
220
+	public function remove_pages_from_nav_menu($post_type) {
221 221
 		//if this isn't the "pages" post type let's get out
222
-		if ( $post_type->name !== 'page' )
222
+		if ($post_type->name !== 'page')
223 223
 			return $post_type;
224 224
 
225 225
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
@@ -239,28 +239,28 @@  discard block
 block discarded – undo
239 239
 	 */
240 240
 	public function enable_hidden_ee_nav_menu_metaboxes() {
241 241
 		global $wp_meta_boxes, $pagenow;
242
-		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php' ) {
242
+		if ( ! is_array($wp_meta_boxes) || $pagenow !== 'nav-menus.php') {
243 243
 			return;
244 244
 		}
245 245
 		$user = wp_get_current_user();
246 246
 		//has this been done yet?
247
-		if ( get_user_option( 'ee_nav_menu_initialized', $user->ID ) ) {
247
+		if (get_user_option('ee_nav_menu_initialized', $user->ID)) {
248 248
 			return;
249 249
 		}
250 250
 
251
-		$hidden_meta_boxes = get_user_option( 'metaboxhidden_nav-menus', $user->ID );
252
-		$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' ) );
251
+		$hidden_meta_boxes = get_user_option('metaboxhidden_nav-menus', $user->ID);
252
+		$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'));
253 253
 
254
-		if ( is_array( $hidden_meta_boxes ) ) {
255
-			foreach ( $hidden_meta_boxes as $key => $meta_box_id ) {
256
-				if ( in_array( $meta_box_id, $initial_meta_boxes ) ) {
257
-					unset( $hidden_meta_boxes[ $key ] );
254
+		if (is_array($hidden_meta_boxes)) {
255
+			foreach ($hidden_meta_boxes as $key => $meta_box_id) {
256
+				if (in_array($meta_box_id, $initial_meta_boxes)) {
257
+					unset($hidden_meta_boxes[$key]);
258 258
 				}
259 259
 			}
260 260
 		}
261 261
 
262
-		update_user_option( $user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true );
263
-		update_user_option( $user->ID, 'ee_nav_menu_initialized', 1, true );
262
+		update_user_option($user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true);
263
+		update_user_option($user->ID, 'ee_nav_menu_initialized', 1, true);
264 264
 	}
265 265
 
266 266
 
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	 * @return void
280 280
 	 */
281 281
 	public function register_custom_nav_menu_boxes() {
282
-		add_meta_box( 'add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array( $this, 'ee_cpt_archive_pages' ), 'nav-menus', 'side', 'core' );
282
+		add_meta_box('add-extra-nav-menu-pages', __('Event Espresso Pages', 'event_espresso'), array($this, 'ee_cpt_archive_pages'), 'nav-menus', 'side', 'core');
283 283
 	}
284 284
 
285 285
 
@@ -296,17 +296,17 @@  discard block
 block discarded – undo
296 296
 	 *
297 297
 	 * @return string  the (maybe) modified link
298 298
 	 */
299
-	public function modify_edit_post_link( $link, $id, $context ) {
300
-		if ( ! $post = get_post( $id ) )
299
+	public function modify_edit_post_link($link, $id, $context) {
300
+		if ( ! $post = get_post($id))
301 301
 			return $link;
302 302
 
303
-		if ( $post->post_type == 'espresso_attendees' ) {
303
+		if ($post->post_type == 'espresso_attendees') {
304 304
 			$query_args = array(
305 305
 				'action' => 'edit_attendee',
306 306
 				'post' => $id
307 307
 				);
308 308
 			EE_Registry::instance()->load_helper('URL');
309
-			return EEH_URL::add_query_args_and_nonce( $query_args, admin_url('admin.php?page=espresso_registrations') );
309
+			return EEH_URL::add_query_args_and_nonce($query_args, admin_url('admin.php?page=espresso_registrations'));
310 310
 		}
311 311
 		return $link;
312 312
 	}
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 		global $nav_menu_selected_id;
319 319
 
320 320
 		$db_fields = false;
321
-		$walker = new Walker_Nav_Menu_Checklist( $db_fields );
321
+		$walker = new Walker_Nav_Menu_Checklist($db_fields);
322 322
 		$current_tab = 'event-archives';
323 323
 
324 324
 		/*if ( ! empty( $_REQUEST['quick-search-posttype-' . $post_type_name] ) ) {
@@ -337,9 +337,9 @@  discard block
 block discarded – undo
337 337
 		?>
338 338
 		<div id="posttype-extra-nav-menu-pages" class="posttypediv">
339 339
 			<ul id="posttype-extra-nav-menu-pages-tabs" class="posttype-tabs add-menu-item-tabs">
340
-				<li <?php echo ( 'event-archives' == $current_tab ? ' class="tabs"' : '' ); ?>>
341
-					<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">
342
-						<?php _e( 'Event Archive Pages', 'event_espresso' ); ?>
340
+				<li <?php echo ('event-archives' == $current_tab ? ' class="tabs"' : ''); ?>>
341
+					<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">
342
+						<?php _e('Event Archive Pages', 'event_espresso'); ?>
343 343
 					</a>
344 344
 				</li>
345 345
 			<?php /* // temporarily removing but leaving skeleton in place in case we ever decide to add more tabs.
@@ -357,13 +357,13 @@  discard block
 block discarded – undo
357 357
  			<?php */ ?>
358 358
 
359 359
 			<div id="tabs-panel-posttype-extra-nav-menu-pages-event-archives" class="tabs-panel <?php
360
-			echo ( 'event-archives' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
360
+			echo ('event-archives' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive');
361 361
 			?>">
362 362
 				<ul id="extra-nav-menu-pageschecklist-event-archives" class="categorychecklist form-no-clear">
363 363
 					<?php
364 364
 					$pages = $this->_get_extra_nav_menu_pages_items();
365 365
 					$args['walker'] = $walker;
366
-					echo walk_nav_menu_tree( array_map( array( $this, '_setup_extra_nav_menu_pages_items' ), $pages), 0, (object) $args );
366
+					echo walk_nav_menu_tree(array_map(array($this, '_setup_extra_nav_menu_pages_items'), $pages), 0, (object) $args);
367 367
 					?>
368 368
 				</ul>
369 369
 			</div><!-- /.tabs-panel -->
@@ -371,18 +371,18 @@  discard block
 block discarded – undo
371 371
 			<p class="button-controls">
372 372
 				<span class="list-controls">
373 373
 					<a href="<?php
374
-						echo esc_url( add_query_arg(
374
+						echo esc_url(add_query_arg(
375 375
 							array(
376 376
 								'extra-nav-menu-pages-tab' => 'event-archives',
377 377
 								'selectall' => 1,
378 378
 							),
379
-							remove_query_arg( $removed_args )
379
+							remove_query_arg($removed_args)
380 380
 						));
381 381
 					?>#posttype-extra-nav-menu-pages>" class="select-all"><?php _e('Select All'); ?></a>
382 382
 				</span>
383 383
 
384 384
 				<span class="add-to-menu">
385
-					<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' ); ?>" />
385
+					<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 386
 					<span class="spinner"></span>
387 387
 				</span>
388 388
 			</p>
@@ -403,10 +403,10 @@  discard block
 block discarded – undo
403 403
 	private function _get_extra_nav_menu_pages_items() {
404 404
 		$menuitems[] = array(
405 405
 			'title' => __('Event List', 'event_espresso'),
406
-			'url' => get_post_type_archive_link( 'espresso_events' ),
406
+			'url' => get_post_type_archive_link('espresso_events'),
407 407
 			'description' => __('Archive page for all events.', 'event_espresso')
408 408
 		);
409
-		return apply_filters( 'FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems );
409
+		return apply_filters('FHEE__EE_Admin__get_extra_nav_menu_pages_items', $menuitems);
410 410
 	}
411 411
 
412 412
 
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
 	 * @param $menu_item_values
419 419
 	 * @return stdClass
420 420
 	 */
421
-	private function _setup_extra_nav_menu_pages_items( $menu_item_values ) {
421
+	private function _setup_extra_nav_menu_pages_items($menu_item_values) {
422 422
 		$menu_item = new stdClass();
423 423
 		$keys = array(
424 424
 			'ID' => 0,
@@ -438,8 +438,8 @@  discard block
 block discarded – undo
438 438
 			'xfn' => ''
439 439
 		);
440 440
 
441
-		foreach ( $keys as $key => $value) {
442
-			$menu_item->{$key} = isset( $menu_item_values[ $key]) ? $menu_item_values[ $key] : $value;
441
+		foreach ($keys as $key => $value) {
442
+			$menu_item->{$key} = isset($menu_item_values[$key]) ? $menu_item_values[$key] : $value;
443 443
 		}
444 444
 		return $menu_item;
445 445
 	}
@@ -478,10 +478,10 @@  discard block
 block discarded – undo
478 478
 		 * - check if doing post processing of one of EE CPTs
479 479
 		 * - instantiate the corresponding EE CPT model for the post_type being processed.
480 480
 		 */
481
-		if ( isset( $_POST['action'] ) && $_POST['action'] == 'editpost' ) {
482
-			if ( isset( $_POST['post_type'] ) ) {
483
-				EE_Registry::instance()->load_core( 'Register_CPTs' );
484
-				EE_Register_CPTs::instantiate_cpt_models( $_POST['post_type'] );
481
+		if (isset($_POST['action']) && $_POST['action'] == 'editpost') {
482
+			if (isset($_POST['post_type'])) {
483
+				EE_Registry::instance()->load_core('Register_CPTs');
484
+				EE_Register_CPTs::instantiate_cpt_models($_POST['post_type']);
485 485
 			}
486 486
 		}
487 487
 
@@ -491,8 +491,8 @@  discard block
 block discarded – undo
491 491
 		 * 'options-reading.php' core WordPress admin settings page.  This is for user-proofing.
492 492
 		 */
493 493
 		global $pagenow;
494
-		if ( $pagenow == 'options-reading.php' ) {
495
-			add_filter( 'wp_dropdown_pages', array( $this, 'modify_dropdown_pages' ) );
494
+		if ($pagenow == 'options-reading.php') {
495
+			add_filter('wp_dropdown_pages', array($this, 'modify_dropdown_pages'));
496 496
 		}
497 497
 
498 498
 	}
@@ -504,25 +504,25 @@  discard block
 block discarded – undo
504 504
 	 * @param string $output  Current output.
505 505
 	 * @return string
506 506
 	 */
507
-	public function modify_dropdown_pages( $output ) {
507
+	public function modify_dropdown_pages($output) {
508 508
 		//get critical pages
509 509
 		$critical_pages = EE_Registry::instance()->CFG->core->get_critical_pages_array();
510 510
 
511 511
 		//split current output by line break for easier parsing.
512
-		$split_output = explode( "\n", $output );
512
+		$split_output = explode("\n", $output);
513 513
 
514 514
 		//loop through to remove any critical pages from the array.
515
-		foreach ( $critical_pages as $page_id ) {
516
-			$needle = 'value="' . $page_id . '"';
517
-			foreach( $split_output as $key => $haystack ) {
518
-				if( strpos( $haystack, $needle ) !== false ) {
519
-					unset( $split_output[$key] );
515
+		foreach ($critical_pages as $page_id) {
516
+			$needle = 'value="'.$page_id.'"';
517
+			foreach ($split_output as $key => $haystack) {
518
+				if (strpos($haystack, $needle) !== false) {
519
+					unset($split_output[$key]);
520 520
 				}
521 521
 			}
522 522
 		}
523 523
 
524 524
 		//replace output with the new contents
525
-		$output = implode( "\n", $split_output );
525
+		$output = implode("\n", $split_output);
526 526
 
527 527
 		return $output;
528 528
 	}
@@ -538,37 +538,37 @@  discard block
 block discarded – undo
538 538
 	public function enqueue_admin_scripts() {
539 539
 		// this javascript is loaded on every admin page to catch any injections ee needs to add to wp run js.
540 540
 		// Note: the intention of this script is to only do TARGETED injections.  I.E, only injecting on certain script calls.
541
-		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL . 'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
541
+		wp_enqueue_script('ee-inject-wp', EE_ADMIN_URL.'assets/ee-cpt-wp-injects.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
542 542
 		// register cookie script for future dependencies
543
-		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL . 'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE );
543
+		wp_register_script('jquery-cookie', EE_THIRD_PARTY_URL.'joyride/jquery.cookie.js', array('jquery'), '2.1', TRUE);
544 544
 		// 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' );
545
-		if ( apply_filters( 'FHEE_load_jquery_validate', FALSE ) ) {
545
+		if (apply_filters('FHEE_load_jquery_validate', FALSE)) {
546 546
 			// register jQuery Validate
547
-			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL . 'scripts/jquery.validate.min.js', array('jquery'), '1.11.1', TRUE);
547
+			wp_register_script('jquery-validate', EE_GLOBAL_ASSETS_URL.'scripts/jquery.validate.min.js', array('jquery'), '1.11.1', TRUE);
548 548
 		}
549 549
 		//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' );
550
-		if ( apply_filters( 'FHEE_load_joyride', FALSE ) ) {
550
+		if (apply_filters('FHEE_load_joyride', FALSE)) {
551 551
 			//joyride style
552
-			wp_register_style('joyride-css', EE_THIRD_PARTY_URL . 'joyride/joyride-2.1.css', array(), '2.1');
553
-			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL . 'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION );
554
-			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL . 'joyride/modernizr.mq.js', array(), '2.1', TRUE );
552
+			wp_register_style('joyride-css', EE_THIRD_PARTY_URL.'joyride/joyride-2.1.css', array(), '2.1');
553
+			wp_register_style('ee-joyride-css', EE_GLOBAL_ASSETS_URL.'css/ee-joyride-styles.css', array('joyride-css'), EVENT_ESPRESSO_VERSION);
554
+			wp_register_script('joyride-modernizr', EE_THIRD_PARTY_URL.'joyride/modernizr.mq.js', array(), '2.1', TRUE);
555 555
 			//joyride JS
556
-			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL . 'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE );
556
+			wp_register_script('jquery-joyride', EE_THIRD_PARTY_URL.'joyride/jquery.joyride-2.1.js', array('jquery-cookie', 'joyride-modernizr'), '2.1', TRUE);
557 557
 			// wanna go for a joyride?
558 558
 			wp_enqueue_style('ee-joyride-css');
559 559
 			wp_enqueue_script('jquery-joyride');
560 560
 		}
561 561
 		//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' );
562
-		if ( apply_filters( 'FHEE_load_qtip', FALSE ) ) {
562
+		if (apply_filters('FHEE_load_qtip', FALSE)) {
563 563
 			EE_Registry::instance()->load_helper('Qtip_Loader');
564 564
 			EEH_Qtip_Loader::instance()->register_and_enqueue();
565 565
 		}
566 566
 		//accounting.js library
567 567
 		// @link http://josscrowcroft.github.io/accounting.js/
568
-		if ( apply_filters( 'FHEE_load_accounting_js', FALSE ) ) {
569
-			wp_register_script( 'ee-accounting', EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE );
570
-			wp_register_script( 'ee-accounting-core', EE_THIRD_PARTY_URL . 'accounting/accounting.js', array('underscore'), '0.3.2', TRUE );
571
-			wp_enqueue_script( 'ee-accounting' );
568
+		if (apply_filters('FHEE_load_accounting_js', FALSE)) {
569
+			wp_register_script('ee-accounting', EE_GLOBAL_ASSETS_URL.'scripts/ee-accounting-config.js', array('ee-accounting-core'), EVENT_ESPRESSO_VERSION, TRUE);
570
+			wp_register_script('ee-accounting-core', EE_THIRD_PARTY_URL.'accounting/accounting.js', array('underscore'), '0.3.2', TRUE);
571
+			wp_enqueue_script('ee-accounting');
572 572
 			// array of settings to get converted to JSON array via wp_localize_script
573 573
 			$currency_config = array(
574 574
 				'currency' => array(
@@ -615,11 +615,11 @@  discard block
 block discarded – undo
615 615
 	public function get_persistent_admin_notices() {
616 616
 		// http://www.example.com/wp-admin/admin.php?page=espresso_general_settings&action=critical_pages&critical_pages_nonce=2831ce0f30
617 617
 		$args = array(
618
-			'page' => EE_Registry::instance()->REQ->is_set( 'page' ) ? EE_Registry::instance()->REQ->get( 'page' ) : '',
619
-			'action' => EE_Registry::instance()->REQ->is_set( 'action' ) ? EE_Registry::instance()->REQ->get( 'action' ) : '',
618
+			'page' => EE_Registry::instance()->REQ->is_set('page') ? EE_Registry::instance()->REQ->get('page') : '',
619
+			'action' => EE_Registry::instance()->REQ->is_set('action') ? EE_Registry::instance()->REQ->get('action') : '',
620 620
 		);
621
-		$return_url = EE_Admin_Page::add_query_args_and_nonce( $args, EE_ADMIN_URL );
622
-		echo EE_Error::get_persistent_admin_notices( $return_url );
621
+		$return_url = EE_Admin_Page::add_query_args_and_nonce($args, EE_ADMIN_URL);
622
+		echo EE_Error::get_persistent_admin_notices($return_url);
623 623
 	}
624 624
 
625 625
 
@@ -640,26 +640,26 @@  discard block
 block discarded – undo
640 640
 	 * @param $elements
641 641
 	 * @return array
642 642
 	 */
643
-	public function dashboard_glance_items( $elements ) {
643
+	public function dashboard_glance_items($elements) {
644 644
 		$events = EEM_Event::instance()->count();
645
-		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_events'), admin_url('admin.php') );
646
-		$items['events']['text'] = sprintf( _n( '%s Event', '%s Events', $events ), number_format_i18n( $events ) );
645
+		$items['events']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_events'), admin_url('admin.php'));
646
+		$items['events']['text'] = sprintf(_n('%s Event', '%s Events', $events), number_format_i18n($events));
647 647
 		$items['events']['title'] = __('Click to view all Events', 'event_espresso');
648 648
 		$registrations = EEM_Registration::instance()->count(
649 649
 			array(
650 650
 				array(
651
-					'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete )
651
+					'STS_ID' => array('!=', EEM_Registration::status_id_incomplete)
652 652
 				)
653 653
 			)
654 654
 		);
655
-		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce( array('page' => 'espresso_registrations' ), admin_url('admin.php') );
656
-		$items['registrations']['text'] = sprintf( _n( '%s Registration', '%s Registrations', $registrations ), number_format_i18n($registrations) );
655
+		$items['registrations']['url'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_registrations'), admin_url('admin.php'));
656
+		$items['registrations']['text'] = sprintf(_n('%s Registration', '%s Registrations', $registrations), number_format_i18n($registrations));
657 657
 		$items['registrations']['title'] = __('Click to view all registrations', 'event_espresso');
658 658
 
659
-		$items = apply_filters( 'FHEE__EE_Admin__dashboard_glance_items__items', $items );
659
+		$items = apply_filters('FHEE__EE_Admin__dashboard_glance_items__items', $items);
660 660
 
661
-		foreach ( $items as $type => $item_properties ) {
662
-			$elements[] = sprintf( '<a class="ee-dashboard-link-' . $type . '" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text'] );
661
+		foreach ($items as $type => $item_properties) {
662
+			$elements[] = sprintf('<a class="ee-dashboard-link-'.$type.'" href="%s" title="%s">%s</a>', $item_properties['url'], $item_properties['title'], $item_properties['text']);
663 663
 		}
664 664
 		return $elements;
665 665
 	}
@@ -678,63 +678,63 @@  discard block
 block discarded – undo
678 678
 	 * @param $post
679 679
 	 * @return    void
680 680
 	 */
681
-	public static function parse_post_content_on_save( $post_ID, $post ) {
681
+	public static function parse_post_content_on_save($post_ID, $post) {
682 682
 		// default post types
683
-		$post_types = array( 'post' => 0, 'page' => 1 );
683
+		$post_types = array('post' => 0, 'page' => 1);
684 684
 		// add CPTs
685 685
 		$CPTs = EE_Register_CPTs::get_CPTs();
686
-		$post_types = array_merge( $post_types, $CPTs );
686
+		$post_types = array_merge($post_types, $CPTs);
687 687
 		// for default or CPT posts...
688
-		if ( isset( $post_types[ $post->post_type ] )) {
688
+		if (isset($post_types[$post->post_type])) {
689 689
 			// post on frontpage ?
690 690
 			$page_for_posts = EE_Config::get_page_for_posts();
691 691
 			$maybe_remove_from_posts = array();
692 692
 			// critical page shortcodes that we do NOT want added to the Posts page (blog)
693 693
 			$critical_shortcodes = EE_Registry::instance()->CFG->core->get_critical_pages_shortcodes_array();
694 694
 			// array of shortcodes indexed by post name
695
-			EE_Registry::instance()->CFG->core->post_shortcodes = isset( EE_Registry::instance()->CFG->core->post_shortcodes ) ? EE_Registry::instance()->CFG->core->post_shortcodes : array();
695
+			EE_Registry::instance()->CFG->core->post_shortcodes = isset(EE_Registry::instance()->CFG->core->post_shortcodes) ? EE_Registry::instance()->CFG->core->post_shortcodes : array();
696 696
 			// whether to proceed with update, if an entry already exists for this post, then we want to update
697
-			$update_post_shortcodes = isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ] ) ? true : false;
697
+			$update_post_shortcodes = isset(EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name]) ? true : false;
698 698
 			// empty both arrays
699
-			EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ] = array();
699
+			EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name] = array();
700 700
 			// check that posts page is already being tracked
701
-			if ( ! isset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ] ) ) {
701
+			if ( ! isset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts])) {
702 702
 				// if not, then ensure that it is properly added
703
-				EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ] = array();
703
+				EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts] = array();
704 704
 			}
705 705
 			// loop thru shortcodes
706
-			foreach ( EE_Registry::instance()->shortcodes as $EES_Shortcode => $shortcode_dir ) {
706
+			foreach (EE_Registry::instance()->shortcodes as $EES_Shortcode => $shortcode_dir) {
707 707
 				// convert to UPPERCASE to get actual shortcode
708
-				$EES_Shortcode = strtoupper( $EES_Shortcode );
708
+				$EES_Shortcode = strtoupper($EES_Shortcode);
709 709
 				// is the shortcode in the post_content ?
710
-				if ( strpos( $post->post_content, $EES_Shortcode ) !== FALSE ) {
710
+				if (strpos($post->post_content, $EES_Shortcode) !== FALSE) {
711 711
 					// map shortcode to post names and post IDs
712
-					EE_Registry::instance()->CFG->core->post_shortcodes[ $post->post_name ][ $EES_Shortcode ] = $post_ID;
712
+					EE_Registry::instance()->CFG->core->post_shortcodes[$post->post_name][$EES_Shortcode] = $post_ID;
713 713
 					// if the shortcode is NOT one of the critical page shortcodes like ESPRESSO_TXN_PAGE
714
-					if ( ! in_array( $EES_Shortcode, $critical_shortcodes )) {
714
+					if ( ! in_array($EES_Shortcode, $critical_shortcodes)) {
715 715
 						// add shortcode to "Posts page" tracking
716
-						EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ][ $EES_Shortcode ] = $post_ID;
716
+						EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts][$EES_Shortcode] = $post_ID;
717 717
 					}
718 718
 					$update_post_shortcodes = TRUE;
719
-					unset( $maybe_remove_from_posts[ $EES_Shortcode ] );
719
+					unset($maybe_remove_from_posts[$EES_Shortcode]);
720 720
 				} else {
721
-					$maybe_remove_from_posts[ $EES_Shortcode ] = $post_ID;
721
+					$maybe_remove_from_posts[$EES_Shortcode] = $post_ID;
722 722
 				}
723 723
 			}
724
-			if ( $update_post_shortcodes ) {
724
+			if ($update_post_shortcodes) {
725 725
 				// remove shortcodes from $maybe_remove_from_posts that are still being used
726
-				foreach ( EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $shortcodes ) {
727
-					if ( $post_name == $page_for_posts ) {
726
+				foreach (EE_Registry::instance()->CFG->core->post_shortcodes as $post_name => $shortcodes) {
727
+					if ($post_name == $page_for_posts) {
728 728
 						continue;
729 729
 					}
730 730
 					// compute difference between active post_shortcodes array and $maybe_remove_from_posts array
731
-					$maybe_remove_from_posts = array_diff_key( $maybe_remove_from_posts, $shortcodes );
731
+					$maybe_remove_from_posts = array_diff_key($maybe_remove_from_posts, $shortcodes);
732 732
 				}
733 733
 				// now unset unused shortcodes from the $page_for_posts post_shortcodes
734
-				foreach ( $maybe_remove_from_posts as $shortcode => $post_ID ) {
735
-					unset( EE_Registry::instance()->CFG->core->post_shortcodes[ $page_for_posts ][ $shortcode ] );
734
+				foreach ($maybe_remove_from_posts as $shortcode => $post_ID) {
735
+					unset(EE_Registry::instance()->CFG->core->post_shortcodes[$page_for_posts][$shortcode]);
736 736
 				}
737
-				EE_Registry::instance()->CFG->update_post_shortcodes( $page_for_posts );
737
+				EE_Registry::instance()->CFG->update_post_shortcodes($page_for_posts);
738 738
 			}
739 739
 		}
740 740
 	}
@@ -752,32 +752,32 @@  discard block
 block discarded – undo
752 752
 	 * @throws EE_Error
753 753
 	 * @return    string
754 754
 	 */
755
-	public function check_for_invalid_datetime_formats( $value, $option ) {
756
-		EE_Registry::instance()->load_helper( 'DTT_Helper' );
755
+	public function check_for_invalid_datetime_formats($value, $option) {
756
+		EE_Registry::instance()->load_helper('DTT_Helper');
757 757
 		// check for date_format or time_format
758
-		switch ( $option ) {
758
+		switch ($option) {
759 759
 			case 'date_format' :
760
-				$date_time_format = $value . ' ' . get_option('time_format');
760
+				$date_time_format = $value.' '.get_option('time_format');
761 761
 				break;
762 762
 			case 'time_format' :
763
-				$date_time_format = get_option('date_format') . ' ' . $value;
763
+				$date_time_format = get_option('date_format').' '.$value;
764 764
 				break;
765 765
 			default :
766 766
 				$date_time_format = FALSE;
767 767
 		}
768 768
 		// do we have a date_time format to check ?
769
-		if ( $date_time_format ) {
770
-			$error_msg = EEH_DTT_Helper::validate_format_string( $date_time_format );
769
+		if ($date_time_format) {
770
+			$error_msg = EEH_DTT_Helper::validate_format_string($date_time_format);
771 771
 
772
-			if ( is_array( $error_msg ) ) {
773
-				$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>';
772
+			if (is_array($error_msg)) {
773
+				$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>';
774 774
 
775 775
 
776
-				foreach ( $error_msg as $error ) {
777
-					$msg .= '<li>' . $error . '</li>';
776
+				foreach ($error_msg as $error) {
777
+					$msg .= '<li>'.$error.'</li>';
778 778
 				}
779 779
 
780
-				$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>';
780
+				$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 781
 
782 782
 				// trigger WP settings error
783 783
 				add_settings_error(
@@ -787,7 +787,7 @@  discard block
 block discarded – undo
787 787
 				);
788 788
 
789 789
 				// set format to something valid
790
-				switch ( $option ) {
790
+				switch ($option) {
791 791
 					case 'date_format' :
792 792
 						$value = 'F j, Y';
793 793
 						break;
@@ -813,14 +813,14 @@  discard block
 block discarded – undo
813 813
 	 * @param 	$value
814 814
 	 * @return 	void
815 815
 	 */
816
-	public function reset_page_for_posts_on_change( $option, $old_value, $value ) {
817
-		if ( $option == 'page_for_posts' ) {
816
+	public function reset_page_for_posts_on_change($option, $old_value, $value) {
817
+		if ($option == 'page_for_posts') {
818 818
 			global $wpdb;
819
-			$SQL = 'SELECT post_name from ' . $wpdb->posts . ' WHERE post_type="posts" OR post_type="page" AND post_status="publish" AND ID=%s';
820
-			$old_page_for_posts = $old_value ? $wpdb->get_var( $wpdb->prepare( $SQL, $old_value )) : 'posts';
821
-			$new_page_for_posts = $value ? $wpdb->get_var( $wpdb->prepare( $SQL, $value )) : 'posts';
822
-			EE_Registry::instance()->CFG->core->post_shortcodes[ $new_page_for_posts ] = EE_Registry::instance()->CFG->core->post_shortcodes[ $old_page_for_posts ];
823
-			EE_Registry::instance()->CFG->update_post_shortcodes( $new_page_for_posts );
819
+			$SQL = 'SELECT post_name from '.$wpdb->posts.' WHERE post_type="posts" OR post_type="page" AND post_status="publish" AND ID=%s';
820
+			$old_page_for_posts = $old_value ? $wpdb->get_var($wpdb->prepare($SQL, $old_value)) : 'posts';
821
+			$new_page_for_posts = $value ? $wpdb->get_var($wpdb->prepare($SQL, $value)) : 'posts';
822
+			EE_Registry::instance()->CFG->core->post_shortcodes[$new_page_for_posts] = EE_Registry::instance()->CFG->core->post_shortcodes[$old_page_for_posts];
823
+			EE_Registry::instance()->CFG->update_post_shortcodes($new_page_for_posts);
824 824
 		}
825 825
 	}
826 826
 
@@ -833,8 +833,8 @@  discard block
 block discarded – undo
833 833
 	 * @param $content
834 834
 	 * @return    string
835 835
 	 */
836
-	public function its_eSpresso( $content ) {
837
-		return str_replace( '[EXPRESSO_', '[ESPRESSO_', $content );
836
+	public function its_eSpresso($content) {
837
+		return str_replace('[EXPRESSO_', '[ESPRESSO_', $content);
838 838
 	}
839 839
 
840 840
 
@@ -847,9 +847,9 @@  discard block
 block discarded – undo
847 847
 	 */
848 848
 	public function espresso_admin_footer() {
849 849
 		return sprintf(
850
-			__( 'Event Registration and Ticketing Powered by %sEvent Registration Powered by Event Espresso%s', 'event_espresso' ),
850
+			__('Event Registration and Ticketing Powered by %sEvent Registration Powered by Event Espresso%s', 'event_espresso'),
851 851
 			'<a href="https://eventespresso.com/" title="',
852
-			'">' . EVENT_ESPRESSO_POWERED_BY . '</a>'
852
+			'">'.EVENT_ESPRESSO_POWERED_BY.'</a>'
853 853
 		);
854 854
 	}
855 855
 
@@ -869,11 +869,11 @@  discard block
 block discarded – undo
869 869
 	 * @param array $config
870 870
 	 * @return void
871 871
 	 */
872
-	public static function register_ee_admin_page( $page_basename, $page_path, $config = array() ) {
873
-		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' );
874
-		if ( class_exists( 'EE_Register_Admin_Page' ) )
872
+	public static function register_ee_admin_page($page_basename, $page_path, $config = array()) {
873
+		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');
874
+		if (class_exists('EE_Register_Admin_Page'))
875 875
 			$config['page_path'] = $page_path;
876
-			EE_Register_Admin_Page::register( $page_basename, $config );
876
+			EE_Register_Admin_Page::register($page_basename, $config);
877 877
 	}
878 878
 
879 879
 
Please login to merge, or discard this patch.
core/business/EE_Transaction_Processor.class.php 1 patch
Spacing   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); }
2
-EE_Registry::instance()->load_class( 'Processor_Base' );
2
+EE_Registry::instance()->load_class('Processor_Base');
3 3
 
4 4
 /**
5 5
  * Class EE_Transaction_Processor
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
 	 * @param array $registration_query_params
51 51
 	 *@return EE_Transaction_Processor instance
52 52
 	 */
53
-	public static function instance( $registration_query_params = array() ) {
53
+	public static function instance($registration_query_params = array()) {
54 54
 		// check if class object is instantiated
55
-		if ( ! self::$_instance instanceof EE_Transaction_Processor ) {
56
-			self::$_instance = new self( $registration_query_params );
55
+		if ( ! self::$_instance instanceof EE_Transaction_Processor) {
56
+			self::$_instance = new self($registration_query_params);
57 57
 		}
58 58
 		return self::$_instance;
59 59
 	}
@@ -64,9 +64,9 @@  discard block
 block discarded – undo
64 64
 	 * @param array $registration_query_params
65 65
 	 * @return EE_Transaction_Processor
66 66
 	 */
67
-	private function __construct( $registration_query_params = array() ) {
67
+	private function __construct($registration_query_params = array()) {
68 68
 		// make sure some query params are set for retrieving registrations
69
-		$this->_set_registration_query_params( $registration_query_params );
69
+		$this->_set_registration_query_params($registration_query_params);
70 70
 	}
71 71
 
72 72
 
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 	 * @access private
76 76
 	 * @param array $registration_query_params
77 77
 	 */
78
-	private function _set_registration_query_params( $registration_query_params ) {
79
-		$this->_registration_query_params = ! empty( $registration_query_params ) ? $registration_query_params : array( 'order_by' => array( 'REG_count' => 'ASC' ));
78
+	private function _set_registration_query_params($registration_query_params) {
79
+		$this->_registration_query_params = ! empty($registration_query_params) ? $registration_query_params : array('order_by' => array('REG_count' => 'ASC'));
80 80
 	}
81 81
 
82 82
 
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
 	/**
94 94
 	 * @param string $old_txn_status
95 95
 	 */
96
-	public function set_old_txn_status( $old_txn_status ) {
96
+	public function set_old_txn_status($old_txn_status) {
97 97
 		// only set the first time
98
-		if ( $this->_old_txn_status === null ) {
98
+		if ($this->_old_txn_status === null) {
99 99
 			$this->_old_txn_status = $old_txn_status;
100 100
 		}
101 101
 	}
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	/**
115 115
 	 * @param string $new_txn_status
116 116
 	 */
117
-	public function set_new_txn_status( $new_txn_status ) {
117
+	public function set_new_txn_status($new_txn_status) {
118 118
 		$this->_new_txn_status = $new_txn_status;
119 119
 	}
120 120
 
@@ -145,17 +145,17 @@  discard block
 block discarded – undo
145 145
 	 * @param bool   $check_all
146 146
 	 * @return boolean | int
147 147
 	 */
148
-	private function _reg_steps_completed( EE_Transaction $transaction, $reg_step_slug = '', $check_all = TRUE ) {
148
+	private function _reg_steps_completed(EE_Transaction $transaction, $reg_step_slug = '', $check_all = TRUE) {
149 149
 		$reg_steps = $transaction->reg_steps();
150
-		if ( ! is_array( $reg_steps ) || empty( $reg_steps )) {
150
+		if ( ! is_array($reg_steps) || empty($reg_steps)) {
151 151
 			return false;
152 152
 		}
153 153
 		// loop thru reg steps array)
154
-		foreach ( $reg_steps as $slug => $reg_step_completed ) {
154
+		foreach ($reg_steps as $slug => $reg_step_completed) {
155 155
 			// if NOT checking ALL steps (only checking one step)
156
-			if ( ! $check_all ) {
156
+			if ( ! $check_all) {
157 157
 				// and this is the one
158
-				if ( $slug == $reg_step_slug ) {
158
+				if ($slug == $reg_step_slug) {
159 159
 					return $reg_step_completed;
160 160
 				} else {
161 161
 					// skip to next reg step in loop
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
 				}
164 164
 			}
165 165
 			// if any reg step is NOT completed (ignoring any specific steps), then just leave
166
-			if ( $reg_step_completed !== true && $slug != $reg_step_slug ) {
166
+			if ($reg_step_completed !== true && $slug != $reg_step_slug) {
167 167
 				return false;
168
-			} else if ( $slug == $reg_step_slug ) {
168
+			} else if ($slug == $reg_step_slug) {
169 169
 				// if we reach this point, then we are testing either:
170 170
 				// all_reg_steps_completed_except() or
171 171
 				// all_reg_steps_completed_except_final_step(),
@@ -190,8 +190,8 @@  discard block
 block discarded – undo
190 190
 	 * @param EE_Transaction $transaction
191 191
 	 * @return boolean
192 192
 	 */
193
-	public function all_reg_steps_completed( EE_Transaction $transaction ) {
194
-		return $this->_reg_steps_completed( $transaction );
193
+	public function all_reg_steps_completed(EE_Transaction $transaction) {
194
+		return $this->_reg_steps_completed($transaction);
195 195
 	}
196 196
 
197 197
 
@@ -208,8 +208,8 @@  discard block
 block discarded – undo
208 208
 	 * @param string $exception
209 209
 	 * @return boolean
210 210
 	 */
211
-	public function all_reg_steps_completed_except( EE_Transaction $transaction, $exception = '' ) {
212
-		return $this->_reg_steps_completed( $transaction, $exception );
211
+	public function all_reg_steps_completed_except(EE_Transaction $transaction, $exception = '') {
212
+		return $this->_reg_steps_completed($transaction, $exception);
213 213
 	}
214 214
 
215 215
 
@@ -225,8 +225,8 @@  discard block
 block discarded – undo
225 225
 	 * @param EE_Transaction $transaction
226 226
 	 * @return boolean
227 227
 	 */
228
-	public function all_reg_steps_completed_except_final_step( EE_Transaction $transaction ) {
229
-		return $this->_reg_steps_completed( $transaction, 'finalize_registration' );
228
+	public function all_reg_steps_completed_except_final_step(EE_Transaction $transaction) {
229
+		return $this->_reg_steps_completed($transaction, 'finalize_registration');
230 230
 	}
231 231
 
232 232
 
@@ -243,8 +243,8 @@  discard block
 block discarded – undo
243 243
 	 * @param string $reg_step_slug
244 244
 	 * @return boolean | int
245 245
 	 */
246
-	public function reg_step_completed( EE_Transaction $transaction, $reg_step_slug ) {
247
-		return $this->_reg_steps_completed( $transaction, $reg_step_slug, FALSE );
246
+	public function reg_step_completed(EE_Transaction $transaction, $reg_step_slug) {
247
+		return $this->_reg_steps_completed($transaction, $reg_step_slug, FALSE);
248 248
 	}
249 249
 
250 250
 
@@ -260,8 +260,8 @@  discard block
 block discarded – undo
260 260
 	 * @param EE_Transaction $transaction
261 261
 	 * @return boolean | int
262 262
 	 */
263
-	public function final_reg_step_completed( EE_Transaction $transaction ) {
264
-		return $this->_reg_steps_completed( $transaction, 'finalize_registration', FALSE );
263
+	public function final_reg_step_completed(EE_Transaction $transaction) {
264
+		return $this->_reg_steps_completed($transaction, 'finalize_registration', FALSE);
265 265
 	}
266 266
 
267 267
 
@@ -275,9 +275,9 @@  discard block
 block discarded – undo
275 275
 	 * @param string          $reg_step_slug
276 276
 	 * @return boolean
277 277
 	 */
278
-	public function set_reg_step_initiated( EE_Transaction $transaction, $reg_step_slug ) {
278
+	public function set_reg_step_initiated(EE_Transaction $transaction, $reg_step_slug) {
279 279
 		$current_time = time();
280
-		return $this->_set_reg_step_completed_status( $transaction, $reg_step_slug, $current_time );
280
+		return $this->_set_reg_step_completed_status($transaction, $reg_step_slug, $current_time);
281 281
 	}
282 282
 
283 283
 
@@ -291,8 +291,8 @@  discard block
 block discarded – undo
291 291
 	 * @param string          $reg_step_slug
292 292
 	 * @return boolean
293 293
 	 */
294
-	public function set_reg_step_completed( EE_Transaction $transaction, $reg_step_slug ) {
295
-		return $this->_set_reg_step_completed_status( $transaction, $reg_step_slug, TRUE );
294
+	public function set_reg_step_completed(EE_Transaction $transaction, $reg_step_slug) {
295
+		return $this->_set_reg_step_completed_status($transaction, $reg_step_slug, TRUE);
296 296
 	}
297 297
 
298 298
 
@@ -306,8 +306,8 @@  discard block
 block discarded – undo
306 306
 	 * @param string          $reg_step_slug
307 307
 	 * @return boolean
308 308
 	 */
309
-	public function set_reg_step_not_completed( EE_Transaction $transaction, $reg_step_slug ) {
310
-		return $this->_set_reg_step_completed_status( $transaction, $reg_step_slug, FALSE );
309
+	public function set_reg_step_not_completed(EE_Transaction $transaction, $reg_step_slug) {
310
+		return $this->_set_reg_step_completed_status($transaction, $reg_step_slug, FALSE);
311 311
 	}
312 312
 
313 313
 
@@ -323,36 +323,36 @@  discard block
 block discarded – undo
323 323
 	 * @param boolean | int $status
324 324
 	 * @return boolean
325 325
 	 */
326
-	private function _set_reg_step_completed_status( EE_Transaction $transaction, $reg_step_slug, $status ) {
326
+	private function _set_reg_step_completed_status(EE_Transaction $transaction, $reg_step_slug, $status) {
327 327
 		// validate status
328
-		$status = is_bool( $status ) || is_numeric( $status ) ? $status : false;
328
+		$status = is_bool($status) || is_numeric($status) ? $status : false;
329 329
 		// get reg steps array
330 330
 		$txn_reg_steps = $transaction->reg_steps();
331 331
 		// if reg step does NOT exist
332
-		if ( ! isset( $txn_reg_steps[ $reg_step_slug ] )) {
332
+		if ( ! isset($txn_reg_steps[$reg_step_slug])) {
333 333
 			return false;
334 334
 		}
335 335
 		// if  we're trying to complete a step that is already completed
336
-		if ( $txn_reg_steps[ $reg_step_slug ] === true ) {
336
+		if ($txn_reg_steps[$reg_step_slug] === true) {
337 337
 			return true;
338 338
 		}
339 339
 		// if  we're trying to complete a step that hasn't even started
340
-		if ( $status === true && $txn_reg_steps[ $reg_step_slug ] === false ) {
340
+		if ($status === true && $txn_reg_steps[$reg_step_slug] === false) {
341 341
 			return false;
342 342
 		}
343 343
 		// if current status value matches the incoming value (no change)
344
-		if ( $txn_reg_steps[ $reg_step_slug ] === $status ) {
344
+		if ($txn_reg_steps[$reg_step_slug] === $status) {
345 345
 			// this will happen in cases where multiple AJAX requests occur during the same step
346 346
 			return true;
347 347
 		}
348 348
 		// if we're trying to set a start time
349
-		if ( is_numeric( $status ) && is_numeric( $txn_reg_steps[ $reg_step_slug ] )) {
349
+		if (is_numeric($status) && is_numeric($txn_reg_steps[$reg_step_slug])) {
350 350
 			// skip the update below, but don't return FALSE so that errors won't be displayed
351 351
 			return true;
352 352
 		}
353 353
 		// update completed status
354
-		$txn_reg_steps[ $reg_step_slug ] = $status;
355
-		$transaction->set_reg_steps( $txn_reg_steps );
354
+		$txn_reg_steps[$reg_step_slug] = $status;
355
+		$transaction->set_reg_steps($txn_reg_steps);
356 356
 		$transaction->save();
357 357
 		// DEBUG LOG
358 358
 		//$this->log(
@@ -378,11 +378,11 @@  discard block
 block discarded – undo
378 378
 	 * @param string $reg_step_slug
379 379
 	 * @return void
380 380
 	 */
381
-	public function remove_reg_step( EE_Transaction $transaction, $reg_step_slug ) {
381
+	public function remove_reg_step(EE_Transaction $transaction, $reg_step_slug) {
382 382
 		// get reg steps array
383 383
 		$txn_reg_steps = $transaction->reg_steps();
384
-		unset( $txn_reg_steps[ $reg_step_slug ] );
385
-		$transaction->set_reg_steps( $txn_reg_steps );
384
+		unset($txn_reg_steps[$reg_step_slug]);
385
+		$transaction->set_reg_steps($txn_reg_steps);
386 386
 	}
387 387
 
388 388
 
@@ -396,14 +396,14 @@  discard block
 block discarded – undo
396 396
 	 * @param EE_Transaction $transaction
397 397
 	 * 	@return 	boolean
398 398
 	 */
399
-	public function toggle_failed_transaction_status( EE_Transaction $transaction ) {
399
+	public function toggle_failed_transaction_status(EE_Transaction $transaction) {
400 400
 		// set incoming TXN_Status
401
-		$this->set_old_txn_status( $transaction->status_ID() );
401
+		$this->set_old_txn_status($transaction->status_ID());
402 402
 		// if TXN status is still set as "failed"...
403
-		if ( $transaction->status_ID() == EEM_Transaction::failed_status_code ) {
403
+		if ($transaction->status_ID() == EEM_Transaction::failed_status_code) {
404 404
 			// set incoming TXN_Status
405
-			$this->set_new_txn_status( EEM_Transaction::abandoned_status_code );
406
-			$transaction->set_status( EEM_Transaction::abandoned_status_code );
405
+			$this->set_new_txn_status(EEM_Transaction::abandoned_status_code);
406
+			$transaction->set_status(EEM_Transaction::abandoned_status_code);
407 407
 			return TRUE;
408 408
 		}
409 409
 		return FALSE;
@@ -419,20 +419,20 @@  discard block
 block discarded – undo
419 419
 	 * @param EE_Transaction $transaction
420 420
 	 * 	@return 	boolean
421 421
 	 */
422
-	public function toggle_abandoned_transaction_status( EE_Transaction $transaction ) {
422
+	public function toggle_abandoned_transaction_status(EE_Transaction $transaction) {
423 423
 		// set incoming TXN_Status
424
-		$this->set_old_txn_status( $transaction->status_ID() );
424
+		$this->set_old_txn_status($transaction->status_ID());
425 425
 		// if TXN status has not been updated already due to a payment, and is still set as "failed" or "abandoned"...
426
-		if ( $transaction->status_ID() == EEM_Transaction::failed_status_code || $transaction->status_ID() == EEM_Transaction::abandoned_status_code ) {
427
-			$this->set_new_txn_status( EEM_Transaction::incomplete_status_code );
426
+		if ($transaction->status_ID() == EEM_Transaction::failed_status_code || $transaction->status_ID() == EEM_Transaction::abandoned_status_code) {
427
+			$this->set_new_txn_status(EEM_Transaction::incomplete_status_code);
428 428
 			// if a contact record for the primary registrant has been created
429
-			if ( $transaction->primary_registration() instanceof EE_Registration && $transaction->primary_registration()->attendee() instanceof EE_Attendee ) {
430
-				$transaction->set_status( EEM_Transaction::incomplete_status_code );
431
-				$this->set_new_txn_status( EEM_Transaction::incomplete_status_code );
429
+			if ($transaction->primary_registration() instanceof EE_Registration && $transaction->primary_registration()->attendee() instanceof EE_Attendee) {
430
+				$transaction->set_status(EEM_Transaction::incomplete_status_code);
431
+				$this->set_new_txn_status(EEM_Transaction::incomplete_status_code);
432 432
 			} else {
433 433
 				// no contact record? yer abandoned!
434
-				$transaction->set_status( EEM_Transaction::abandoned_status_code );
435
-				$this->set_new_txn_status( EEM_Transaction::abandoned_status_code );
434
+				$transaction->set_status(EEM_Transaction::abandoned_status_code);
435
+				$this->set_new_txn_status(EEM_Transaction::abandoned_status_code);
436 436
 			}
437 437
 			return TRUE;
438 438
 		}
@@ -450,16 +450,16 @@  discard block
 block discarded – undo
450 450
 	 * @param array 	$registration_query_params - array of query WHERE params to use when retrieving cached registrations from a transaction
451 451
 	 * 	@return 	boolean
452 452
 	 */
453
-	public function manually_update_registration_statuses( EE_Transaction $transaction, $new_reg_status = '', $registration_query_params = array() ) {
454
-		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor( 'manually_update_registration_status', $transaction, $registration_query_params, $new_reg_status );
453
+	public function manually_update_registration_statuses(EE_Transaction $transaction, $new_reg_status = '', $registration_query_params = array()) {
454
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor('manually_update_registration_status', $transaction, $registration_query_params, $new_reg_status);
455 455
 		// send messages
456 456
 		/** @type EE_Registration_Processor $registration_processor */
457
-		$registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' );
457
+		$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
458 458
 		$registration_processor->trigger_registration_update_notifications(
459 459
 			$transaction->primary_registration(),
460
-			array( 'manually_updated' 	=> true )
460
+			array('manually_updated' 	=> true)
461 461
 		);
462
-		do_action( 'AHEE__EE_Transaction_Processor__manually_update_registration_statuses', $transaction, $status_updates );
462
+		do_action('AHEE__EE_Transaction_Processor__manually_update_registration_statuses', $transaction, $status_updates);
463 463
 		return $status_updates;
464 464
 	}
465 465
 
@@ -473,9 +473,9 @@  discard block
 block discarded – undo
473 473
 	 * @param array 	$registration_query_params - array of query WHERE params to use when retrieving cached registrations from a transaction
474 474
 	 * 	@return 	boolean
475 475
 	 */
476
-	public function toggle_registration_statuses_for_default_approved_events( EE_Transaction $transaction, $registration_query_params = array() ) {
477
-		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor( 'toggle_registration_status_for_default_approved_events', $transaction, $registration_query_params );
478
-		do_action( 'AHEE__EE_Transaction_Processor__toggle_registration_statuses_for_default_approved_events', $transaction, $status_updates );
476
+	public function toggle_registration_statuses_for_default_approved_events(EE_Transaction $transaction, $registration_query_params = array()) {
477
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor('toggle_registration_status_for_default_approved_events', $transaction, $registration_query_params);
478
+		do_action('AHEE__EE_Transaction_Processor__toggle_registration_statuses_for_default_approved_events', $transaction, $status_updates);
479 479
 		return $status_updates;
480 480
 	}
481 481
 
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
 	 * @param array 	$registration_query_params - array of query WHERE params to use when retrieving cached registrations from a transaction
490 490
 	 * 	@return 	boolean
491 491
 	 */
492
-	public function toggle_registration_statuses_if_no_monies_owing( EE_Transaction $transaction, $registration_query_params = array() ) {
493
-		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor( 'toggle_registration_status_if_no_monies_owing', $transaction, $registration_query_params );
494
-		do_action( 'AHEE__EE_Transaction_Processor__toggle_registration_statuses_if_no_monies_owing', $transaction, $status_updates );
492
+	public function toggle_registration_statuses_if_no_monies_owing(EE_Transaction $transaction, $registration_query_params = array()) {
493
+		$status_updates = $this->_call_method_on_registrations_via_Registration_Processor('toggle_registration_status_if_no_monies_owing', $transaction, $registration_query_params);
494
+		do_action('AHEE__EE_Transaction_Processor__toggle_registration_statuses_if_no_monies_owing', $transaction, $status_updates);
495 495
 		return $status_updates;
496 496
 	}
497 497
 
@@ -507,17 +507,17 @@  discard block
 block discarded – undo
507 507
 	 * @throws \EE_Error
508 508
 	 * @return array
509 509
 	 */
510
-	public function update_transaction_and_registrations_after_checkout_or_payment( EE_Transaction $transaction, $payment = NULL, $registration_query_params = array() ) {
510
+	public function update_transaction_and_registrations_after_checkout_or_payment(EE_Transaction $transaction, $payment = NULL, $registration_query_params = array()) {
511 511
 		// set incoming TXN_Status, and consider it new since old status should have been set
512
-		$this->set_new_txn_status( $transaction->status_ID() );
513
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, $transaction->status_ID(), '$transaction->status_ID()' );
512
+		$this->set_new_txn_status($transaction->status_ID());
513
+		do_action('AHEE_log', __FILE__, __FUNCTION__, $transaction->status_ID(), '$transaction->status_ID()');
514 514
 		// make sure some query params are set for retrieving registrations
515
-		$this->_set_registration_query_params( $registration_query_params );
515
+		$this->_set_registration_query_params($registration_query_params);
516 516
 		// get final reg step status
517
-		$finalized = $this->final_reg_step_completed( $transaction );
517
+		$finalized = $this->final_reg_step_completed($transaction);
518 518
 		// if the 'finalize_registration' step has been initiated (has a timestamp) but has not yet been fully completed (TRUE)
519
-		if ( is_numeric( $finalized ) && $finalized !== true ) {
520
-			$this->set_reg_step_completed( $transaction, 'finalize_registration' );
519
+		if (is_numeric($finalized) && $finalized !== true) {
520
+			$this->set_reg_step_completed($transaction, 'finalize_registration');
521 521
 			$finalized = true;
522 522
 		}
523 523
 		$transaction->save();
@@ -540,13 +540,13 @@  discard block
 block discarded – undo
540 540
 
541 541
 		// send messages
542 542
 		/** @type EE_Registration_Processor $registration_processor */
543
-		$registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' );
543
+		$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
544 544
 		$registration_processor->trigger_registration_update_notifications(
545 545
 			$transaction->primary_registration(),
546 546
 			$update_params
547 547
 		);
548 548
 
549
-		do_action( 'AHEE__EE_Transaction_Processor__update_transaction_and_registrations_after_checkout_or_payment', $transaction, $update_params );
549
+		do_action('AHEE__EE_Transaction_Processor__update_transaction_and_registrations_after_checkout_or_payment', $transaction, $update_params);
550 550
 		return $update_params;
551 551
 	}
552 552
 
@@ -564,23 +564,23 @@  discard block
 block discarded – undo
564 564
 	 * @throws \EE_Error
565 565
 	 * @return boolean
566 566
 	 */
567
-	private function _call_method_on_registrations_via_Registration_Processor( $method_name,  EE_Transaction $transaction, $registration_query_params = array(), $additional_param = NULL ) {
567
+	private function _call_method_on_registrations_via_Registration_Processor($method_name, EE_Transaction $transaction, $registration_query_params = array(), $additional_param = NULL) {
568 568
 		$response = FALSE;
569 569
 		/** @type EE_Registration_Processor $registration_processor */
570
-		$registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' );
570
+		$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
571 571
 		// check that method exists
572
-		if ( ! method_exists( $registration_processor, $method_name )) {
573
-			throw new EE_Error( __( 'Method does not exist.', 'event_espresso' ));
572
+		if ( ! method_exists($registration_processor, $method_name)) {
573
+			throw new EE_Error(__('Method does not exist.', 'event_espresso'));
574 574
 		}
575 575
 		// make sure some query params are set for retrieving registrations
576
-		$this->_set_registration_query_params( $registration_query_params );
576
+		$this->_set_registration_query_params($registration_query_params);
577 577
 		// loop through cached registrations
578
-		foreach ( $transaction->registrations( $this->_registration_query_params ) as $registration ) {
579
-			if ( $registration instanceof EE_Registration ) {
580
-				if ( $additional_param ) {
581
-					$response = $registration_processor->{$method_name}( $registration, $additional_param ) ? TRUE : $response;
578
+		foreach ($transaction->registrations($this->_registration_query_params) as $registration) {
579
+			if ($registration instanceof EE_Registration) {
580
+				if ($additional_param) {
581
+					$response = $registration_processor->{$method_name}($registration, $additional_param) ? TRUE : $response;
582 582
 				} else {
583
-					$response = $registration_processor->{$method_name}( $registration ) ? TRUE : $response;
583
+					$response = $registration_processor->{$method_name}($registration) ? TRUE : $response;
584 584
 				}
585 585
 			}
586 586
 		}
@@ -605,46 +605,46 @@  discard block
 block discarded – undo
605 605
 	public function set_transaction_payment_method_based_on_registration_statuses(
606 606
 		EE_Registration $edited_registration
607 607
 	) {
608
-		if ( $edited_registration instanceof EE_Registration ) {
608
+		if ($edited_registration instanceof EE_Registration) {
609 609
 			$transaction = $edited_registration->transaction();
610
-			if ( $transaction instanceof EE_Transaction ) {
610
+			if ($transaction instanceof EE_Transaction) {
611 611
 				$all_not_approved = true;
612
-				foreach ( $transaction->registrations() as $registration ) {
613
-					if ( $registration instanceof EE_Registration ) {
612
+				foreach ($transaction->registrations() as $registration) {
613
+					if ($registration instanceof EE_Registration) {
614 614
 						// if any REG != "Not Approved" then toggle to false
615 615
 						$all_not_approved = $registration->is_not_approved() ? $all_not_approved : false;
616 616
 					}
617 617
 				}
618 618
 				// if ALL Registrations are "Not Approved"
619
-				if ( $all_not_approved ) {
620
-					$transaction->set_payment_method_ID( null );
619
+				if ($all_not_approved) {
620
+					$transaction->set_payment_method_ID(null);
621 621
 					$transaction->save();
622 622
 				} else {
623
-					$available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction( $transaction, EEM_Payment_Method::scope_cart );
624
-					if ( ! empty( $available_payment_methods ) ) {
623
+					$available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction($transaction, EEM_Payment_Method::scope_cart);
624
+					if ( ! empty($available_payment_methods)) {
625 625
 						$PMD_ID = 0;
626
-						foreach ( $available_payment_methods as $available_payment_method ) {
627
-							if ( $available_payment_method instanceof EE_Payment_Method && $available_payment_method->open_by_default() ) {
626
+						foreach ($available_payment_methods as $available_payment_method) {
627
+							if ($available_payment_method instanceof EE_Payment_Method && $available_payment_method->open_by_default()) {
628 628
 								$PMD_ID = $available_payment_method->ID();
629 629
 								break;
630 630
 							}
631 631
 						}
632
-						if ( ! $PMD_ID ) {
633
-							$first_payment_method = reset( $available_payment_methods );
634
-							if ( $first_payment_method instanceof EE_Payment_Method ) {
632
+						if ( ! $PMD_ID) {
633
+							$first_payment_method = reset($available_payment_methods);
634
+							if ($first_payment_method instanceof EE_Payment_Method) {
635 635
 								$PMD_ID = $first_payment_method->ID();
636 636
 							} else {
637 637
 								EE_Error::add_error(
638
-									__( 'A valid Payment Method could not be determined. Please ensure that at least one Payment Method is activated.', 'event_espresso' ),
638
+									__('A valid Payment Method could not be determined. Please ensure that at least one Payment Method is activated.', 'event_espresso'),
639 639
 									__FILE__, __LINE__, __FUNCTION__
640 640
 								);
641 641
 							}
642 642
 						}
643
-						$transaction->set_payment_method_ID( $PMD_ID );
643
+						$transaction->set_payment_method_ID($PMD_ID);
644 644
 						$transaction->save();
645 645
 					} else {
646 646
 						EE_Error::add_error(
647
-							__( 'Please activate at least one Payment Method in order for things to operate correctly.', 'event_espresso' ),
647
+							__('Please activate at least one Payment Method in order for things to operate correctly.', 'event_espresso'),
648 648
 							__FILE__, __LINE__, __FUNCTION__
649 649
 						);
650 650
 					}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_Data_Migration_Script_Base.core.php 1 patch
Spacing   +116 added lines, -116 removed lines patch added patch discarded remove patch
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
 	 * All children of this must call parent::__construct() at the end of their constructor or suffer the consequences!
118 118
 	 */
119 119
 	public function __construct() {
120
-		$this->_migration_stages = apply_filters('FHEE__'.get_class($this).'__construct__migration_stages',$this->_migration_stages);
121
-		foreach($this->_migration_stages as $migration_stage){
122
-			if ( $migration_stage instanceof EE_Data_Migration_Script_Stage ) {
120
+		$this->_migration_stages = apply_filters('FHEE__'.get_class($this).'__construct__migration_stages', $this->_migration_stages);
121
+		foreach ($this->_migration_stages as $migration_stage) {
122
+			if ($migration_stage instanceof EE_Data_Migration_Script_Stage) {
123 123
 				$migration_stage->_construct_finalize($this);
124 124
 			}
125 125
 		}
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	 * Place to add hooks and filters for tweaking the migrations page, in order
133 133
 	 * to customize it
134 134
 	 */
135
-	public function migration_page_hooks(){
135
+	public function migration_page_hooks() {
136 136
 		//by default none are added because we normally like the default look of the migration page
137 137
 	}
138 138
 
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 	 * @param int|string $new_pk eg posts.ID
148 148
 	 * @return void
149 149
 	 */
150
-	public function set_mapping($old_table,$old_pk,$new_table,$new_pk){
150
+	public function set_mapping($old_table, $old_pk, $new_table, $new_pk) {
151 151
 		//make sure it has the needed keys
152
-		if( ! isset($this->_mappings[$old_table]) || ! isset($this->_mappings[$old_table][$new_table])){
152
+		if ( ! isset($this->_mappings[$old_table]) || ! isset($this->_mappings[$old_table][$new_table])) {
153 153
 			$this->_mappings[$old_table][$new_table] = $this->_get_mapping_option($old_table, $new_table);
154 154
 		}
155 155
 		$this->_mappings[$old_table][$new_table][$old_pk] = $new_pk;
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
 	 * @param string $new_table with wpdb prefix (wp_). Eg: wp_posts
166 166
 	 * @return mixed the primary key on the new table
167 167
 	 */
168
-	public function get_mapping_new_pk($old_table,$old_pk,$new_table){
169
-		if( ! isset($this->_mappings[$old_table]) ||
170
-			! isset($this->_mappings[$old_table][$new_table])){
168
+	public function get_mapping_new_pk($old_table, $old_pk, $new_table) {
169
+		if ( ! isset($this->_mappings[$old_table]) ||
170
+			! isset($this->_mappings[$old_table][$new_table])) {
171 171
 			//try fetching the option
172 172
 			$this->_mappings[$old_table][$new_table] = $this->_get_mapping_option($old_table, $new_table);
173 173
 		}
@@ -184,15 +184,15 @@  discard block
 block discarded – undo
184 184
 	 * @param mixed $new_pk
185 185
 	 * @return mixed
186 186
 	 */
187
-	public function get_mapping_old_pk($old_table,$new_table,$new_pk){
188
-		if( ! isset($this->_mappings[$old_table]) ||
189
-			! isset($this->_mappings[$old_table][$new_table])){
187
+	public function get_mapping_old_pk($old_table, $new_table, $new_pk) {
188
+		if ( ! isset($this->_mappings[$old_table]) ||
189
+			! isset($this->_mappings[$old_table][$new_table])) {
190 190
 			//try fetching the option
191 191
 			$this->_mappings[$old_table][$new_table] = $this->_get_mapping_option($old_table, $new_table);
192 192
 		}
193
-		if(isset($this->_mappings[$old_table][$new_table])){
193
+		if (isset($this->_mappings[$old_table][$new_table])) {
194 194
 			$new_pk_to_old_pk = array_flip($this->_mappings[$old_table][$new_table]);
195
-			if(isset($new_pk_to_old_pk[$new_pk])){
195
+			if (isset($new_pk_to_old_pk[$new_pk])) {
196 196
 				return $new_pk_to_old_pk[$new_pk];
197 197
 			}
198 198
 		}
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 	 * @param string $new_table_name
208 208
 	 * @return array
209 209
 	 */
210
-	protected function _get_mapping_option($old_table_name,$new_table_name){
211
-		$option =  get_option($this->_get_mapping_option_name($old_table_name, $new_table_name),array());
210
+	protected function _get_mapping_option($old_table_name, $new_table_name) {
211
+		$option = get_option($this->_get_mapping_option_name($old_table_name, $new_table_name), array());
212 212
 		return $option;
213 213
 	}
214 214
 
@@ -221,9 +221,9 @@  discard block
 block discarded – undo
221 221
 	 * @param array $mapping_array
222 222
 	 * @return boolean success of updating option
223 223
 	 */
224
-	protected function _set_mapping_option($old_table_name,$new_table_name,$mapping_array){
224
+	protected function _set_mapping_option($old_table_name, $new_table_name, $mapping_array) {
225 225
 //		echo "set mapping for $old_table_name $new_table_name".count($mapping_array)."<br>";
226
-		$success =  update_option($this->_get_mapping_option_name($old_table_name, $new_table_name),$mapping_array);
226
+		$success = update_option($this->_get_mapping_option_name($old_table_name, $new_table_name), $mapping_array);
227 227
 		return $success;
228 228
 	}
229 229
 
@@ -235,12 +235,12 @@  discard block
 block discarded – undo
235 235
 	 * @param string $new_table_name
236 236
 	 * @return string
237 237
 	 */
238
-	protected function _get_mapping_option_name($old_table_name,$new_table_name){
238
+	protected function _get_mapping_option_name($old_table_name, $new_table_name) {
239 239
 		global $wpdb;
240
-		$old_table_name_sans_wp = str_replace($wpdb->prefix,"",$old_table_name);
241
-		$new_table_name_sans_wp = str_replace($wpdb->prefix,"",$new_table_name);
240
+		$old_table_name_sans_wp = str_replace($wpdb->prefix, "", $old_table_name);
241
+		$new_table_name_sans_wp = str_replace($wpdb->prefix, "", $new_table_name);
242 242
 		$migrates_to = EE_Data_Migration_Manager::instance()->script_migrates_to_version(get_class($this));
243
-		return substr( EE_Data_Migration_Manager::data_migration_script_mapping_option_prefix . $migrates_to [ 'slug' ] . '_' . $migrates_to[ 'version' ] . '_' . $old_table_name_sans_wp . '_' . $new_table_name_sans_wp, 0, 64 );
243
+		return substr(EE_Data_Migration_Manager::data_migration_script_mapping_option_prefix.$migrates_to ['slug'].'_'.$migrates_to['version'].'_'.$old_table_name_sans_wp.'_'.$new_table_name_sans_wp, 0, 64);
244 244
 	}
245 245
 
246 246
 
@@ -257,10 +257,10 @@  discard block
 block discarded – undo
257 257
 	 * 99% until the function "migration_step" returns EE_Data_Migration_Script_Base::status_complete.
258 258
 	 * @return int
259 259
 	 */
260
-	protected function _count_records_to_migrate(){
260
+	protected function _count_records_to_migrate() {
261 261
 		$count = 0;
262
-		foreach($this->stages() as $stage){
263
-			$count+= $stage->count_records_to_migrate();
262
+		foreach ($this->stages() as $stage) {
263
+			$count += $stage->count_records_to_migrate();
264 264
 		}
265 265
 		return $count;
266 266
 	}
@@ -272,10 +272,10 @@  discard block
 block discarded – undo
272 272
 	 * by just setting a transient and updating it after each migration_step
273 273
 	 * @return int
274 274
 	 */
275
-	public function count_records_migrated(){
275
+	public function count_records_migrated() {
276 276
 		$count = 0;
277
-		foreach($this->stages() as $stage){
278
-			$count+= $stage->count_records_migrated();
277
+		foreach ($this->stages() as $stage) {
278
+			$count += $stage->count_records_migrated();
279 279
 		}
280 280
 		$this->_records_migrated = $count;
281 281
 		return $count;
@@ -289,24 +289,24 @@  discard block
 block discarded – undo
289 289
 	 * @throws EE_Error
290 290
 	 * @throws Exception
291 291
 	 */
292
-	public function migration_step($num_records_to_migrate_limit){
292
+	public function migration_step($num_records_to_migrate_limit) {
293 293
 		//reset the feedback message
294 294
 		$this->_feedback_message = '';
295 295
 		//if we haven't yet done the 1st schema changes, do them now. buffer any output
296 296
 		$this->_maybe_do_schema_changes(true);
297 297
 
298
-		$num_records_actually_migrated =0;
298
+		$num_records_actually_migrated = 0;
299 299
 		$records_migrated_per_stage = array();
300 300
 		//setup the 'stage' variable, which should hold the last run stage of the migration  (or none at all if nothing runs)
301 301
 		$stage = null;
302 302
 		//get the next stage that isn't complete
303
-		foreach($this->stages() as $stage){
304
-			if( $stage->get_status() == EE_Data_Migration_Manager::status_continue){
305
-				try{
303
+		foreach ($this->stages() as $stage) {
304
+			if ($stage->get_status() == EE_Data_Migration_Manager::status_continue) {
305
+				try {
306 306
 					$records_migrated_during_stage = $stage->migration_step($num_records_to_migrate_limit - $num_records_actually_migrated);
307 307
 					$num_records_actually_migrated += $records_migrated_during_stage;
308 308
 					$records_migrated_per_stage[$stage->pretty_name()] = $records_migrated_during_stage;
309
-				}catch(Exception $e){
309
+				} catch (Exception $e) {
310 310
 					//yes if we catch an exception here, we consider that migration stage borked.
311 311
 					$stage->set_status(EE_Data_Migration_Manager::status_fatal_error);
312 312
 					$this->set_status(EE_Data_Migration_Manager::status_fatal_error);
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 					throw $e;
315 315
 				}
316 316
 				//check that the migration stage didn't mark itself as having a fatal error
317
-				if($stage->is_broken()){
317
+				if ($stage->is_broken()) {
318 318
 					$this->set_broken();
319 319
 					throw new EE_Error($stage->get_last_error());
320 320
 				}
@@ -322,24 +322,24 @@  discard block
 block discarded – undo
322 322
 			//once we've migrated all the number we intended to (possibly from different stages), stop migrating
323 323
 			//or if we had a fatal error
324 324
 			//or if the current script stopped early- its not done, but it's done all it thinks we should do on this step
325
-			if ($num_records_actually_migrated >= $num_records_to_migrate_limit || $stage->is_broken() || $stage->has_more_to_do()){
325
+			if ($num_records_actually_migrated >= $num_records_to_migrate_limit || $stage->is_broken() || $stage->has_more_to_do()) {
326 326
 				break;
327 327
 			}
328 328
 		}
329 329
 		//check if we're all done this data migration...
330 330
 		//which is indicated by being done early AND the last stage claims to be done
331
-		if($stage == NULL){
331
+		if ($stage == NULL) {
332 332
 			//this migration script apparently has NO stages... which is super weird, but whatever
333 333
 			$this->set_completed();
334 334
 			$this->_maybe_do_schema_changes(false);
335
-		}else if( $num_records_actually_migrated < $num_records_to_migrate_limit && ! $stage->has_more_to_do()){
335
+		} else if ($num_records_actually_migrated < $num_records_to_migrate_limit && ! $stage->has_more_to_do()) {
336 336
 			//apparently we're done, because we couldn't migrate the number we intended to
337 337
 			$this->set_completed();
338 338
 			$this->_update_feedback_message(array_reverse($records_migrated_per_stage));
339 339
 			//do schema changes for after the migration now
340 340
 			//first double-check we haven't already done this
341 341
 			$this->_maybe_do_schema_changes(false);
342
-		}else{
342
+		} else {
343 343
 			//update feedback message, keeping in mind that we show them with the most recent at the top
344 344
 			$this->_update_feedback_message(array_reverse($records_migrated_per_stage));
345 345
 		}
@@ -353,12 +353,12 @@  discard block
 block discarded – undo
353 353
 	 * @param array $records_migrated_per_stage KEYS are pretty names for each stage; values are the count of records migrated from that stage
354 354
 	 * @return void
355 355
 	 */
356
-	private function _update_feedback_message($records_migrated_per_stage){
356
+	private function _update_feedback_message($records_migrated_per_stage) {
357 357
 		$feedback_message_array = array();
358
-		foreach($records_migrated_per_stage as $migration_stage_name => $num_records_migrated){
359
-			$feedback_message_array[] = sprintf(__("Migrated %d records successfully during %s", "event_espresso"),$num_records_migrated,$migration_stage_name) ;
358
+		foreach ($records_migrated_per_stage as $migration_stage_name => $num_records_migrated) {
359
+			$feedback_message_array[] = sprintf(__("Migrated %d records successfully during %s", "event_espresso"), $num_records_migrated, $migration_stage_name);
360 360
 		}
361
-		$this->_feedback_message .= implode("<br>",$feedback_message_array);
361
+		$this->_feedback_message .= implode("<br>", $feedback_message_array);
362 362
 	}
363 363
 
364 364
 
@@ -370,27 +370,27 @@  discard block
 block discarded – undo
370 370
 	 * @throws Exception
371 371
 	 * @return void
372 372
 	 */
373
-	private function _maybe_do_schema_changes($before = true){
373
+	private function _maybe_do_schema_changes($before = true) {
374 374
 		//so this property will be either _schema_changes_after_migration_ran or _schema_changes_before_migration_ran
375
-		$property_name = '_schema_changes_'. ($before ? 'before' : 'after').'_migration_ran';
376
-		if ( ! $this->{$property_name} ){
377
-			try{
375
+		$property_name = '_schema_changes_'.($before ? 'before' : 'after').'_migration_ran';
376
+		if ( ! $this->{$property_name} ) {
377
+			try {
378 378
 				ob_start();
379
-				if($before){
379
+				if ($before) {
380 380
 					$this->schema_changes_before_migration();
381
-				}else{
381
+				} else {
382 382
 					$this->schema_changes_after_migration();
383 383
 				}
384 384
 				$output = ob_get_contents();
385 385
 				ob_end_clean();
386
-			}catch(Exception $e){
386
+			} catch (Exception $e) {
387 387
 				$this->set_status(EE_Data_Migration_Manager::status_fatal_error);
388 388
 				throw $e;
389 389
 			}
390 390
 			//record that we've done these schema changes
391 391
 			$this->{$property_name} = true;
392 392
 			//if there were any warnings etc, record them as non-fatal errors
393
-			if( $output ){
393
+			if ($output) {
394 394
 				//there were some warnings
395 395
 				$this->_errors[] = $output;
396 396
 			}
@@ -417,9 +417,9 @@  discard block
 block discarded – undo
417 417
 	 * @param string $table_definition_sql
418 418
 	 * @param string $engine_string
419 419
 	 */
420
-	protected function _table_is_new_in_this_version($table_name,$table_definition_sql,$engine_string='ENGINE=InnoDB '){
420
+	protected function _table_is_new_in_this_version($table_name, $table_definition_sql, $engine_string = 'ENGINE=InnoDB ') {
421 421
 //		EEH_Debug_Tools::instance()->start_timer( '_table_is_new_in_this_version_' . $table_name );
422
-		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(  true ) );
422
+		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(true));
423 423
 //		EEH_Debug_Tools::instance()->stop_timer( '_table_is_new_in_this_version_' . $table_name  );
424 424
 	}
425 425
 
@@ -433,9 +433,9 @@  discard block
 block discarded – undo
433 433
 	 * @param string $table_definition_sql
434 434
 	 * @param string $engine_string
435 435
 	 */
436
-	protected function _table_is_changed_in_this_version($table_name,$table_definition_sql,$engine_string = 'ENGINE=MyISAM'){
436
+	protected function _table_is_changed_in_this_version($table_name, $table_definition_sql, $engine_string = 'ENGINE=MyISAM') {
437 437
 //		EEH_Debug_Tools::instance()->start_timer( '_table_is_changed_in_this_version' . $table_name );
438
-		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(  false ) );
438
+		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(false));
439 439
 //		EEH_Debug_Tools::instance()->stop_timer( '_table_is_changed_in_this_version' . $table_name  );
440 440
 	}
441 441
 
@@ -446,9 +446,9 @@  discard block
 block discarded – undo
446 446
 	 * @param string $table_name
447 447
 	 * @return boolean
448 448
 	 */
449
-	protected function _old_table_exists( $table_name ) {
450
-		EE_Registry::instance()->load_helper( 'Activation' );
451
-		return EEH_Activation::table_exists( $table_name );
449
+	protected function _old_table_exists($table_name) {
450
+		EE_Registry::instance()->load_helper('Activation');
451
+		return EEH_Activation::table_exists($table_name);
452 452
 	}
453 453
 
454 454
 
@@ -458,9 +458,9 @@  discard block
 block discarded – undo
458 458
 	 * @param string $table_name
459 459
 	 * @return boolean
460 460
 	 */
461
-	protected function _delete_table_if_empty( $table_name ) {
462
-		EE_Registry::instance()->load_helper( 'Activation' );
463
-		return EEH_Activation::delete_db_table_if_empty( $table_name );
461
+	protected function _delete_table_if_empty($table_name) {
462
+		EE_Registry::instance()->load_helper('Activation');
463
+		return EEH_Activation::delete_db_table_if_empty($table_name);
464 464
 	}
465 465
 
466 466
 
@@ -479,9 +479,9 @@  discard block
 block discarded – undo
479 479
 	 * @param string $table_definition_sql
480 480
 	 * @param string $engine_string
481 481
 	 */
482
-	protected function _table_should_exist_previously($table_name,$table_definition_sql,$engine_string = 'ENGINE=MyISAM'){
482
+	protected function _table_should_exist_previously($table_name, $table_definition_sql, $engine_string = 'ENGINE=MyISAM') {
483 483
 //		EEH_Debug_Tools::instance()->start_timer( '_table_should_exist_previously' . $table_name );
484
-		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(  false ) );
484
+		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(false));
485 485
 //		EEH_Debug_Tools::instance()->stop_timer( '_table_should_exist_previously' . $table_name );
486 486
 	}
487 487
 
@@ -496,13 +496,13 @@  discard block
 block discarded – undo
496 496
 	 * @param string $table_definition_sql
497 497
 	 * @param string $engine_string
498 498
 	 */
499
-	protected function _table_has_not_changed_since_previous( $table_name,$table_definition_sql,$engine_string = 'ENGINE=MyISAM'){
500
-		if( $this->_currently_migrating() ) {
499
+	protected function _table_has_not_changed_since_previous($table_name, $table_definition_sql, $engine_string = 'ENGINE=MyISAM') {
500
+		if ($this->_currently_migrating()) {
501 501
 			//if we're doing a migration, and this table apparently already exists, then we don't need do anything right?
502 502
 //			EEH_Debug_Tools::instance()->stop_timer( '_table_should_exist_previously' . $table_name );
503 503
 			return;
504 504
 		}
505
-		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(  false ) );
505
+		$this->_create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string, $this->_pre_existing_table_should_be_dropped(false));
506 506
 	}
507 507
 
508 508
 	/**
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 	protected function _currently_migrating() {
513 513
 		//we want to know if we are currently performing a migration. We could just believe what was set on the _migrating property, but let's double-check (ie the script should apply and we should be in MM)
514 514
 		return $this->_migrating &&
515
-					$this->can_migrate_from_version( EE_Data_Migration_Manager::instance()->ensure_current_database_state_is_set() ) &&
515
+					$this->can_migrate_from_version(EE_Data_Migration_Manager::instance()->ensure_current_database_state_is_set()) &&
516 516
 					EE_Maintenance_Mode::instance()->real_level() == EE_Maintenance_Mode::level_2_complete_maintenance;
517 517
 	}
518 518
 
@@ -523,17 +523,17 @@  discard block
 block discarded – undo
523 523
 	 * @param boolean $table_is_new
524 524
 	 * @return boolean
525 525
 	 */
526
-	protected function _pre_existing_table_should_be_dropped( $table_is_new ) {
527
-		if( $table_is_new ) {
528
-			if( $this->_get_req_type_for_plugin_corresponding_to_this_dms() == EE_System::req_type_new_activation  || $this->_currently_migrating() ){
526
+	protected function _pre_existing_table_should_be_dropped($table_is_new) {
527
+		if ($table_is_new) {
528
+			if ($this->_get_req_type_for_plugin_corresponding_to_this_dms() == EE_System::req_type_new_activation || $this->_currently_migrating()) {
529 529
 				return true;
530
-			}else{
530
+			} else {
531 531
 				return false;
532 532
 			}
533
-		}else{
534
-			if(in_array($this->_get_req_type_for_plugin_corresponding_to_this_dms(),array(EE_System::req_type_new_activation))){
533
+		} else {
534
+			if (in_array($this->_get_req_type_for_plugin_corresponding_to_this_dms(), array(EE_System::req_type_new_activation))) {
535 535
 				return true;
536
-			}else{
536
+			} else {
537 537
 				return false;
538 538
 			}
539 539
 		}
@@ -546,13 +546,13 @@  discard block
 block discarded – undo
546 546
 	 * @param string $engine_string
547 547
 	 * @param boolean $drop_pre_existing_tables
548 548
 	 */
549
-	private function _create_table_and_catch_errors( $table_name, $table_definition_sql, $engine_string = 'ENGINE=MyISAM', $drop_pre_existing_tables = FALSE ){
549
+	private function _create_table_and_catch_errors($table_name, $table_definition_sql, $engine_string = 'ENGINE=MyISAM', $drop_pre_existing_tables = FALSE) {
550 550
 		EE_Registry::instance()->load_helper('Activation');
551
-		try{
552
-			EEH_Activation::create_table($table_name,$table_definition_sql, $engine_string, $drop_pre_existing_tables);
553
-		}catch( EE_Error $e ) {
554
-			$message = $e->getMessage() . '<br>Stack Trace:' . $e->getTraceAsString();
555
-			$this->add_error( $message  );
551
+		try {
552
+			EEH_Activation::create_table($table_name, $table_definition_sql, $engine_string, $drop_pre_existing_tables);
553
+		} catch (EE_Error $e) {
554
+			$message = $e->getMessage().'<br>Stack Trace:'.$e->getTraceAsString();
555
+			$this->add_error($message);
556 556
 			$this->_feedback_message .= $message;
557 557
 		}
558 558
 	}
@@ -564,15 +564,15 @@  discard block
 block discarded – undo
564 564
 	 * @return int one of EE_System::_req_type_* constants
565 565
 	 * @throws EE_Error
566 566
 	 */
567
-	private function _get_req_type_for_plugin_corresponding_to_this_dms(){
568
-		if($this->slug() == 'Core'){
567
+	private function _get_req_type_for_plugin_corresponding_to_this_dms() {
568
+		if ($this->slug() == 'Core') {
569 569
 			return EE_System::instance()->detect_req_type();
570
-		}else{//it must be for an addon
570
+		} else {//it must be for an addon
571 571
 			$addon_name = $this->slug();
572
-			if( EE_Registry::instance()->get_addon_by_name($addon_name)){
572
+			if (EE_Registry::instance()->get_addon_by_name($addon_name)) {
573 573
 				return EE_Registry::instance()->get_addon_by_name($addon_name)->detect_req_type();
574
-			}else{
575
-				throw new EE_Error(sprintf(__("The DMS slug '%s' should correspond to the addon's name, which should also be '%s', but no such addon was registered. These are the registered addons' names: %s", "event_espresso"),$this->slug(),$addon_name,implode(",",array_keys( EE_Registry::instance()->get_addons_by_name() ) ) ) ) ;
574
+			} else {
575
+				throw new EE_Error(sprintf(__("The DMS slug '%s' should correspond to the addon's name, which should also be '%s', but no such addon was registered. These are the registered addons' names: %s", "event_espresso"), $this->slug(), $addon_name, implode(",", array_keys(EE_Registry::instance()->get_addons_by_name()))));
576 576
 			}
577 577
 		}
578 578
 	}
@@ -583,13 +583,13 @@  discard block
 block discarded – undo
583 583
 	 * returns an array of strings describing errors by all the script's stages
584 584
 	 * @return array
585 585
 	 */
586
-	public function get_errors(){
586
+	public function get_errors() {
587 587
 		$all_errors = $this->_errors;
588
-		if( ! is_array($all_errors)){
588
+		if ( ! is_array($all_errors)) {
589 589
 			$all_errors = array();
590 590
 		}
591
-		foreach($this->stages() as $stage){
592
-			$all_errors = array_merge($stage->get_errors(),$all_errors);
591
+		foreach ($this->stages() as $stage) {
592
+			$all_errors = array_merge($stage->get_errors(), $all_errors);
593 593
 		}
594 594
 		return $all_errors;
595 595
 	}
@@ -600,8 +600,8 @@  discard block
 block discarded – undo
600 600
 	 * Indicates whether or not this migration script should continue
601 601
 	 * @return boolean
602 602
 	 */
603
-	public function can_continue(){
604
-		return in_array($this->get_status(),  EE_Data_Migration_Manager::instance()->stati_that_indicate_to_continue_single_migration_script);
603
+	public function can_continue() {
604
+		return in_array($this->get_status(), EE_Data_Migration_Manager::instance()->stati_that_indicate_to_continue_single_migration_script);
605 605
 	}
606 606
 
607 607
 
@@ -613,8 +613,8 @@  discard block
 block discarded – undo
613 613
 	 * get ordered by the indexes
614 614
 	 * @return EE_Data_Migration_Script_Stage[]
615 615
 	 */
616
-	protected function stages(){
617
-		$stages = apply_filters( 'FHEE__'.get_class($this).'__stages',$this->_migration_stages );
616
+	protected function stages() {
617
+		$stages = apply_filters('FHEE__'.get_class($this).'__stages', $this->_migration_stages);
618 618
 		ksort($stages);
619 619
 		return $stages;
620 620
 	}
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
 	 * can be displayed to the user
627 627
 	 * @return string
628 628
 	 */
629
-	public function get_feedback_message(){
629
+	public function get_feedback_message() {
630 630
 		return $this->_feedback_message;
631 631
 	}
632 632
 
@@ -638,16 +638,16 @@  discard block
 block discarded – undo
638 638
 	 * possible that this class is defined when it goes to sleep, but NOT available when it
639 639
 	 * awakes (eg, this class is part of an addon that is deactivated at some point).
640 640
 	 */
641
-	public function properties_as_array(){
641
+	public function properties_as_array() {
642 642
 		$properties = parent::properties_as_array();
643 643
 		$properties['_migration_stages'] = array();
644
-		foreach($this->_migration_stages as $migration_stage_priority => $migration_stage_class){
644
+		foreach ($this->_migration_stages as $migration_stage_priority => $migration_stage_class) {
645 645
 			$properties['_migration_stages'][$migration_stage_priority] = $migration_stage_class->properties_as_array();
646 646
 		}
647 647
 		unset($properties['_mappings']);
648 648
 
649
-		foreach($this->_mappings as $old_table_name => $mapping_to_new_table){
650
-			foreach($mapping_to_new_table as $new_table_name => $mapping){
649
+		foreach ($this->_mappings as $old_table_name => $mapping_to_new_table) {
650
+			foreach ($mapping_to_new_table as $new_table_name => $mapping) {
651 651
 				$this->_set_mapping_option($old_table_name, $new_table_name, $mapping);
652 652
 			}
653 653
 		}
@@ -662,19 +662,19 @@  discard block
 block discarded – undo
662 662
 	 * @param array $array_of_properties like what's produced from properties_as_array() method
663 663
 	 * @return void
664 664
 	 */
665
-	public function instantiate_from_array_of_properties($array_of_properties){
665
+	public function instantiate_from_array_of_properties($array_of_properties) {
666 666
 		$stages_properties_arrays = $array_of_properties['_migration_stages'];
667 667
 		unset($array_of_properties['_migration_stages']);
668 668
 		unset($array_of_properties['class']);
669
-		foreach($array_of_properties as $property_name => $property_value){
669
+		foreach ($array_of_properties as $property_name => $property_value) {
670 670
 			$this->{$property_name} = $property_value;
671 671
 		}
672 672
 		//_migration_stages are already instantiated, but have only default data
673
-		foreach($this->_migration_stages as $stage){
674
-			$stage_data = $this->_find_migration_stage_data_with_classname(get_class($stage),$stages_properties_arrays);
673
+		foreach ($this->_migration_stages as $stage) {
674
+			$stage_data = $this->_find_migration_stage_data_with_classname(get_class($stage), $stages_properties_arrays);
675 675
 			//SO, if we found the stage data that was saved, use it. Otherwise, I guess the stage is new? (maybe added by
676 676
 			//an addon? Unlikely... not sure why it wouldn't exist, but if it doesn't just treat it like it was never started yet)
677
-			if($stage_data){
677
+			if ($stage_data) {
678 678
 				$stage->instantiate_from_array_of_properties($stage_data);
679 679
 			}
680 680
 		}
@@ -690,9 +690,9 @@  discard block
 block discarded – undo
690 690
 	 * @param array $migration_stage_data_arrays
691 691
 	 * @return null
692 692
 	 */
693
-	private function _find_migration_stage_data_with_classname($classname,$migration_stage_data_arrays){
694
-		foreach($migration_stage_data_arrays as $migration_stage_data_array){
695
-			if(isset($migration_stage_data_array['class']) && $migration_stage_data_array['class'] == $classname){
693
+	private function _find_migration_stage_data_with_classname($classname, $migration_stage_data_arrays) {
694
+		foreach ($migration_stage_data_arrays as $migration_stage_data_array) {
695
+			if (isset($migration_stage_data_array['class']) && $migration_stage_data_array['class'] == $classname) {
696 696
 				return $migration_stage_data_array;
697 697
 			}
698 698
 		}
@@ -708,8 +708,8 @@  discard block
 block discarded – undo
708 708
 	 * @return array where the first key is the plugin's slug, the 2nd is the version of that plugin
709 709
 	 * that will be updated to. Eg array('Core','4.1.0')
710 710
 	 */
711
-	public final function migrates_to_version(){
712
-		return EE_Data_Migration_Manager::instance()->script_migrates_to_version( get_class( $this ) );
711
+	public final function migrates_to_version() {
712
+		return EE_Data_Migration_Manager::instance()->script_migrates_to_version(get_class($this));
713 713
 	}
714 714
 
715 715
 
@@ -721,10 +721,10 @@  discard block
 block discarded – undo
721 721
 	 * Or 'Core' for core (non-addon).
722 722
 	 * @return string
723 723
 	 */
724
-	public function slug(){
724
+	public function slug() {
725 725
 		$migrates_to_version_info = $this->migrates_to_version();
726 726
 		//the slug is the first part of the array
727
-		return $migrates_to_version_info[ 'slug' ];
727
+		return $migrates_to_version_info['slug'];
728 728
 	}
729 729
 
730 730
 
@@ -738,7 +738,7 @@  discard block
 block discarded – undo
738 738
 	 * the database up so it can run), then you can set "A" to priority 3 or something.
739 739
 	 * @return int
740 740
 	 */
741
-	public function priority(){
741
+	public function priority() {
742 742
 		return $this->_priority;
743 743
 	}
744 744
 
@@ -751,18 +751,18 @@  discard block
 block discarded – undo
751 751
 	 * @param boolean $migrating
752 752
 	 * @return void
753 753
 	 */
754
-	public function set_migrating( $migrating = TRUE ){
754
+	public function set_migrating($migrating = TRUE) {
755 755
 		$this->_migrating = $migrating;
756 756
 	}
757 757
 
758 758
 	/**
759 759
 	 * Marks that we think this migration class can continue to migrate
760 760
 	 */
761
-	public function reattempt(){
761
+	public function reattempt() {
762 762
 		parent::reattempt();
763 763
 		//also, we want to reattempt any stages that were marked as borked
764
-		foreach( $this->stages() as $stage ) {
765
-			if( $stage->is_broken() ) {
764
+		foreach ($this->stages() as $stage) {
765
+			if ($stage->is_broken()) {
766 766
 				$stage->reattempt();
767 767
 			}
768 768
 		}
Please login to merge, or discard this patch.
core/db_classes/EE_Attendee.class.php 1 patch
Spacing   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -33,20 +33,20 @@  discard block
 block discarded – undo
33 33
 	 * @param string $timezone
34 34
 	 * @param array $date_formats
35 35
 	 */
36
-	protected function __construct( $fieldValues = NULL, $bydb = FALSE, $timezone = NULL, $date_formats = array() ) {
37
-		if ( !isset( $fieldValues[ 'ATT_full_name' ] ) ) {
38
-			$fname = isset( $fieldValues[ 'ATT_fname' ] ) ? $fieldValues[ 'ATT_fname' ] . ' ' : '';
39
-			$lname = isset( $fieldValues[ 'ATT_lname' ] ) ? $fieldValues[ 'ATT_lname' ] : '';
40
-			$fieldValues[ 'ATT_full_name' ] = $fname . $lname;
36
+	protected function __construct($fieldValues = NULL, $bydb = FALSE, $timezone = NULL, $date_formats = array()) {
37
+		if ( ! isset($fieldValues['ATT_full_name'])) {
38
+			$fname = isset($fieldValues['ATT_fname']) ? $fieldValues['ATT_fname'].' ' : '';
39
+			$lname = isset($fieldValues['ATT_lname']) ? $fieldValues['ATT_lname'] : '';
40
+			$fieldValues['ATT_full_name'] = $fname.$lname;
41 41
 		}
42
-		if ( !isset( $fieldValues[ 'ATT_slug' ] ) ) {
42
+		if ( ! isset($fieldValues['ATT_slug'])) {
43 43
 			//			$fieldValues['ATT_slug'] = sanitize_key(wp_generate_password(20));
44
-			$fieldValues[ 'ATT_slug' ] = sanitize_title( $fieldValues[ 'ATT_full_name' ] );
44
+			$fieldValues['ATT_slug'] = sanitize_title($fieldValues['ATT_full_name']);
45 45
 		}
46
-		if ( !isset( $fieldValues[ 'ATT_short_bio' ] ) && isset( $fieldValues[ 'ATT_bio' ] ) ) {
47
-			$fieldValues[ 'ATT_short_bio' ] = substr( $fieldValues[ 'ATT_bio' ], 0, 50 );
46
+		if ( ! isset($fieldValues['ATT_short_bio']) && isset($fieldValues['ATT_bio'])) {
47
+			$fieldValues['ATT_short_bio'] = substr($fieldValues['ATT_bio'], 0, 50);
48 48
 		}
49
-		parent::__construct( $fieldValues, $bydb, $timezone, $date_formats );
49
+		parent::__construct($fieldValues, $bydb, $timezone, $date_formats);
50 50
 	}
51 51
 
52 52
 
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 	 *                             		    date_format and the second value is the time format
61 61
 	 * @return EE_Attendee
62 62
 	 */
63
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
64
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
65
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
63
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
64
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
65
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
66 66
 	}
67 67
 
68 68
 
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
 	 *                          		the website will be used.
74 74
 	 * @return EE_Attendee
75 75
 	 */
76
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
77
-		return new self( $props_n_values, TRUE, $timezone );
76
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
77
+		return new self($props_n_values, TRUE, $timezone);
78 78
 	}
79 79
 
80 80
 
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 	 * @access        public
86 86
 	 * @param string $fname
87 87
 	 */
88
-	public function set_fname( $fname = '' ) {
89
-		$this->set( 'ATT_fname', $fname );
88
+	public function set_fname($fname = '') {
89
+		$this->set('ATT_fname', $fname);
90 90
 	}
91 91
 
92 92
 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 	 * @access        public
98 98
 	 * @param string $lname
99 99
 	 */
100
-	public function set_lname( $lname = '' ) {
101
-		$this->set( 'ATT_lname', $lname );
100
+	public function set_lname($lname = '') {
101
+		$this->set('ATT_lname', $lname);
102 102
 	}
103 103
 
104 104
 
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
 	 * @access        public
110 110
 	 * @param string $address
111 111
 	 */
112
-	public function set_address( $address = '' ) {
113
-		$this->set( 'ATT_address', $address );
112
+	public function set_address($address = '') {
113
+		$this->set('ATT_address', $address);
114 114
 	}
115 115
 
116 116
 
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
 	 * @access        public
122 122
 	 * @param        string $address2
123 123
 	 */
124
-	public function set_address2( $address2 = '' ) {
125
-		$this->set( 'ATT_address2', $address2 );
124
+	public function set_address2($address2 = '') {
125
+		$this->set('ATT_address2', $address2);
126 126
 	}
127 127
 
128 128
 
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 	 * @access        public
134 134
 	 * @param        string $city
135 135
 	 */
136
-	public function set_city( $city = '' ) {
137
-		$this->set( 'ATT_city', $city );
136
+	public function set_city($city = '') {
137
+		$this->set('ATT_city', $city);
138 138
 	}
139 139
 
140 140
 
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
 	 * @access        public
146 146
 	 * @param        int $STA_ID
147 147
 	 */
148
-	public function set_state( $STA_ID = 0 ) {
149
-		$this->set( 'STA_ID', $STA_ID );
148
+	public function set_state($STA_ID = 0) {
149
+		$this->set('STA_ID', $STA_ID);
150 150
 	}
151 151
 
152 152
 
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	 * @access        public
158 158
 	 * @param        string $CNT_ISO
159 159
 	 */
160
-	public function set_country( $CNT_ISO = '' ) {
161
-		$this->set( 'CNT_ISO', $CNT_ISO );
160
+	public function set_country($CNT_ISO = '') {
161
+		$this->set('CNT_ISO', $CNT_ISO);
162 162
 	}
163 163
 
164 164
 
@@ -169,8 +169,8 @@  discard block
 block discarded – undo
169 169
 	 * @access        public
170 170
 	 * @param        string $zip
171 171
 	 */
172
-	public function set_zip( $zip = '' ) {
173
-		$this->set( 'ATT_zip', $zip );
172
+	public function set_zip($zip = '') {
173
+		$this->set('ATT_zip', $zip);
174 174
 	}
175 175
 
176 176
 
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
 	 * @access        public
182 182
 	 * @param        string $email
183 183
 	 */
184
-	public function set_email( $email = '' ) {
185
-		$this->set( 'ATT_email', $email );
184
+	public function set_email($email = '') {
185
+		$this->set('ATT_email', $email);
186 186
 	}
187 187
 
188 188
 
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
 	 * @access        public
194 194
 	 * @param        string $phone
195 195
 	 */
196
-	public function set_phone( $phone = '' ) {
197
-		$this->set( 'ATT_phone', $phone );
196
+	public function set_phone($phone = '') {
197
+		$this->set('ATT_phone', $phone);
198 198
 	}
199 199
 
200 200
 
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
 	 * @access        public
206 206
 	 * @param        bool $ATT_deleted
207 207
 	 */
208
-	public function set_deleted( $ATT_deleted = FALSE ) {
209
-		$this->set( 'ATT_deleted', $ATT_deleted );
208
+	public function set_deleted($ATT_deleted = FALSE) {
209
+		$this->set('ATT_deleted', $ATT_deleted);
210 210
 	}
211 211
 
212 212
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	 * @return int
220 220
 	 */
221 221
 	public function wp_user() {
222
-		return $this->get( 'ATT_author' );
222
+		return $this->get('ATT_author');
223 223
 	}
224 224
 
225 225
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	 * @return string
231 231
 	 */
232 232
 	public function fname() {
233
-		return $this->get( 'ATT_fname' );
233
+		return $this->get('ATT_fname');
234 234
 	}
235 235
 
236 236
 
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
 	 * @param bool $apply_html_entities
251 251
 	 * @return string
252 252
 	 */
253
-	public function full_name( $apply_html_entities = FALSE ) {
254
-		$full_name = $this->fname() . ' ' . $this->lname();
255
-		return $apply_html_entities ? htmlentities( $full_name, ENT_QUOTES, 'UTF-8' ) : $full_name;
253
+	public function full_name($apply_html_entities = FALSE) {
254
+		$full_name = $this->fname().' '.$this->lname();
255
+		return $apply_html_entities ? htmlentities($full_name, ENT_QUOTES, 'UTF-8') : $full_name;
256 256
 	}
257 257
 
258 258
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 	 * @return string
264 264
 	 */
265 265
 	public function lname() {
266
-		return $this->get( 'ATT_lname' );
266
+		return $this->get('ATT_lname');
267 267
 	}
268 268
 
269 269
 
@@ -277,26 +277,26 @@  discard block
 block discarded – undo
277 277
 	 */
278 278
 	public function full_address_as_array() {
279 279
 		$full_address_array = array();
280
-		$initial_address_fields = array( 'ATT_address', 'ATT_address2', 'ATT_city', );
281
-		foreach ( $initial_address_fields as $address_field_name ) {
282
-			$address_fields_value = $this->get( $address_field_name );
283
-			if ( !empty( $address_fields_value ) ) {
284
-				$full_address_array[ ] = $address_fields_value;
280
+		$initial_address_fields = array('ATT_address', 'ATT_address2', 'ATT_city',);
281
+		foreach ($initial_address_fields as $address_field_name) {
282
+			$address_fields_value = $this->get($address_field_name);
283
+			if ( ! empty($address_fields_value)) {
284
+				$full_address_array[] = $address_fields_value;
285 285
 			}
286 286
 		}
287 287
 		//now handle state and country
288 288
 		$state_obj = $this->state_obj();
289
-		if ( !empty( $state_obj ) ) {
290
-			$full_address_array[ ] = $state_obj->name();
289
+		if ( ! empty($state_obj)) {
290
+			$full_address_array[] = $state_obj->name();
291 291
 		}
292 292
 		$country_obj = $this->country_obj();
293
-		if ( !empty( $country_obj ) ) {
294
-			$full_address_array[ ] = $country_obj->name();
293
+		if ( ! empty($country_obj)) {
294
+			$full_address_array[] = $country_obj->name();
295 295
 		}
296 296
 		//lastly get the xip
297 297
 		$zip_value = $this->zip();
298
-		if ( !empty( $zip_value ) ) {
299
-			$full_address_array[ ] = $zip_value;
298
+		if ( ! empty($zip_value)) {
299
+			$full_address_array[] = $zip_value;
300 300
 		}
301 301
 		return $full_address_array;
302 302
 	}
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 	 * @return string
309 309
 	 */
310 310
 	public function address() {
311
-		return $this->get( 'ATT_address' );
311
+		return $this->get('ATT_address');
312 312
 	}
313 313
 
314 314
 
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 	 * @return string
319 319
 	 */
320 320
 	public function address2() {
321
-		return $this->get( 'ATT_address2' );
321
+		return $this->get('ATT_address2');
322 322
 	}
323 323
 
324 324
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 	 * @return string
329 329
 	 */
330 330
 	public function city() {
331
-		return $this->get( 'ATT_city' );
331
+		return $this->get('ATT_city');
332 332
 	}
333 333
 
334 334
 
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	 * @return string
339 339
 	 */
340 340
 	public function state_ID() {
341
-		return $this->get( 'STA_ID' );
341
+		return $this->get('STA_ID');
342 342
 	}
343 343
 
344 344
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 	 * @return string
348 348
 	 */
349 349
 	public function state_abbrev() {
350
-		return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __( 'Unknown', 'event_espresso' );
350
+		return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __('Unknown', 'event_espresso');
351 351
 	}
352 352
 
353 353
 
@@ -357,18 +357,18 @@  discard block
 block discarded – undo
357 357
 	 * @return EE_State
358 358
 	 */
359 359
 	public function state_obj() {
360
-		return $this->get_first_related( 'State' );
360
+		return $this->get_first_related('State');
361 361
 	}
362 362
 
363 363
 	/**
364 364
 	 * Returns the state's name, otherwise 'Unknown'
365 365
 	 * @return string
366 366
 	 */
367
-	public function state_name(){
368
-		if( $this->state_obj() ){
367
+	public function state_name() {
368
+		if ($this->state_obj()) {
369 369
 			return $this->state_obj()->name();
370
-		}else{
371
-			return __( 'Unknown', 'event_espresso' );
370
+		} else {
371
+			return __('Unknown', 'event_espresso');
372 372
 		}
373 373
 	}
374 374
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 	 * @return string
382 382
 	 */
383 383
 	public function state() {
384
-		if ( apply_filters( 'FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj() ) ) {
384
+		if (apply_filters('FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj())) {
385 385
 			return $this->state_abbrev();
386 386
 		} else {
387 387
 			return $this->state_name();
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	 * @return string
396 396
 	 */
397 397
 	public function country_ID() {
398
-		return $this->get( 'CNT_ISO' );
398
+		return $this->get('CNT_ISO');
399 399
 	}
400 400
 
401 401
 
@@ -405,18 +405,18 @@  discard block
 block discarded – undo
405 405
 	 * @return EE_Country
406 406
 	 */
407 407
 	public function country_obj() {
408
-		return $this->get_first_related( 'Country' );
408
+		return $this->get_first_related('Country');
409 409
 	}
410 410
 
411 411
 	/**
412 412
 	 * Returns the country's name if known, otherwise 'Unknown'
413 413
 	 * @return string
414 414
 	 */
415
-	public function country_name(){
416
-		if( $this->country_obj() ){
415
+	public function country_name() {
416
+		if ($this->country_obj()) {
417 417
 			return $this->country_obj()->name();
418
-		}else{
419
-			return __( 'Unknown', 'event_espresso' );
418
+		} else {
419
+			return __('Unknown', 'event_espresso');
420 420
 		}
421 421
 	}
422 422
 
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 	 * @return string
430 430
 	 */
431 431
 	public function country() {
432
-		if ( apply_filters( 'FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj() ) ) {
432
+		if (apply_filters('FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj())) {
433 433
 			return $this->country_ID();
434 434
 		} else {
435 435
 			return $this->country_name();
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 	 * @return string
444 444
 	 */
445 445
 	public function zip() {
446
-		return $this->get( 'ATT_zip' );
446
+		return $this->get('ATT_zip');
447 447
 	}
448 448
 
449 449
 
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
 	 * @return string
454 454
 	 */
455 455
 	public function email() {
456
-		return $this->get( 'ATT_email' );
456
+		return $this->get('ATT_email');
457 457
 	}
458 458
 
459 459
 
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	 * @return string
464 464
 	 */
465 465
 	public function phone() {
466
-		return $this->get( 'ATT_phone' );
466
+		return $this->get('ATT_phone');
467 467
 	}
468 468
 
469 469
 
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 	 * @return        bool
474 474
 	 */
475 475
 	public function deleted() {
476
-		return $this->get( 'ATT_deleted' );
476
+		return $this->get('ATT_deleted');
477 477
 	}
478 478
 
479 479
 
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
 	 * @param array $query_params
484 484
 	 * @return EE_Registration[]
485 485
 	 */
486
-	public function get_registrations( $query_params = array() ) {
487
-		return $this->get_many_related( 'Registration', $query_params );
486
+	public function get_registrations($query_params = array()) {
487
+		return $this->get_many_related('Registration', $query_params);
488 488
 	}
489 489
 
490 490
 
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	 * @return EE_Registration
495 495
 	 */
496 496
 	public function get_most_recent_registration() {
497
-		return $this->get_first_related( 'Registration', array( 'order_by' => array( 'REG_date' => 'DESC' ) ) ); //null, 'REG_date', 'DESC', '=', 'OBJECT_K');
497
+		return $this->get_first_related('Registration', array('order_by' => array('REG_date' => 'DESC'))); //null, 'REG_date', 'DESC', '=', 'OBJECT_K');
498 498
 	}
499 499
 
500 500
 
@@ -504,8 +504,8 @@  discard block
 block discarded – undo
504 504
 	 * @param int $event_id
505 505
 	 * @return EE_Registration
506 506
 	 */
507
-	public function get_most_recent_registration_for_event( $event_id ) {
508
-		return $this->get_first_related( 'Registration', array(array( 'EVT_ID' => $event_id ), 'order_by' => array('REG_date' => 'DESC')));//, '=', 'OBJECT_K' );
507
+	public function get_most_recent_registration_for_event($event_id) {
508
+		return $this->get_first_related('Registration', array(array('EVT_ID' => $event_id), 'order_by' => array('REG_date' => 'DESC'))); //, '=', 'OBJECT_K' );
509 509
 	}
510 510
 
511 511
 
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 	 * @return array
516 516
 	 */
517 517
 	public function events() {
518
-		return $this->get_many_related( 'Event' );
518
+		return $this->get_many_related('Event');
519 519
 	}
520 520
 
521 521
 	/**
@@ -524,17 +524,17 @@  discard block
 block discarded – undo
524 524
 	 * @param EE_Payment_Method $payment_method the _gateway_name property on the gateway class
525 525
 	 * @return EE_Form_Section_Proper
526 526
 	 */
527
-	public function billing_info_for_payment_method($payment_method){
527
+	public function billing_info_for_payment_method($payment_method) {
528 528
 		$pm_type = $payment_method->type_obj();
529
-		if( ! $pm_type instanceof EE_PMT_Base ){
529
+		if ( ! $pm_type instanceof EE_PMT_Base) {
530 530
 			return NULL;
531 531
 		}
532
-		$billing_info =  $this->get_post_meta( $this->get_billing_info_postmeta_name( $payment_method ), true );
533
-		if ( ! $billing_info){
532
+		$billing_info = $this->get_post_meta($this->get_billing_info_postmeta_name($payment_method), true);
533
+		if ( ! $billing_info) {
534 534
 			return NULL;
535 535
 		}
536 536
 		$billing_form = $pm_type->billing_form();
537
-		$billing_form->receive_form_submission( array( $billing_form->name() => $billing_info ), FALSE );
537
+		$billing_form->receive_form_submission(array($billing_form->name() => $billing_info), FALSE);
538 538
 		return $billing_form;
539 539
 	}
540 540
 
@@ -544,10 +544,10 @@  discard block
 block discarded – undo
544 544
 	 * @param EE_Payment_Method $payment_method
545 545
 	 * @return string
546 546
 	 */
547
-	public function get_billing_info_postmeta_name($payment_method){
548
-		if( $payment_method->type_obj() instanceof EE_PMT_Base ){
549
-			return 'billing_info_' . $payment_method->type_obj()->system_name();
550
-		}else{
547
+	public function get_billing_info_postmeta_name($payment_method) {
548
+		if ($payment_method->type_obj() instanceof EE_PMT_Base) {
549
+			return 'billing_info_'.$payment_method->type_obj()->system_name();
550
+		} else {
551 551
 			return NULL;
552 552
 		}
553 553
 	}
@@ -558,13 +558,13 @@  discard block
 block discarded – undo
558 558
 	 * @param EE_Payment_Method $payment_method
559 559
 	 * @return boolean
560 560
 	 */
561
-	public function save_and_clean_billing_info_for_payment_method($billing_form, $payment_method){
562
-		if( ! $billing_form instanceof EE_Billing_Attendee_Info_Form ){
563
-			EE_Error::add_error( __( 'Cannot save billing info because there is none.', 'event_espresso' ) );
561
+	public function save_and_clean_billing_info_for_payment_method($billing_form, $payment_method) {
562
+		if ( ! $billing_form instanceof EE_Billing_Attendee_Info_Form) {
563
+			EE_Error::add_error(__('Cannot save billing info because there is none.', 'event_espresso'));
564 564
 			return false;
565 565
 		}
566 566
 		$billing_form->clean_sensitive_data();
567
-		return update_post_meta($this->ID(), $this->get_billing_info_postmeta_name( $payment_method ), $billing_form->input_values( true ) );
567
+		return update_post_meta($this->ID(), $this->get_billing_info_postmeta_name($payment_method), $billing_form->input_values(true));
568 568
 	}
569 569
 
570 570
 }
Please login to merge, or discard this patch.