Completed
Branch BUG-8957-add-countries (49f36b)
by
unknown
33:27 queued 16:54
created
core/EE_Addon.core.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 		//so in case teh IPN is arriving later, let's try to process an IPN!
91 91
 		if($_SERVER['REQUEST_METHOD'] == 'POST'){
92 92
 			return $this->handle_ipn($_POST, $transaction );
93
-		}else{
93
+		} else{
94 94
 			return parent::finalize_payment_for( $transaction );
95 95
 		}
96 96
 	}
Please login to merge, or discard this patch.
Spacing   +84 added lines, -84 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
  *
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 *    class constructor
96 96
 	 */
97 97
 	public function __construct() {
98
-		add_action( 'AHEE__EE_System__load_controllers__load_admin_controllers', array( $this, 'admin_init' ) );
98
+		add_action('AHEE__EE_System__load_controllers__load_admin_controllers', array($this, 'admin_init'));
99 99
 	}
100 100
 
101 101
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	/**
104 104
 	 * @param mixed $version
105 105
 	 */
106
-	public function set_version( $version = NULL ) {
106
+	public function set_version($version = NULL) {
107 107
 		$this->_version = $version;
108 108
 	}
109 109
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	/**
122 122
 	 * @param mixed $min_core_version
123 123
 	 */
124
-	public function set_min_core_version( $min_core_version = NULL ) {
124
+	public function set_min_core_version($min_core_version = NULL) {
125 125
 		$this->_min_core_version = $min_core_version;
126 126
 	}
127 127
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * @param string $addon_name
143 143
 	 * @return boolean
144 144
 	 */
145
-	function set_name( $addon_name ) {
145
+	function set_name($addon_name) {
146 146
 		return $this->_addon_name = $addon_name;
147 147
 	}
148 148
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	/**
171 171
 	 * @param string $plugin_basename
172 172
 	 */
173
-	public function set_plugin_basename( $plugin_basename ) {
173
+	public function set_plugin_basename($plugin_basename) {
174 174
 
175 175
 		$this->_plugin_basename = $plugin_basename;
176 176
 	}
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 	/**
191 191
 	 * @param string $plugin_slug
192 192
 	 */
193
-	public function set_plugin_slug( $plugin_slug ) {
193
+	public function set_plugin_slug($plugin_slug) {
194 194
 
195 195
 		$this->_plugin_slug = $plugin_slug;
196 196
 	}
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	/**
211 211
 	 * @param string $plugin_action_slug
212 212
 	 */
213
-	public function set_plugin_action_slug( $plugin_action_slug ) {
213
+	public function set_plugin_action_slug($plugin_action_slug) {
214 214
 
215 215
 		$this->_plugin_action_slug = $plugin_action_slug;
216 216
 	}
@@ -230,9 +230,9 @@  discard block
 block discarded – undo
230 230
 	/**
231 231
 	 * @param array $plugins_page_row
232 232
 	 */
233
-	public function set_plugins_page_row( $plugins_page_row = array() ) {
233
+	public function set_plugins_page_row($plugins_page_row = array()) {
234 234
 		// sigh.... check for example content that I stupidly merged to master and remove it if found
235
-		if ( ! is_array( $plugins_page_row ) && strpos( $plugins_page_row, '<h3>Promotions Addon Upsell Info</h3>' ) !== false ) {
235
+		if ( ! is_array($plugins_page_row) && strpos($plugins_page_row, '<h3>Promotions Addon Upsell Info</h3>') !== false) {
236 236
 			$plugins_page_row = '';
237 237
 		}
238 238
 		$this->_plugins_page_row = $plugins_page_row;
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 		do_action("AHEE__{$classname}__new_install");
252 252
 		do_action("AHEE__EE_Addon__new_install", $this);
253 253
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
254
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
254
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
255 255
 	}
256 256
 
257 257
 
@@ -266,16 +266,16 @@  discard block
 block discarded – undo
266 266
 		do_action("AHEE__{$classname}__reactivation");
267 267
 		do_action("AHEE__EE_Addon__reactivation", $this);
268 268
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
269
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
269
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
270 270
 	}
271 271
 
272
-	public function deactivation(){
272
+	public function deactivation() {
273 273
 		$classname = get_class($this);
274 274
 //		echo "Deactivating $classname";die;
275 275
 		do_action("AHEE__{$classname}__deactivation");
276 276
 		do_action("AHEE__EE_Addon__deactivation", $this);
277 277
 		//check if the site no longer needs to be in maintenance mode
278
-		EE_Register_Addon::deregister( $this->name() );
278
+		EE_Register_Addon::deregister($this->name());
279 279
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
280 280
 	}
281 281
 
@@ -289,16 +289,16 @@  discard block
 block discarded – undo
289 289
 	 * This is a resource-intensive job so we prefer to only do it when necessary
290 290
 	 * @return void
291 291
 	 */
292
-	public function initialize_db_if_no_migrations_required( $verify_schema = true ) {
293
-		if( $verify_schema === '' ) {
292
+	public function initialize_db_if_no_migrations_required($verify_schema = true) {
293
+		if ($verify_schema === '') {
294 294
 			//wp core bug imo: if no args are passed to `do_action('some_hook_name')` besides the hook's name
295 295
 			//(ie, no 2nd or 3rd arguments), instead of calling the registered callbacks with no arguments, it
296 296
 			//calls them with an argument of an empty string (ie ""), which evaluates to false
297 297
 			//so we need to treat the empty string as if nothing had been passed, and should instead use the default
298 298
 			$verify_schema = true;
299 299
 		}
300
-		if ( EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ) {
301
-			if( $verify_schema ) {
300
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
301
+			if ($verify_schema) {
302 302
 				$this->initialize_db();
303 303
 			}
304 304
 			$this->initialize_default_data();
@@ -312,15 +312,15 @@  discard block
 block discarded – undo
312 312
 			 */
313 313
 			EE_Registry::instance()->load_helper('Activation');
314 314
 			EEH_Activation::initialize_db_content();
315
-			update_option( 'ee_flush_rewrite_rules', TRUE );
315
+			update_option('ee_flush_rewrite_rules', TRUE);
316 316
 			//in case there are lots of addons being activated at once, let's force garbage collection
317 317
 			//to help avoid memory limit errors
318 318
 			//EEH_Debug_Tools::instance()->measure_memory( 'db content initialized for ' . get_class( $this), true );
319 319
 			gc_collect_cycles();
320
-		}else{
320
+		} else {
321 321
 			//ask the data migration manager to init this addon's data
322 322
 			//when migrations are finished because we can't do it now
323
-			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for( $this->name() );
323
+			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for($this->name());
324 324
 		}
325 325
 	}
326 326
 
@@ -334,20 +334,20 @@  discard block
 block discarded – undo
334 334
 	 */
335 335
 	public function initialize_db() {
336 336
 		//find the migration script that sets the database to be compatible with the code
337
-		$current_dms_name = EE_Data_Migration_Manager::instance()->get_most_up_to_date_dms( $this->name() );
338
-		if( $current_dms_name ){
339
-			$current_data_migration_script = EE_Registry::instance()->load_dms( $current_dms_name );
340
-			$current_data_migration_script->set_migrating( FALSE );
337
+		$current_dms_name = EE_Data_Migration_Manager::instance()->get_most_up_to_date_dms($this->name());
338
+		if ($current_dms_name) {
339
+			$current_data_migration_script = EE_Registry::instance()->load_dms($current_dms_name);
340
+			$current_data_migration_script->set_migrating(FALSE);
341 341
 			$current_data_migration_script->schema_changes_before_migration();
342 342
 			$current_data_migration_script->schema_changes_after_migration();
343
-			if ( $current_data_migration_script->get_errors() ) {
344
-				foreach( $current_data_migration_script->get_errors() as $error ) {
345
-					EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
343
+			if ($current_data_migration_script->get_errors()) {
344
+				foreach ($current_data_migration_script->get_errors() as $error) {
345
+					EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
346 346
 				}
347 347
 			}
348 348
 		}
349 349
 		//if not DMS was found that should be ok. This addon just doesn't require any database changes
350
-		EE_Data_Migration_Manager::instance()->update_current_database_state_to( array( 'slug' => $this->name(), 'version' => $this->version() ) );
350
+		EE_Data_Migration_Manager::instance()->update_current_database_state_to(array('slug' => $this->name(), 'version' => $this->version()));
351 351
 	}
352 352
 
353 353
 
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
 		 * default data)
370 370
 		 * @param EE_Addon $addon the addon that called this
371 371
 		 */
372
-		do_action( 'AHEE__EE_Addon__initialize_default_data__begin', $this );
372
+		do_action('AHEE__EE_Addon__initialize_default_data__begin', $this);
373 373
 		//override to insert default data. It is safe to use the models here
374 374
 		//because the site should not be in maintenance mode
375 375
 	}
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 		do_action("AHEE__EE_Addon__upgrade", $this);
389 389
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
390 390
 		//also it's possible there is new default data that needs to be added
391
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
391
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
392 392
 	}
393 393
 
394 394
 
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
 		do_action("AHEE__{$classname}__downgrade");
402 402
 		do_action("AHEE__EE_Addon__downgrade", $this);
403 403
 		//it's possible there's old default data that needs to be double-checked
404
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
404
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
405 405
 	}
406 406
 
407 407
 
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 	 * plugin activation only. In the future, we'll want to do it on plugin updates too
413 413
 	 * @return bool
414 414
 	 */
415
-	public function set_db_update_option_name(){
415
+	public function set_db_update_option_name() {
416 416
 		EE_Error::doing_it_wrong(__FUNCTION__, __('EE_Addon::set_db_update_option_name was renamed to EE_Addon::set_activation_indicator_option', 'event_espresso'), '4.3.0.alpha.016');
417 417
 		//let's just handle this on the next request, ok? right now we're just not really ready
418 418
 		return $this->set_activation_indicator_option();
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 	 */
441 441
 	public function set_activation_indicator_option() {
442 442
 		// let's just handle this on the next request, ok? right now we're just not really ready
443
-		return update_option( $this->get_activation_indicator_option_name(), TRUE );
443
+		return update_option($this->get_activation_indicator_option_name(), TRUE);
444 444
 	}
445 445
 
446 446
 
@@ -448,8 +448,8 @@  discard block
 block discarded – undo
448 448
 	 * Gets the name of the wp option which is used to temporarily indicate that this addon was activated
449 449
 	 * @return string
450 450
 	 */
451
-	public function get_activation_indicator_option_name(){
452
-		return 'ee_activation_' . $this->name();
451
+	public function get_activation_indicator_option_name() {
452
+		return 'ee_activation_'.$this->name();
453 453
 	}
454 454
 
455 455
 
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
 	 * Used by EE_System to set the request type of this addon. Should not be used by addon developers
460 460
 	 * @param int $req_type
461 461
 	 */
462
-	function set_req_type( $req_type ) {
462
+	function set_req_type($req_type) {
463 463
 		$this->_req_type = $req_type;
464 464
 	}
465 465
 
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
 	 * of addons
471 471
 	 */
472 472
 	function detect_req_type() {
473
-		if( ! $this->_req_type ){
473
+		if ( ! $this->_req_type) {
474 474
 			$this->detect_activation_or_upgrade();
475 475
 		}
476 476
 		return $this->_req_type;
@@ -483,36 +483,36 @@  discard block
 block discarded – undo
483 483
 	 * Should only be called once per request
484 484
 	 * @return void
485 485
 	 */
486
-	function detect_activation_or_upgrade(){
486
+	function detect_activation_or_upgrade() {
487 487
 		$activation_history_for_addon = $this->get_activation_history();
488 488
 //		d($activation_history_for_addon);
489 489
 		$request_type = EE_System::detect_req_type_given_activation_history($activation_history_for_addon, $this->get_activation_indicator_option_name(), $this->version());
490 490
 		$this->set_req_type($request_type);
491 491
 		$classname = get_class($this);
492
-		switch($request_type){
492
+		switch ($request_type) {
493 493
 			case EE_System::req_type_new_activation:
494
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__new_activation" );
495
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__new_activation", $this );
494
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__new_activation");
495
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__new_activation", $this);
496 496
 				$this->new_install();
497
-				$this->update_list_of_installed_versions( $activation_history_for_addon );
497
+				$this->update_list_of_installed_versions($activation_history_for_addon);
498 498
 				break;
499 499
 			case EE_System::req_type_reactivation:
500
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__reactivation" );
501
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__reactivation", $this );
500
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__reactivation");
501
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__reactivation", $this);
502 502
 				$this->reactivation();
503
-				$this->update_list_of_installed_versions( $activation_history_for_addon );
503
+				$this->update_list_of_installed_versions($activation_history_for_addon);
504 504
 				break;
505 505
 			case EE_System::req_type_upgrade:
506
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__upgrade" );
507
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__upgrade", $this );
506
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__upgrade");
507
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__upgrade", $this);
508 508
 				$this->upgrade();
509
-				$this->update_list_of_installed_versions($activation_history_for_addon );
509
+				$this->update_list_of_installed_versions($activation_history_for_addon);
510 510
 				break;
511 511
 			case EE_System::req_type_downgrade:
512
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__downgrade" );
513
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__downgrade", $this );
512
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__downgrade");
513
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__downgrade", $this);
514 514
 				$this->downgrade();
515
-				$this->update_list_of_installed_versions($activation_history_for_addon );
515
+				$this->update_list_of_installed_versions($activation_history_for_addon);
516 516
 				break;
517 517
 			case EE_System::req_type_normal:
518 518
 			default:
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
 				break;
521 521
 		}
522 522
 
523
-		do_action( "AHEE__{$classname}__detect_if_activation_or_upgrade__complete" );
523
+		do_action("AHEE__{$classname}__detect_if_activation_or_upgrade__complete");
524 524
 	}
525 525
 
526 526
 	/**
@@ -529,17 +529,17 @@  discard block
 block discarded – undo
529 529
 	 * @param string $current_version_to_add
530 530
 	 * @return boolean success
531 531
 	 */
532
-	public function update_list_of_installed_versions($version_history = NULL,$current_version_to_add = NULL) {
533
-		if( ! $version_history ) {
532
+	public function update_list_of_installed_versions($version_history = NULL, $current_version_to_add = NULL) {
533
+		if ( ! $version_history) {
534 534
 			$version_history = $this->get_activation_history();
535 535
 		}
536
-		if( $current_version_to_add == NULL){
536
+		if ($current_version_to_add == NULL) {
537 537
 			$current_version_to_add = $this->version();
538 538
 		}
539
-		$version_history[ $current_version_to_add ][] = date( 'Y-m-d H:i:s',time() );
539
+		$version_history[$current_version_to_add][] = date('Y-m-d H:i:s', time());
540 540
 		// resave
541 541
 //		echo "updating list of installed versions:".$this->get_activation_history_option_name();d($version_history);
542
-		return update_option( $this->get_activation_history_option_name(), $version_history );
542
+		return update_option($this->get_activation_history_option_name(), $version_history);
543 543
 	}
544 544
 
545 545
 	/**
@@ -547,8 +547,8 @@  discard block
 block discarded – undo
547 547
 	 * of this addon
548 548
 	 * @return string
549 549
 	 */
550
-	function get_activation_history_option_name(){
551
-		return self::ee_addon_version_history_option_prefix . $this->name();
550
+	function get_activation_history_option_name() {
551
+		return self::ee_addon_version_history_option_prefix.$this->name();
552 552
 	}
553 553
 
554 554
 
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
 	 * Gets the wp option which stores the activation history for this addon
558 558
 	 * @return array
559 559
 	 */
560
-	function get_activation_history(){
560
+	function get_activation_history() {
561 561
 		return get_option($this->get_activation_history_option_name(), NULL);
562 562
 	}
563 563
 
@@ -566,8 +566,8 @@  discard block
 block discarded – undo
566 566
 	/**
567 567
 	 * @param string $config_section
568 568
 	 */
569
-	public function set_config_section( $config_section = '' ) {
570
-		$this->_config_section = ! empty( $config_section ) ? $config_section : 'addons';
569
+	public function set_config_section($config_section = '') {
570
+		$this->_config_section = ! empty($config_section) ? $config_section : 'addons';
571 571
 	}
572 572
 	/**
573 573
 	 *	filepath to the main file, which can be used for register_activation_hook, register_deactivation_hook, etc.
@@ -580,14 +580,14 @@  discard block
 block discarded – undo
580 580
 	 * Sets the filepath to the main plugin file
581 581
 	 * @param string $filepath
582 582
 	 */
583
-	public function set_main_plugin_file( $filepath ) {
583
+	public function set_main_plugin_file($filepath) {
584 584
 		$this->_main_plugin_file = $filepath;
585 585
 	}
586 586
 	/**
587 587
 	 * gets the filepath to teh main file
588 588
 	 * @return string
589 589
 	 */
590
-	public function get_main_plugin_file(){
590
+	public function get_main_plugin_file() {
591 591
 		return $this->_main_plugin_file;
592 592
 	}
593 593
 
@@ -597,15 +597,15 @@  discard block
 block discarded – undo
597 597
 	 * @return string
598 598
 	 */
599 599
 	public function get_main_plugin_file_basename() {
600
-		return plugin_basename( $this->get_main_plugin_file() );
600
+		return plugin_basename($this->get_main_plugin_file());
601 601
 	}
602 602
 
603 603
 	/**
604 604
 	 * Gets the folder name which contains the main plugin file
605 605
 	 * @return string
606 606
 	 */
607
-	public function get_main_plugin_file_dirname(){
608
-		return dirname( $this->get_main_plugin_file() );
607
+	public function get_main_plugin_file_dirname() {
608
+		return dirname($this->get_main_plugin_file());
609 609
 	}
610 610
 
611 611
 
@@ -614,11 +614,11 @@  discard block
 block discarded – undo
614 614
 	 *
615 615
 *@return string
616 616
 	 */
617
-	public function admin_init(){
617
+	public function admin_init() {
618 618
 		// is admin and not in M-Mode ?
619
-		if ( is_admin() && ! EE_Maintenance_Mode::instance()->level() ) {
620
-			add_filter( 'plugin_action_links', array( $this, 'plugin_action_links' ), 10, 2 );
621
-			add_filter( 'after_plugin_row_' . $this->_plugin_basename, array( $this, 'after_plugin_row' ), 10, 3 );
619
+		if (is_admin() && ! EE_Maintenance_Mode::instance()->level()) {
620
+			add_filter('plugin_action_links', array($this, 'plugin_action_links'), 10, 2);
621
+			add_filter('after_plugin_row_'.$this->_plugin_basename, array($this, 'after_plugin_row'), 10, 3);
622 622
 		}
623 623
 	}
624 624
 
@@ -633,10 +633,10 @@  discard block
 block discarded – undo
633 633
 	 * @param $file
634 634
 	 * @return array
635 635
 	 */
636
-	public function plugin_action_links( $links, $file ) {
637
-		if ( $file == $this->plugin_basename() && $this->plugin_action_slug() != '' ) {
636
+	public function plugin_action_links($links, $file) {
637
+		if ($file == $this->plugin_basename() && $this->plugin_action_slug() != '') {
638 638
 			// before other links
639
-			array_unshift( $links, '<a href="admin.php?page=' . $this->plugin_action_slug() . '">' . __( 'Settings' ) . '</a>' );
639
+			array_unshift($links, '<a href="admin.php?page='.$this->plugin_action_slug().'">'.__('Settings').'</a>');
640 640
 		}
641 641
 		return $links;
642 642
 	}
@@ -654,17 +654,17 @@  discard block
 block discarded – undo
654 654
 	 * @param $status
655 655
 	 * @return string
656 656
 	 */
657
-	public function after_plugin_row( $plugin_file, $plugin_data, $status ) {
657
+	public function after_plugin_row($plugin_file, $plugin_data, $status) {
658 658
 
659 659
 		$after_plugin_row = '';
660
-		if ( $plugin_file == $this->plugin_basename() && $this->get_plugins_page_row() != '' ) {
660
+		if ($plugin_file == $this->plugin_basename() && $this->get_plugins_page_row() != '') {
661 661
 			$class = $status ? 'active' : 'inactive';
662 662
 			$plugins_page_row = $this->get_plugins_page_row();
663
-			$link_text = isset( $plugins_page_row[ 'link_text' ] ) ? $plugins_page_row[ 'link_text' ] : '';
664
-			$link_url = isset( $plugins_page_row[ 'link_url' ] ) ? $plugins_page_row[ 'link_url' ] : '';
665
-			$description = isset( $plugins_page_row[ 'description' ] ) ? $plugins_page_row[ 'description' ] : $plugins_page_row;
666
-			if ( ! empty( $link_text ) && ! empty( $link_url ) && ! empty( $description )) {
667
-				$after_plugin_row .= '<tr id="' . sanitize_title( $plugin_file ) . '-ee-addon" class="' . $class . '">';
663
+			$link_text = isset($plugins_page_row['link_text']) ? $plugins_page_row['link_text'] : '';
664
+			$link_url = isset($plugins_page_row['link_url']) ? $plugins_page_row['link_url'] : '';
665
+			$description = isset($plugins_page_row['description']) ? $plugins_page_row['description'] : $plugins_page_row;
666
+			if ( ! empty($link_text) && ! empty($link_url) && ! empty($description)) {
667
+				$after_plugin_row .= '<tr id="'.sanitize_title($plugin_file).'-ee-addon" class="'.$class.'">';
668 668
 				$after_plugin_row .= '<th class="check-column" scope="row"></th>';
669 669
 				$after_plugin_row .= '<td class="ee-addon-upsell-info-title-td plugin-title column-primary">';
670 670
 				$after_plugin_row .= '<style>
@@ -706,7 +706,7 @@  discard block
 block discarded – undo
706 706
 </style>';
707 707
 				$after_plugin_row .= '
708 708
 <p class="ee-addon-upsell-info-dv">
709
-	<a class="ee-button" href="' . $link_url . '">' . $link_text . ' &nbsp;<span class="dashicons dashicons-arrow-right-alt2" style="margin:0;"></span></a>
709
+	<a class="ee-button" href="' . $link_url.'">'.$link_text.' &nbsp;<span class="dashicons dashicons-arrow-right-alt2" style="margin:0;"></span></a>
710 710
 </p>';
711 711
 				$after_plugin_row .= '</td>';
712 712
 				$after_plugin_row .= '<td class="ee-addon-upsell-info-desc-td column-description desc">';
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 
121 121
 	/**
122
-	 * @param mixed $min_core_version
122
+	 * @param string $min_core_version
123 123
 	 */
124 124
 	public function set_min_core_version( $min_core_version = NULL ) {
125 125
 		$this->_min_core_version = $min_core_version;
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	/**
141 141
 	 * Sets addon_name
142 142
 	 * @param string $addon_name
143
-	 * @return boolean
143
+	 * @return string
144 144
 	 */
145 145
 	function set_name( $addon_name ) {
146 146
 		return $this->_addon_name = $addon_name;
Please login to merge, or discard this patch.
core/EE_Base.core.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	 *		@ override magic methods
34 34
 	 *		@ return void
35 35
 	 */	
36
-	public function __set($a,$b) { return FALSE; }
36
+	public function __set($a, $b) { return FALSE; }
37 37
 	public function __get($a) { return FALSE; }
38 38
 	public function __isset($a) { return FALSE; }
39 39
 	public function __unset($a) { return FALSE; }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/EE_Encryption.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
3 5
 /**
4 6
  * Event Espresso
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  * EE_Encryption class
4 4
  *
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 * @return \EE_Encryption
30 30
 	 */
31 31
   private function __construct() {
32
-		define( 'ESPRESSO_ENCRYPT', true );
33
-		if ( ! function_exists( 'mcrypt_encrypt' ) ) {
32
+		define('ESPRESSO_ENCRYPT', true);
33
+		if ( ! function_exists('mcrypt_encrypt')) {
34 34
 			$this->_use_mcrypt = false;
35 35
 		}
36 36
 	}
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 	 *	@access public
43 43
 	 * @return \EE_Encryption
44 44
 	 */
45
-	public static function instance ( ) {
45
+	public static function instance( ) {
46 46
 		// check if class object is instantiated
47
-		if ( ! self::$_instance instanceof EE_Encryption ) {
47
+		if ( ! self::$_instance instanceof EE_Encryption) {
48 48
 			self::$_instance = new self();
49 49
 		}
50 50
 		return self::$_instance;
@@ -59,15 +59,15 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public  function get_encryption_key() {
61 61
 		// if encryption key has not been set
62
-		if ( empty( $this->_encryption_key )) {
62
+		if (empty($this->_encryption_key)) {
63 63
 			// retrieve encryption_key from db
64
-			$this->_encryption_key = get_option( 'ee_encryption_key', '' );
64
+			$this->_encryption_key = get_option('ee_encryption_key', '');
65 65
 			// WHAT?? No encryption_key in the db ??
66
-			if ( $this->_encryption_key == '' ) {
66
+			if ($this->_encryption_key == '') {
67 67
 				// let's make one. And md5 it to make it just the right size for a key
68
-				$new_key =  md5( self::generate_random_string() );
68
+				$new_key = md5(self::generate_random_string());
69 69
 				// now save it to the db for later
70
-				add_option( 'ee_encryption_key', $new_key );
70
+				add_option('ee_encryption_key', $new_key);
71 71
 				// here's the key - FINALLY !
72 72
 				$this->_encryption_key = $new_key;
73 73
 			}
@@ -83,15 +83,15 @@  discard block
 block discarded – undo
83 83
 	 * @param string $text_string  - the text to be encrypted
84 84
 	 * @return string
85 85
 	 */
86
-	public function encrypt ( $text_string = '' ) {
86
+	public function encrypt($text_string = '') {
87 87
 		// you give me nothing??? GET OUT !
88
-		if  ( empty( $text_string ))  {
88
+		if (empty($text_string)) {
89 89
 			return $text_string;
90 90
 		}
91
-		if ( $this->_use_mcrypt ) {
92
-			$encrypted_text = $this->m_encrypt( $text_string );
91
+		if ($this->_use_mcrypt) {
92
+			$encrypted_text = $this->m_encrypt($text_string);
93 93
 		} else {
94
-			$encrypted_text = $this->acme_encrypt( $text_string );
94
+			$encrypted_text = $this->acme_encrypt($text_string);
95 95
 		}
96 96
 		return $encrypted_text;
97 97
 	}
@@ -104,16 +104,16 @@  discard block
 block discarded – undo
104 104
 	 * @param string $encrypted_text - the text to be decrypted
105 105
 	 * @return string
106 106
 	 */
107
-	public function decrypt  ( $encrypted_text = '' )  {
107
+	public function decrypt($encrypted_text = '') {
108 108
 		// you give me nothing??? GET OUT !
109
-		if  ( empty( $encrypted_text ))  {
109
+		if (empty($encrypted_text)) {
110 110
 			return $encrypted_text;
111 111
 		}
112 112
 		// if PHP's mcrypt functions are installed then we'll use them
113
-		if ( $this->_use_mcrypt ) {
114
-			$decrypted_text = $this->m_decrypt( $encrypted_text );
113
+		if ($this->_use_mcrypt) {
114
+			$decrypted_text = $this->m_decrypt($encrypted_text);
115 115
 		} else {
116
-			$decrypted_text = $this->acme_decrypt( $encrypted_text );
116
+			$decrypted_text = $this->acme_decrypt($encrypted_text);
117 117
 		}
118 118
 		return $decrypted_text;
119 119
  	}
@@ -128,15 +128,15 @@  discard block
 block discarded – undo
128 128
 	 * @internal param $string - the text to be encoded
129 129
 	 * @return string
130 130
 	 */
131
-	public function base64_url_encode ( $text_string = '' ) {
131
+	public function base64_url_encode($text_string = '') {
132 132
 		// you give me nothing??? GET OUT !
133
-		if  ( ! $text_string )  {
133
+		if ( ! $text_string) {
134 134
 			return $text_string;
135 135
 		}
136 136
 		// encode
137
-		$encoded_string = base64_encode ( $text_string );
137
+		$encoded_string = base64_encode($text_string);
138 138
 		// remove chars to make encoding more URL friendly
139
-		$encoded_string = strtr ( $encoded_string, '+/=', '-_,' );
139
+		$encoded_string = strtr($encoded_string, '+/=', '-_,');
140 140
 		return $encoded_string;
141 141
 	}
142 142
 
@@ -150,15 +150,15 @@  discard block
 block discarded – undo
150 150
 	 * @internal param $string - the text to be decoded
151 151
 	 * @return string
152 152
 	 */
153
-	public function base64_url_decode ( $encoded_string = '' ) {
153
+	public function base64_url_decode($encoded_string = '') {
154 154
 		// you give me nothing??? GET OUT !
155
-		if  ( ! $encoded_string )  {
155
+		if ( ! $encoded_string) {
156 156
 			return $encoded_string;
157 157
 		}
158 158
 		// replace previously removed characters
159
-		$encoded_string = strtr ( $encoded_string, '-_,', '+/=' );
159
+		$encoded_string = strtr($encoded_string, '-_,', '+/=');
160 160
 		// decode
161
-		$decoded_string = base64_decode ( $encoded_string );
161
+		$decoded_string = base64_decode($encoded_string);
162 162
 		return $decoded_string;
163 163
 	}
164 164
 
@@ -171,19 +171,19 @@  discard block
 block discarded – undo
171 171
 	 * @internal param $string - the text to be encrypted
172 172
 	 * @return string
173 173
 	 */
174
-	private function m_encrypt  ( $text_string = '' ) {
174
+	private function m_encrypt($text_string = '') {
175 175
 		// you give me nothing??? GET OUT !
176
-		if  ( ! $text_string )  {
176
+		if ( ! $text_string) {
177 177
 			return $text_string;
178 178
 		}
179 179
 		// get the initialization vector size
180
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
180
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
181 181
 		// initialization vector
182
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
182
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
183 183
 		// encrypt it
184
-		$encrypted_text = mcrypt_encrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv );
184
+		$encrypted_text = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv);
185 185
 		// trim and encode
186
-		$encrypted_text = trim ( base64_encode( $encrypted_text ) );
186
+		$encrypted_text = trim(base64_encode($encrypted_text));
187 187
 		return $encrypted_text;
188 188
 	}
189 189
 
@@ -196,19 +196,19 @@  discard block
 block discarded – undo
196 196
 	 * @internal param $string - the text to be decrypted
197 197
 	 * @return string
198 198
 	 */
199
-	private function m_decrypt  ( $encrypted_text = '' )  {
199
+	private function m_decrypt($encrypted_text = '') {
200 200
 		// you give me nothing??? GET OUT !
201
-		if  ( ! $encrypted_text )  {
201
+		if ( ! $encrypted_text) {
202 202
 			return $encrypted_text;
203 203
 		}
204 204
 		// decode
205
-		$encrypted_text = base64_decode ( $encrypted_text );
205
+		$encrypted_text = base64_decode($encrypted_text);
206 206
 		// get the initialization vector size
207
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
208
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
207
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
208
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
209 209
 		// decrypt it
210
-		$decrypted_text = mcrypt_decrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv );
211
-		$decrypted_text = trim ( $decrypted_text );
210
+		$decrypted_text = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv);
211
+		$decrypted_text = trim($decrypted_text);
212 212
 		return $decrypted_text;
213 213
 	}
214 214
 
@@ -222,18 +222,18 @@  discard block
 block discarded – undo
222 222
 	 * @internal param $string - the text to be decrypted
223 223
 	 * @return string
224 224
 	 */
225
-	private function acme_encrypt ( $text_string = '' ) {
225
+	private function acme_encrypt($text_string = '') {
226 226
 		// you give me nothing??? GET OUT !
227
-		if  ( ! $text_string )  {
227
+		if ( ! $text_string) {
228 228
 			return $text_string;
229 229
 		}
230
-		$key_bits = str_split ( str_pad ( '', strlen( $text_string ), $this->get_encryption_key(), STR_PAD_RIGHT ));
231
-		$string_bits = str_split( $text_string );
232
-		foreach ( $string_bits as $k =>$v ) {
233
-			$temp = ord( $v ) + ord ( $key_bits[$k] );
234
-			$string_bits[$k] = chr ( $temp > 255 ? ( $temp - 256 ) : $temp );
230
+		$key_bits = str_split(str_pad('', strlen($text_string), $this->get_encryption_key(), STR_PAD_RIGHT));
231
+		$string_bits = str_split($text_string);
232
+		foreach ($string_bits as $k =>$v) {
233
+			$temp = ord($v) + ord($key_bits[$k]);
234
+			$string_bits[$k] = chr($temp > 255 ? ($temp - 256) : $temp);
235 235
 		}
236
-		$encrypted = base64_encode( join( '', $string_bits ) );
236
+		$encrypted = base64_encode(join('', $string_bits));
237 237
 		return $encrypted;
238 238
 	}
239 239
 
@@ -247,19 +247,19 @@  discard block
 block discarded – undo
247 247
 	 * @internal param $string - the text to be decrypted
248 248
 	 * @return string
249 249
 	 */
250
-	private function acme_decrypt ( $encrypted_text = false ) {
250
+	private function acme_decrypt($encrypted_text = false) {
251 251
 		// you give me nothing??? GET OUT !
252
-		if  ( ! $encrypted_text )  {
252
+		if ( ! $encrypted_text) {
253 253
 			return false;
254 254
 		}
255
-		$encrypted_text = base64_decode ( $encrypted_text );
256
-		$key_bits = str_split ( str_pad ( '', strlen ( $encrypted_text ), $this->get_encryption_key(), STR_PAD_RIGHT ));
257
-		$string_bits = str_split ( $encrypted_text );
258
-		foreach ( $string_bits as $k => $v ) {
259
-			$temp = ord ( $v ) - ord ( $key_bits[$k] );
260
-			$string_bits[$k] = chr ( $temp < 0 ? ( $temp + 256 ) : $temp );
255
+		$encrypted_text = base64_decode($encrypted_text);
256
+		$key_bits = str_split(str_pad('', strlen($encrypted_text), $this->get_encryption_key(), STR_PAD_RIGHT));
257
+		$string_bits = str_split($encrypted_text);
258
+		foreach ($string_bits as $k => $v) {
259
+			$temp = ord($v) - ord($key_bits[$k]);
260
+			$string_bits[$k] = chr($temp < 0 ? ($temp + 256) : $temp);
261 261
 		}
262
-		$decrypted = join( '', $string_bits );
262
+		$decrypted = join('', $string_bits);
263 263
 		return $decrypted;
264 264
 	}
265 265
 
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
 	 * @internal param $string - number of characters for random string
274 274
 	 * @return string
275 275
 	 */
276
-	public function generate_random_string ( $length = 40 ) {
277
-		$iterations = ceil ( $length / 40 );
276
+	public function generate_random_string($length = 40) {
277
+		$iterations = ceil($length / 40);
278 278
 		$random_string = '';
279
-		for ($i = 0; $i < $iterations; $i ++) {
280
-			$random_string .= sha1( microtime(TRUE) . mt_rand( 10000, 90000 ));
279
+		for ($i = 0; $i < $iterations; $i++) {
280
+			$random_string .= sha1(microtime(TRUE).mt_rand(10000, 90000));
281 281
 		}
282
-		$random_string =  substr( $random_string, 0, $length );
282
+		$random_string = substr($random_string, 0, $length);
283 283
 		return $random_string;
284 284
 	}
285 285
 
Please login to merge, or discard this patch.
core/EE_Error.core.php 4 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
Indentation   +170 added lines, -170 removed lines patch added patch discarded remove patch
@@ -18,52 +18,52 @@  discard block
 block discarded – undo
18 18
 
19 19
 
20 20
 	/**
21
-	* 	name of the file to log exceptions to
22
-	* 	@access	private
23
-    *	@var string
24
-	*/
21
+	 * 	name of the file to log exceptions to
22
+	 * 	@access	private
23
+	 *	@var string
24
+	 */
25 25
 	private static $_exception_log_file = 'espresso_error_log.txt';
26 26
 
27 27
 	/**
28
-	* 	the exception
29
-	* 	@access	private
30
-    *	@var object
31
-	*/
28
+	 * 	the exception
29
+	 * 	@access	private
30
+	 *	@var object
31
+	 */
32 32
 	private $_exception;
33 33
 
34 34
 	/**
35
-	* 	stores details for all exception
36
-	* 	@access	private
37
-    *	@var array
38
-	*/
35
+	 * 	stores details for all exception
36
+	 * 	@access	private
37
+	 *	@var array
38
+	 */
39 39
 	private static $_all_exceptions = array();
40 40
 
41 41
 	/**
42
-	* 	tracks number of errors
43
-	* 	@access	private
44
-    *	@var int
45
-	*/
42
+	 * 	tracks number of errors
43
+	 * 	@access	private
44
+	 *	@var int
45
+	 */
46 46
 	private static $_error_count = 0;
47 47
 
48 48
 	/**
49
-	* 	has JS been loaded ?
50
-	* 	@access	private
51
-    *	@var boolean
52
-	*/
49
+	 * 	has JS been loaded ?
50
+	 * 	@access	private
51
+	 *	@var boolean
52
+	 */
53 53
 	private static $_js_loaded = FALSE;
54 54
 
55 55
 	/**
56
-	* 	has shutdown action been added ?
57
-	* 	@access	private
58
-    *	@var boolean
59
-	*/
56
+	 * 	has shutdown action been added ?
57
+	 * 	@access	private
58
+	 *	@var boolean
59
+	 */
60 60
 	private static $_action_added = FALSE;
61 61
 
62 62
 	/**
63
-	* 	has shutdown action been added ?
64
-	* 	@access	private
65
-    *	@var boolean
66
-	*/
63
+	 * 	has shutdown action been added ?
64
+	 * 	@access	private
65
+	 *	@var boolean
66
+	 */
67 67
 	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
68 68
 
69 69
 
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
 
72 72
 
73 73
 	/**
74
-	*	@override default exception handling
75
-	*	@access public
76
-	*	@echo string
77
-	*/
74
+	 *	@override default exception handling
75
+	 *	@access public
76
+	 *	@echo string
77
+	 */
78 78
 	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79 79
 		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80 80
 			parent::__construct( $message, $code );
@@ -173,10 +173,10 @@  discard block
 block discarded – undo
173 173
 
174 174
 
175 175
 	/**
176
-	*	fatal_error_handler
177
-	*	@access public
178
-	*	@return void
179
-	*/
176
+	 *	fatal_error_handler
177
+	 *	@access public
178
+	 *	@return void
179
+	 */
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182 182
 		if ( $last_error['type'] === E_ERROR ) {
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
 
222 222
 
223 223
 	/**
224
-	*	_add_actions
225
-	*	@access public
226
-	*	@return void
227
-	*/
228
-    public function get_error() {
224
+	 *	_add_actions
225
+	 *	@access public
226
+	 *	@return void
227
+	 */
228
+	public function get_error() {
229 229
 
230 230
 		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
231 231
 			throw $this;
@@ -261,27 +261,27 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
265
-	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
270
-				    return true;
271
-			    }
272
-		    }
273
-	    }
274
-	    return $has_error;
275
-    }
264
+	public static function has_error( $check_stored = false ){
265
+		$has_error = self::$_error_count ? true : false;
266
+		if ( $check_stored && ! $has_error ) {
267
+			$notices = (array) get_option( 'ee_notices', array() );
268
+			foreach ( $notices as $type => $notice ) {
269
+				if ( $type === 'errors' && $notice ) {
270
+					return true;
271
+				}
272
+			}
273
+		}
274
+		return $has_error;
275
+	}
276 276
 
277 277
 
278 278
 
279 279
 	/**
280
-	*	display_errors
281
-	*	@access public
282
-	*	@echo string
283
-	*/
284
-    public function display_errors(){
280
+	 *	display_errors
281
+	 *	@access public
282
+	 *	@echo string
283
+	 */
284
+	public function display_errors(){
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
 			// process trace info
354 354
 			if ( empty( $ex['trace'] )) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+				$trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
357 357
 
358 358
 			} else {
359 359
 
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406 406
 					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
407 407
 
408
-		              $trace_details .= '
408
+					  $trace_details .= '
409 409
 					<tr>
410 410
 						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411 411
 						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 
418 418
 				}
419 419
 
420
-	            $trace_details .= '
420
+				$trace_details .= '
421 421
 			 </table>
422 422
 			</div>';
423 423
 
@@ -497,12 +497,12 @@  discard block
 block discarded – undo
497 497
 
498 498
 
499 499
 	/**
500
-	*	generate string from exception trace args
501
-	*
502
-	*	@access private
503
-	*	@ param array $arguments
504
-	*	@ return string
505
-	*/
500
+	 *	generate string from exception trace args
501
+	 *
502
+	 *	@access private
503
+	 *	@ param array $arguments
504
+	 *	@ return string
505
+	 */
506 506
 	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
507 507
 
508 508
 		$arg_string = '';
@@ -546,15 +546,15 @@  discard block
 block discarded – undo
546 546
 
547 547
 
548 548
 	/**
549
-	* 	add error message
550
-	*
551
-	*	@access public
552
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
-	* 	@return 		void
557
-	*/
549
+	 * 	add error message
550
+	 *
551
+	 *	@access public
552
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
+	 * 	@return 		void
557
+	 */
558 558
 	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559 559
 		self::_add_notice ( 'errors', $msg, $file, $func, $line );
560 560
 		self::$_error_count++;
@@ -582,15 +582,15 @@  discard block
 block discarded – undo
582 582
 
583 583
 
584 584
 	/**
585
-	* 	add success message
586
-	*
587
-	*	@access public
588
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
-	* 	@return 		void
593
-	*/
585
+	 * 	add success message
586
+	 *
587
+	 *	@access public
588
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
+	 * 	@return 		void
593
+	 */
594 594
 	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595 595
 		self::_add_notice ( 'success', $msg, $file, $func, $line );
596 596
 	}
@@ -600,15 +600,15 @@  discard block
 block discarded – undo
600 600
 
601 601
 
602 602
 	/**
603
-	* 	add attention message
604
-	*
605
-	*	@access public
606
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
-	* 	@return 		void
611
-	*/
603
+	 * 	add attention message
604
+	 *
605
+	 *	@access public
606
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
+	 * 	@return 		void
611
+	 */
612 612
 	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613 613
 		self::_add_notice ( 'attention', $msg, $file, $func, $line );
614 614
 	}
@@ -618,16 +618,16 @@  discard block
 block discarded – undo
618 618
 
619 619
 
620 620
 	/**
621
-	* 	add success message
622
-	*
623
-	*	@access public
624
-	* 	@param		string		$type	whether the message is for a success or error notification
625
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
-	* 	@return 		void
630
-	*/
621
+	 * 	add success message
622
+	 *
623
+	 *	@access public
624
+	 * 	@param		string		$type	whether the message is for a success or error notification
625
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
+	 * 	@return 		void
630
+	 */
631 631
 	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632 632
 		if ( empty( $msg )) {
633 633
 			EE_Error::doing_it_wrong(
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
 
687 687
 
688 688
 	/**
689
-	* 	in some case it may be necessary to overwrite the existing success messages
690
-	*
691
-	*	@access public
692
-	* 	@return 		void
693
-	*/
689
+	 * 	in some case it may be necessary to overwrite the existing success messages
690
+	 *
691
+	 *	@access public
692
+	 * 	@return 		void
693
+	 */
694 694
 	public static function overwrite_success() {
695 695
 		self::$_espresso_notices['success'] = FALSE;
696 696
 	}
@@ -700,11 +700,11 @@  discard block
 block discarded – undo
700 700
 
701 701
 
702 702
 	/**
703
-	* 	in some case it may be necessary to overwrite the existing attention messages
704
-	*
705
-	*	@access public
706
-	* 	@return 		void
707
-	*/
703
+	 * 	in some case it may be necessary to overwrite the existing attention messages
704
+	 *
705
+	 *	@access public
706
+	 * 	@return 		void
707
+	 */
708 708
 	public static function overwrite_attention() {
709 709
 		self::$_espresso_notices['attention'] = FALSE;
710 710
 	}
@@ -714,11 +714,11 @@  discard block
 block discarded – undo
714 714
 
715 715
 
716 716
 	/**
717
-	* 	in some case it may be necessary to overwrite the existing error messages
718
-	*
719
-	*	@access public
720
-	* 	@return 		void
721
-	*/
717
+	 * 	in some case it may be necessary to overwrite the existing error messages
718
+	 *
719
+	 *	@access public
720
+	 * 	@return 		void
721
+	 */
722 722
 	public static function overwrite_errors() {
723 723
 		self::$_espresso_notices['errors'] = FALSE;
724 724
 	}
@@ -726,24 +726,24 @@  discard block
 block discarded – undo
726 726
 
727 727
 
728 728
 	/**
729
-	*	reset_notices
730
-	*	@access private
731
-	*	@return void
732
-	*/
729
+	 *	reset_notices
730
+	 *	@access private
731
+	 *	@return void
732
+	 */
733 733
 	public static function reset_notices(){
734
-    	self::$_espresso_notices['success'] = FALSE;
735
-    	self::$_espresso_notices['attention'] = FALSE;
736
-    	self::$_espresso_notices['errors'] = FALSE;
737
-    }
734
+		self::$_espresso_notices['success'] = FALSE;
735
+		self::$_espresso_notices['attention'] = FALSE;
736
+		self::$_espresso_notices['errors'] = FALSE;
737
+	}
738 738
 
739 739
 
740 740
 
741 741
 	/**
742
-	*	has_errors
743
-	*	@access public
744
-	*	@return int
745
-	*/
746
-    public static function has_notices(){
742
+	 *	has_errors
743
+	 *	@access public
744
+	 *	@return int
745
+	 */
746
+	public static function has_notices(){
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749 749
 		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
@@ -774,15 +774,15 @@  discard block
 block discarded – undo
774 774
 
775 775
 
776 776
 	/**
777
-	* 	compile all error or success messages into one string
778
-	*	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
-	*
780
-	*	@access public
781
-	* 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
-	* 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
-	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
-	* 	@return 		array
785
-	*/
777
+	 * 	compile all error or success messages into one string
778
+	 *	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
+	 *
780
+	 *	@access public
781
+	 * 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
+	 * 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
+	 * 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
+	 * 	@return 		array
785
+	 */
786 786
 	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787 787
 		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
788 788
 
@@ -894,14 +894,14 @@  discard block
 block discarded – undo
894 894
 
895 895
 
896 896
 	/**
897
-	* 	add_persistent_admin_notice
898
-	*
899
-	*	@access 	public
900
-	* 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
-	* 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
-	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
-	* 	@return 		void
904
-	*/
897
+	 * 	add_persistent_admin_notice
898
+	 *
899
+	 *	@access 	public
900
+	 * 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
+	 * 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
+	 * 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
+	 * 	@return 		void
904
+	 */
905 905
 	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906 906
 		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907 907
 			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
@@ -1064,11 +1064,11 @@  discard block
 block discarded – undo
1064 1064
 
1065 1065
 
1066 1066
 	/**
1067
-	* 	enqueue_error_scripts
1068
-	*
1069
-	*	@access public
1070
-	* 	@return 		void
1071
-	*/
1067
+	 * 	enqueue_error_scripts
1068
+	 *
1069
+	 *	@access public
1070
+	 * 	@return 		void
1071
+	 */
1072 1072
 	public static function enqueue_error_scripts() {
1073 1073
 		self::_print_scripts();
1074 1074
 	}
@@ -1076,15 +1076,15 @@  discard block
 block discarded – undo
1076 1076
 
1077 1077
 
1078 1078
 	/**
1079
-	*	create error code from filepath, function name,
1080
-	*	and line number where exception or error was thrown
1081
-	*
1082
-	*	@access public
1083
-	*	@param string $file
1084
-	*	@param string $func
1085
-	*	@param string $line
1086
-	*	@return string
1087
-	*/
1079
+	 *	create error code from filepath, function name,
1080
+	 *	and line number where exception or error was thrown
1081
+	 *
1082
+	 *	@access public
1083
+	 *	@param string $file
1084
+	 *	@param string $func
1085
+	 *	@param string $line
1086
+	 *	@return string
1087
+	 */
1088 1088
 	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089 1089
 		$file = explode( '.', basename( $file ));
1090 1090
 		$error_code = ! empty( $file[0] ) ? $file[0] : '';
@@ -1098,13 +1098,13 @@  discard block
 block discarded – undo
1098 1098
 
1099 1099
 
1100 1100
 	/**
1101
-	*	write exception details to log file
1102
-	*
1103
-	*	@access public
1104
-	*	@ param timestamp $time
1105
-	*	@ param object $ex
1106
-	*	@ return void
1107
-	*/
1101
+	 *	write exception details to log file
1102
+	 *
1103
+	 *	@access public
1104
+	 *	@ param timestamp $time
1105
+	 *	@ param object $ex
1106
+	 *	@ return void
1107
+	 */
1108 1108
 	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1109 1109
 
1110 1110
 		if ( ! $ex ) {
Please login to merge, or discard this patch.
Spacing   +247 added lines, -247 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 // if you're a dev and want to receive all errors via email add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE );
3
-if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) {
4
-	set_error_handler( array( 'EE_Error', 'error_handler' ));
5
-	register_shutdown_function( array( 'EE_Error', 'fatal_error_handler' ));
3
+if (defined('WP_DEBUG') && WP_DEBUG === TRUE && defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS === TRUE) {
4
+	set_error_handler(array('EE_Error', 'error_handler'));
5
+	register_shutdown_function(array('EE_Error', 'fatal_error_handler'));
6 6
 }
7 7
 /**
8 8
  *
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	* 	@access	private
65 65
     *	@var boolean
66 66
 	*/
67
-	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
67
+	private static $_espresso_notices = array('success' => FALSE, 'errors' => FALSE, 'attention' => FALSE);
68 68
 
69 69
 
70 70
 
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
 	*	@access public
76 76
 	*	@echo string
77 77
 	*/
78
-	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79
-		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80
-			parent::__construct( $message, $code );
78
+	function __construct($message, $code = 0, Exception $previous = NULL) {
79
+		if (version_compare(phpversion(), '5.3.0', '<')) {
80
+			parent::__construct($message, $code);
81 81
 		} else {
82
-			parent::__construct( $message, $code, $previous );
82
+			parent::__construct($message, $code, $previous);
83 83
 		}
84 84
 	}
85 85
 
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
 	 * @param $line
95 95
 	 * @return void
96 96
 	 */
97
-	public static function error_handler( $code, $message, $file, $line ) {
98
-		$type = EE_Error::error_type( $code );
97
+	public static function error_handler($code, $message, $file, $line) {
98
+		$type = EE_Error::error_type($code);
99 99
 		$site = site_url();
100
-		switch ( $site ) {
100
+		switch ($site) {
101 101
 			case 'http://ee4.eventespresso.com/' :
102 102
 			case 'http://ee4decaf.eventespresso.com/' :
103 103
 			case 'http://ee4hf.eventespresso.com/' :
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 				$to = '[email protected]';
111 111
 				break;
112 112
 			default :
113
-				$to = get_option( 'admin_email' );
113
+				$to = get_option('admin_email');
114 114
 		}
115
-		$subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url();
116
-		$msg = EE_Error::_format_error( $type, $message, $file, $line );
117
-		if ( function_exists( 'wp_mail' )) {
118
-			add_filter( 'wp_mail_content_type', array( 'EE_Error', 'set_content_type' ));
119
-			wp_mail( $to, $subject, $msg );
115
+		$subject = $type.' '.$message.' in '.EVENT_ESPRESSO_VERSION.' on '.site_url();
116
+		$msg = EE_Error::_format_error($type, $message, $file, $line);
117
+		if (function_exists('wp_mail')) {
118
+			add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type'));
119
+			wp_mail($to, $subject, $msg);
120 120
 		}
121 121
 		echo '<div id="message" class="espresso-notices error"><p>';
122
-		echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line;
122
+		echo $type.': '.$message.'<br />'.$file.' line '.$line;
123 123
 		echo '<br /></p></div>';
124 124
 	}
125 125
 
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 	 * @param $code
133 133
 	 * @return string
134 134
 	 */
135
-	public static function error_type( $code ) {
136
-		switch( $code ) {
135
+	public static function error_type($code) {
136
+		switch ($code) {
137 137
 			case E_ERROR: // 1 //
138 138
 			return 'E_ERROR';
139 139
 			case E_WARNING: // 2 //
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
 	*/
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182
-		if ( $last_error['type'] === E_ERROR ) {
183
-			EE_Error::error_handler( E_ERROR, $last_error['message'], $last_error['file'], $last_error['line'] );
182
+		if ($last_error['type'] === E_ERROR) {
183
+			EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']);
184 184
 		}
185 185
 	}
186 186
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @param $line
196 196
 	 * @return string
197 197
 	 */
198
-	private static function _format_error( $code, $message, $file, $line ) {
198
+	private static function _format_error($code, $message, $file, $line) {
199 199
 		$html  = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>";
200 200
 		$html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>";
201 201
 		$html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>";
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 	 * @param $content_type
214 214
 	 * @return string
215 215
 	 */
216
-	public static function set_content_type( $content_type ) {
216
+	public static function set_content_type($content_type) {
217 217
 		return 'text/html';
218 218
 	}
219 219
 
@@ -227,24 +227,24 @@  discard block
 block discarded – undo
227 227
 	*/
228 228
     public function get_error() {
229 229
 
230
-		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
230
+		if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', FALSE)) {
231 231
 			throw $this;
232 232
 		}
233 233
 		// get separate user and developer messages if they exist
234
-		$msg = explode( '||', $this->getMessage() );
234
+		$msg = explode('||', $this->getMessage());
235 235
 		$user_msg = $msg[0];
236
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
236
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
237 237
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
238 238
 
239 239
 		// add details to _all_exceptions array
240 240
 		$x_time = time();
241
-		self::$_all_exceptions[ $x_time ]['name'] 	= get_class( $this );
242
-		self::$_all_exceptions[ $x_time ]['file'] 		= $this->getFile();
243
-		self::$_all_exceptions[ $x_time ]['line'] 		= $this->getLine();
244
-		self::$_all_exceptions[ $x_time ]['msg'] 	= $msg;
245
-		self::$_all_exceptions[ $x_time ]['code'] 	= $this->getCode();
246
-		self::$_all_exceptions[ $x_time ]['trace'] 	= $this->getTrace();
247
-		self::$_all_exceptions[ $x_time ]['string'] 	= $this->getTraceAsString();
241
+		self::$_all_exceptions[$x_time]['name'] = get_class($this);
242
+		self::$_all_exceptions[$x_time]['file'] 		= $this->getFile();
243
+		self::$_all_exceptions[$x_time]['line'] 		= $this->getLine();
244
+		self::$_all_exceptions[$x_time]['msg'] = $msg;
245
+		self::$_all_exceptions[$x_time]['code'] = $this->getCode();
246
+		self::$_all_exceptions[$x_time]['trace'] 	= $this->getTrace();
247
+		self::$_all_exceptions[$x_time]['string'] = $this->getTraceAsString();
248 248
 		self::$_error_count++;
249 249
 
250 250
 		//add_action( 'shutdown', array( $this, 'display_errors' ));
@@ -261,12 +261,12 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
264
+    public static function has_error($check_stored = false) {
265 265
 	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
266
+	    if ($check_stored && ! $has_error) {
267
+		    $notices = (array) get_option('ee_notices', array());
268
+		    foreach ($notices as $type => $notice) {
269
+			    if ($type === 'errors' && $notice) {
270 270
 				    return true;
271 271
 			    }
272 272
 		    }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 	*	@access public
282 282
 	*	@echo string
283 283
 	*/
284
-    public function display_errors(){
284
+    public function display_errors() {
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -342,18 +342,18 @@  discard block
 block discarded – undo
342 342
 </style>
343 343
 <div id="ee-error-message" class="error">';
344 344
 
345
-		if ( ! WP_DEBUG ) {
345
+		if ( ! WP_DEBUG) {
346 346
 			$output .= '
347 347
 	<p>';
348 348
 		}
349 349
 
350 350
 		// cycle thru errors
351
-		foreach ( self::$_all_exceptions as $time => $ex ) {
351
+		foreach (self::$_all_exceptions as $time => $ex) {
352 352
 
353 353
 			// process trace info
354
-			if ( empty( $ex['trace'] )) {
354
+			if (empty($ex['trace'])) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+	            $trace_details .= __('Sorry, but no trace information was available for this exception.', 'event_espresso');
357 357
 
358 358
 			} else {
359 359
 
@@ -368,50 +368,50 @@  discard block
 block discarded – undo
368 368
 					<th scope="col" align="left">Method( arguments )</th>
369 369
 				</tr>';
370 370
 
371
-				$last_on_stack = count( $ex['trace'] ) - 1;
371
+				$last_on_stack = count($ex['trace']) - 1;
372 372
 				// reverse array so that stack is in proper chronological order
373
-				$sorted_trace = array_reverse( $ex['trace'] );
373
+				$sorted_trace = array_reverse($ex['trace']);
374 374
 
375
-				foreach ( $sorted_trace as $nmbr => $trace ) {
375
+				foreach ($sorted_trace as $nmbr => $trace) {
376 376
 
377
-					$file = isset( $trace['file'] ) ? $trace['file'] : '' ;
378
-					$class = isset( $trace['class'] ) ? $trace['class'] : '';
379
-					$type = isset( $trace['type'] ) ? $trace['type'] : '';
380
-					$function = isset( $trace['function'] ) ? $trace['function'] : '';
381
-					$args = isset( $trace['args'] ) ? $this->_convert_args_to_string( $trace['args'] ) : '';
382
-					$line = isset( $trace['line'] ) ? $trace['line'] : '';
377
+					$file = isset($trace['file']) ? $trace['file'] : '';
378
+					$class = isset($trace['class']) ? $trace['class'] : '';
379
+					$type = isset($trace['type']) ? $trace['type'] : '';
380
+					$function = isset($trace['function']) ? $trace['function'] : '';
381
+					$args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : '';
382
+					$line = isset($trace['line']) ? $trace['line'] : '';
383 383
 					$zebra = $nmbr % 2 ? ' odd' : '';
384 384
 
385
-					if ( empty( $file ) && ! empty( $class )) {
386
-						$a = new ReflectionClass( $class );
385
+					if (empty($file) && ! empty($class)) {
386
+						$a = new ReflectionClass($class);
387 387
 						$file = $a->getFileName();
388
-						if ( empty( $line ) && ! empty( $function )) {
389
-							$b = new ReflectionMethod( $class, $function );
388
+						if (empty($line) && ! empty($function)) {
389
+							$b = new ReflectionMethod($class, $function);
390 390
 							$line = $b->getStartLine();
391 391
 						}
392 392
 					}
393 393
 
394
-					if ( $nmbr == $last_on_stack ) {
394
+					if ($nmbr == $last_on_stack) {
395 395
 						$file = $ex['file'] != '' ? $ex['file'] : $file;
396 396
 						$line = $ex['line'] != '' ? $ex['line'] : $line;
397
-						$error_code = self::generate_error_code ( $file, $trace['function'], $line );
397
+						$error_code = self::generate_error_code($file, $trace['function'], $line);
398 398
 					}
399 399
 
400
-					$nmbr_dsply = ! empty( $nmbr ) ? $nmbr : '&nbsp;';
401
-					$line_dsply = ! empty( $line ) ? $line : '&nbsp;';
402
-					$file_dsply = ! empty( $file ) ? $file : '&nbsp;';
403
-					$class_dsply = ! empty( $class ) ? $class : '&nbsp;';
404
-					$type_dsply = ! empty( $type ) ? $type : '&nbsp;';
405
-					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406
-					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
400
+					$nmbr_dsply = ! empty($nmbr) ? $nmbr : '&nbsp;';
401
+					$line_dsply = ! empty($line) ? $line : '&nbsp;';
402
+					$file_dsply = ! empty($file) ? $file : '&nbsp;';
403
+					$class_dsply = ! empty($class) ? $class : '&nbsp;';
404
+					$type_dsply = ! empty($type) ? $type : '&nbsp;';
405
+					$function_dsply = ! empty($function) ? $function : '&nbsp;';
406
+					$args_dsply = ! empty($args) ? '( '.$args.' )' : '';
407 407
 
408 408
 		              $trace_details .= '
409 409
 					<tr>
410
-						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411
-						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
412
-						<td align="left" class="' . $zebra . '">' . $file_dsply . '</td>
413
-						<td align="left" class="' . $zebra . '">' . $class_dsply . '</td>
414
-						<td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td>
410
+						<td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td>
411
+						<td align="right" class="' . $zebra.'">'.$line_dsply.'</td>
412
+						<td align="left" class="' . $zebra.'">'.$file_dsply.'</td>
413
+						<td align="left" class="' . $zebra.'">'.$class_dsply.'</td>
414
+						<td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td>
415 415
 					</tr>';
416 416
 
417 417
 
@@ -426,9 +426,9 @@  discard block
 block discarded – undo
426 426
 			$ex['code'] = $ex['code'] ? $ex['code'] : $error_code;
427 427
 
428 428
 			// add generic non-identifying messages for non-privileged uesrs
429
-			if ( ! WP_DEBUG ) {
429
+			if ( ! WP_DEBUG) {
430 430
 
431
-				$output .= '<span class="ee-error-user-msg-spn">' . trim( $ex['msg'] )  . '</span> &nbsp; <sup>' . $ex['code'] . '</sup><br />';
431
+				$output .= '<span class="ee-error-user-msg-spn">'.trim($ex['msg']).'</span> &nbsp; <sup>'.$ex['code'].'</sup><br />';
432 432
 
433 433
 			} else {
434 434
 
@@ -436,24 +436,24 @@  discard block
 block discarded – undo
436 436
 				$output .= '
437 437
 		<div class="ee-error-dev-msg-dv">
438 438
 			<p class="ee-error-dev-msg-pg">
439
-				<strong class="ee-error-dev-msg-str">An ' . $ex['name'] . ' exception was thrown!</strong>  &nbsp; <span>code: ' . $ex['code'] . '</span><br />
440
-				<span class="big-text">"' . trim( $ex['msg'] ) . '"</span><br/>
441
-				<a id="display-ee-error-trace-' . self::$_error_count . $time . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' . self::$_error_count . $time . '">
442
-					' . __( 'click to view backtrace and class/method details', 'event_espresso' ) . '
439
+				<strong class="ee-error-dev-msg-str">An ' . $ex['name'].' exception was thrown!</strong>  &nbsp; <span>code: '.$ex['code'].'</span><br />
440
+				<span class="big-text">"' . trim($ex['msg']).'"</span><br/>
441
+				<a id="display-ee-error-trace-' . self::$_error_count.$time.'" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-'.self::$_error_count.$time.'">
442
+					' . __('click to view backtrace and class/method details', 'event_espresso').'
443 443
 				</a><br />
444 444
 				<span class="small-text lt-grey-text">'.$ex['file'].' &nbsp; ( line no: '.$ex['line'].' )</span>
445 445
 			</p>
446
-			<div id="ee-error-trace-' . self::$_error_count . $time . '-dv" class="ee-error-trace-dv" style="display: none;">
446
+			<div id="ee-error-trace-' . self::$_error_count.$time.'-dv" class="ee-error-trace-dv" style="display: none;">
447 447
 				' . $trace_details;
448 448
 
449
-				if ( ! empty( $class )) {
449
+				if ( ! empty($class)) {
450 450
 					$output .= '
451 451
 				<div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;">
452 452
 					<div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;">
453 453
 						<h3>Class Details</h3>';
454
-						$a = new ReflectionClass( $class );
454
+						$a = new ReflectionClass($class);
455 455
 						$output .= '
456
-						<pre>' . $a . '</pre>
456
+						<pre>' . $a.'</pre>
457 457
 					</div>
458 458
 				</div>';
459 459
 				}
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
 
466 466
 			}
467 467
 
468
-			$this->write_to_error_log( $time, $ex );
468
+			$this->write_to_error_log($time, $ex);
469 469
 
470 470
 		}
471 471
 
472 472
 		// remove last linebreak
473
-		$output = substr( $output, 0, ( count( $output ) - 7 ));
473
+		$output = substr($output, 0, (count($output) - 7));
474 474
 
475
-		if ( ! WP_DEBUG ) {
475
+		if ( ! WP_DEBUG) {
476 476
 			$output .= '
477 477
 	</p>';
478 478
 		}
@@ -480,10 +480,10 @@  discard block
 block discarded – undo
480 480
 		$output .= '
481 481
 </div>';
482 482
 
483
-		$output .= self::_print_scripts( TRUE );
483
+		$output .= self::_print_scripts(TRUE);
484 484
 
485
-		if ( defined( 'DOING_AJAX' )) {
486
-			echo json_encode( array( 'error' => $output ));
485
+		if (defined('DOING_AJAX')) {
486
+			echo json_encode(array('error' => $output));
487 487
 			exit();
488 488
 		}
489 489
 
@@ -503,29 +503,29 @@  discard block
 block discarded – undo
503 503
 	*	@ param array $arguments
504 504
 	*	@ return string
505 505
 	*/
506
-	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
506
+	private function _convert_args_to_string($arguments = array(), $array = FALSE) {
507 507
 
508 508
 		$arg_string = '';
509
-		if ( ! empty( $arguments )) {
509
+		if ( ! empty($arguments)) {
510 510
 
511 511
 			$args = array();
512 512
 
513
-			foreach ( $arguments as $arg ) {
513
+			foreach ($arguments as $arg) {
514 514
 
515
-				if ( ! empty( $arg )) {
515
+				if ( ! empty($arg)) {
516 516
 
517
-					if ( is_string( $arg )) {
518
-						$args[] = " '" . $arg . "'";
519
-					} elseif ( is_array( $arg )) {
520
-						$args[] = 'ARRAY(' . $this->_convert_args_to_string( $arg, TRUE );
521
-					} elseif ( is_null( $arg )) {
517
+					if (is_string($arg)) {
518
+						$args[] = " '".$arg."'";
519
+					} elseif (is_array($arg)) {
520
+						$args[] = 'ARRAY('.$this->_convert_args_to_string($arg, TRUE);
521
+					} elseif (is_null($arg)) {
522 522
 						$args[] = ' NULL';
523
-					} elseif ( is_bool( $arg )) {
524
-						$args[] = ( $arg ) ? ' TRUE' : ' FALSE';
525
-					} elseif ( is_object( $arg )) {
526
-						$args[] = ' OBJECT ' . get_class( $arg );
527
-					} elseif ( is_resource( $arg )) {
528
-						$args[] = get_resource_type( $arg );
523
+					} elseif (is_bool($arg)) {
524
+						$args[] = ($arg) ? ' TRUE' : ' FALSE';
525
+					} elseif (is_object($arg)) {
526
+						$args[] = ' OBJECT '.get_class($arg);
527
+					} elseif (is_resource($arg)) {
528
+						$args[] = get_resource_type($arg);
529 529
 					} else {
530 530
 						$args[] = $arg;
531 531
 					}
@@ -533,9 +533,9 @@  discard block
 block discarded – undo
533 533
 				}
534 534
 
535 535
 			}
536
-			$arg_string = implode( ', ', $args );
536
+			$arg_string = implode(', ', $args);
537 537
 		}
538
-		if ( $array ) {
538
+		if ($array) {
539 539
 			$arg_string .= ' )';
540 540
 		}
541 541
 		return $arg_string;
@@ -555,8 +555,8 @@  discard block
 block discarded – undo
555 555
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556 556
 	* 	@return 		void
557 557
 	*/
558
-	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559
-		self::_add_notice ( 'errors', $msg, $file, $func, $line );
558
+	public static function add_error($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
559
+		self::_add_notice('errors', $msg, $file, $func, $line);
560 560
 		self::$_error_count++;
561 561
 	}
562 562
 
@@ -569,11 +569,11 @@  discard block
 block discarded – undo
569 569
 	 * @param string $line
570 570
 	 * @throws EE_Error
571 571
 	 */
572
-	public static function throw_exception_if_debugging( $msg = null, $file = null, $func = null, $line = null ) {
573
-		if( WP_DEBUG ) {
574
-			throw new EE_Error( $msg );
575
-		} else  {
576
-			EE_Error::add_error( $msg, $file, $func, $line );
572
+	public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) {
573
+		if (WP_DEBUG) {
574
+			throw new EE_Error($msg);
575
+		} else {
576
+			EE_Error::add_error($msg, $file, $func, $line);
577 577
 		}
578 578
 	}
579 579
 
@@ -591,8 +591,8 @@  discard block
 block discarded – undo
591 591
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592 592
 	* 	@return 		void
593 593
 	*/
594
-	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595
-		self::_add_notice ( 'success', $msg, $file, $func, $line );
594
+	public static function add_success($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
595
+		self::_add_notice('success', $msg, $file, $func, $line);
596 596
 	}
597 597
 
598 598
 
@@ -609,8 +609,8 @@  discard block
 block discarded – undo
609 609
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610 610
 	* 	@return 		void
611 611
 	*/
612
-	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613
-		self::_add_notice ( 'attention', $msg, $file, $func, $line );
612
+	public static function add_attention($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
613
+		self::_add_notice('attention', $msg, $file, $func, $line);
614 614
 	}
615 615
 
616 616
 
@@ -628,12 +628,12 @@  discard block
 block discarded – undo
628 628
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629 629
 	* 	@return 		void
630 630
 	*/
631
-	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632
-		if ( empty( $msg )) {
631
+	private static function _add_notice($type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
632
+		if (empty($msg)) {
633 633
 			EE_Error::doing_it_wrong(
634
-				'EE_Error::add_' . $type . '()',
634
+				'EE_Error::add_'.$type.'()',
635 635
 				sprintf(
636
-					__( 'Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso' ),
636
+					__('Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso'),
637 637
 					$type,
638 638
 					$file,
639 639
 					$line
@@ -641,17 +641,17 @@  discard block
 block discarded – undo
641 641
 				EVENT_ESPRESSO_VERSION
642 642
 			);
643 643
 		}
644
-		if ( $type == 'errors' && ( empty( $file ) || empty( $func ) || empty( $line ))) {
644
+		if ($type == 'errors' && (empty($file) || empty($func) || empty($line))) {
645 645
 			EE_Error::doing_it_wrong(
646 646
 				'EE_Error::add_error()',
647
-				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso' ),
647
+				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso'),
648 648
 				EVENT_ESPRESSO_VERSION
649 649
 			);
650 650
 		}
651 651
 		// get separate user and developer messages if they exist
652
-		$msg = explode( '||', $msg );
652
+		$msg = explode('||', $msg);
653 653
 		$user_msg = $msg[0];
654
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
654
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
655 655
 		/**
656 656
 		 * Do an action so other code can be triggered when a notice is created
657 657
 		 * @param string $type can be 'errors', 'attention', or 'success'
@@ -661,22 +661,22 @@  discard block
 block discarded – undo
661 661
 		 * @param string $func function where error was generated
662 662
 		 * @param string $line line where error was generated
663 663
 		 */
664
-		do_action( 'AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line );
664
+		do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line);
665 665
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
666 666
 		// add notice if message exists
667
-		if ( ! empty( $msg )) {
667
+		if ( ! empty($msg)) {
668 668
 			// get error code
669
-			$notice_code = EE_Error::generate_error_code( $file, $func, $line );
670
-			if ( WP_DEBUG && $type == 'errors' ) {
671
-				$msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>';
669
+			$notice_code = EE_Error::generate_error_code($file, $func, $line);
670
+			if (WP_DEBUG && $type == 'errors') {
671
+				$msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>';
672 672
 			}
673 673
 			// add notice. Index by code if it's not blank
674
-			if( $notice_code ) {
675
-				self::$_espresso_notices[ $type ][ $notice_code ] = $msg;
674
+			if ($notice_code) {
675
+				self::$_espresso_notices[$type][$notice_code] = $msg;
676 676
 			} else {
677
-				self::$_espresso_notices[ $type ][] = $msg;
677
+				self::$_espresso_notices[$type][] = $msg;
678 678
 			}
679
-			add_action( 'wp_footer', array( 'EE_Error', 'enqueue_error_scripts' ), 1 );
679
+			add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1);
680 680
 		}
681 681
 
682 682
 	}
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
 	*	@access private
731 731
 	*	@return void
732 732
 	*/
733
-	public static function reset_notices(){
733
+	public static function reset_notices() {
734 734
     	self::$_espresso_notices['success'] = FALSE;
735 735
     	self::$_espresso_notices['attention'] = FALSE;
736 736
     	self::$_espresso_notices['errors'] = FALSE;
@@ -743,14 +743,14 @@  discard block
 block discarded – undo
743 743
 	*	@access public
744 744
 	*	@return int
745 745
 	*/
746
-    public static function has_notices(){
746
+    public static function has_notices() {
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749
-		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
749
+		$has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) ? 3 : $has_notices;
750 750
 		// check for attention messages
751
-		$has_notices = self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ? 2 : $has_notices;
751
+		$has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) ? 2 : $has_notices;
752 752
 		// check for error messages
753
-		$has_notices = self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ? 1 : $has_notices;
753
+		$has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) ? 1 : $has_notices;
754 754
 		return $has_notices;
755 755
 	}
756 756
 
@@ -765,9 +765,9 @@  discard block
 block discarded – undo
765 765
 	 */
766 766
 	public static function get_vanilla_notices() {
767 767
 		return array(
768
-			'success' => isset( self::$_espresso_notices['success'] ) ? self::$_espresso_notices['success'] : array(),
769
-			'attention' => isset( self::$_espresso_notices['attention'] )  ? self::$_espresso_notices['attention'] : array(),
770
-			'errors' => isset( self::$_espresso_notices['errors'] ) ? self::$_espresso_notices['errors'] : array(),
768
+			'success' => isset(self::$_espresso_notices['success']) ? self::$_espresso_notices['success'] : array(),
769
+			'attention' => isset(self::$_espresso_notices['attention']) ? self::$_espresso_notices['attention'] : array(),
770
+			'errors' => isset(self::$_espresso_notices['errors']) ? self::$_espresso_notices['errors'] : array(),
771 771
 		);
772 772
 	}
773 773
 
@@ -783,8 +783,8 @@  discard block
 block discarded – undo
783 783
 	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784 784
 	* 	@return 		array
785 785
 	*/
786
-	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
786
+	public static function get_notices($format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE) {
787
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
788 788
 
789 789
 		$success_messages = '';
790 790
 		$attention_messages = '';
@@ -794,44 +794,44 @@  discard block
 block discarded – undo
794 794
 		// EEH_Debug_Tools::printr( self::$_espresso_notices, 'espresso_notices  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
795 795
 
796 796
 		// either save notices to the db
797
-		if ( $save_to_transient ) {
798
-			update_option( 'ee_notices', self::$_espresso_notices );
797
+		if ($save_to_transient) {
798
+			update_option('ee_notices', self::$_espresso_notices);
799 799
 			return;
800 800
 		}
801 801
 		// grab any notices that have been previously saved
802
-		if ( $notices = get_option( 'ee_notices', FALSE )) {
803
-			foreach ( $notices as $type => $notice ) {
804
-				if ( is_array( $notice ) && ! empty( $notice )) {
802
+		if ($notices = get_option('ee_notices', FALSE)) {
803
+			foreach ($notices as $type => $notice) {
804
+				if (is_array($notice) && ! empty($notice)) {
805 805
 					// make sure that existing notice type is an array
806
-					self::$_espresso_notices[ $type ] =  is_array( self::$_espresso_notices[ $type ] ) && ! empty( self::$_espresso_notices[ $type ] ) ? self::$_espresso_notices[ $type ] : array();
806
+					self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) && ! empty(self::$_espresso_notices[$type]) ? self::$_espresso_notices[$type] : array();
807 807
 					// merge stored notices with any newly created ones
808
-					self::$_espresso_notices[ $type ] = array_merge( self::$_espresso_notices[ $type ], $notice );
808
+					self::$_espresso_notices[$type] = array_merge(self::$_espresso_notices[$type], $notice);
809 809
 					$print_scripts = TRUE;
810 810
 				}
811 811
 			}
812 812
 			// now clear any stored notices
813
-			update_option( 'ee_notices', FALSE );
813
+			update_option('ee_notices', FALSE);
814 814
 		}
815 815
 
816 816
 		// check for success messages
817
-		if ( self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] )) {
817
+		if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) {
818 818
 			// combine messages
819
-			$success_messages .= implode( self::$_espresso_notices['success'], '<br />' );
819
+			$success_messages .= implode(self::$_espresso_notices['success'], '<br />');
820 820
 			$print_scripts = TRUE;
821 821
 		}
822 822
 
823 823
 		// check for attention messages
824
-		if ( self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ) {
824
+		if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) {
825 825
 			// combine messages
826
-			$attention_messages .= implode( self::$_espresso_notices['attention'], '<br />' );
826
+			$attention_messages .= implode(self::$_espresso_notices['attention'], '<br />');
827 827
 			$print_scripts = TRUE;
828 828
 		}
829 829
 
830 830
 		// check for error messages
831
-		if ( self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ) {
832
-			$error_messages .= count( self::$_espresso_notices['errors'] ) > 1 ? __( 'The following errors have occurred:<br />', 'event_espresso' ) : __( 'An error has occurred:<br />', 'event_espresso' );
831
+		if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) {
832
+			$error_messages .= count(self::$_espresso_notices['errors']) > 1 ? __('The following errors have occurred:<br />', 'event_espresso') : __('An error has occurred:<br />', 'event_espresso');
833 833
 			// combine messages
834
-			$error_messages .= implode( self::$_espresso_notices['errors'], '<br />' );
834
+			$error_messages .= implode(self::$_espresso_notices['errors'], '<br />');
835 835
 			$print_scripts = TRUE;
836 836
 		}
837 837
 
@@ -845,21 +845,21 @@  discard block
 block discarded – undo
845 845
 				$css_id = is_admin() ? 'message' : 'espresso-notices-success';
846 846
 				$css_class = is_admin() ? 'updated fade' : 'success fade-away';
847 847
 				//showMessage( $success_messages );
848
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $success_messages . '</p>' . $close . '</div>';
848
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$success_messages.'</p>'.$close.'</div>';
849 849
 			}
850 850
 
851 851
 			if ($attention_messages != '') {
852 852
 				$css_id = is_admin() ? 'message' : 'espresso-notices-attention';
853 853
 				$css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away';
854 854
 				//showMessage( $error_messages, TRUE );
855
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $attention_messages . '</p>' . $close . '</div>';
855
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$attention_messages.'</p>'.$close.'</div>';
856 856
 			}
857 857
 
858 858
 			if ($error_messages != '') {
859 859
 				$css_id = is_admin() ? 'message' : 'espresso-notices-error';
860 860
 				$css_class = is_admin() ? 'error' : 'error fade-away';
861 861
 				//showMessage( $error_messages, TRUE );
862
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $error_messages . '</p>' . $close . '</div>';
862
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$error_messages.'</p>'.$close.'</div>';
863 863
 			}
864 864
 
865 865
 			$notices .= '</div>';
@@ -872,7 +872,7 @@  discard block
 block discarded – undo
872 872
 					'errors' => $error_messages
873 873
 			);
874 874
 
875
-			if ( $remove_empty ) {
875
+			if ($remove_empty) {
876 876
 				// remove empty notices
877 877
 				foreach ($notices as $type => $notice) {
878 878
 					if (empty($notice)) {
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
 			}
883 883
 		}
884 884
 
885
-		if ( $print_scripts ) {
885
+		if ($print_scripts) {
886 886
 			self::_print_scripts();
887 887
 		}
888 888
 
@@ -902,17 +902,17 @@  discard block
 block discarded – undo
902 902
 	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903 903
 	* 	@return 		void
904 904
 	*/
905
-	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
905
+	public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = FALSE) {
906
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
907
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
908 908
 			//maybe initialize persistent_admin_notices
909
-			if ( empty( $persistent_admin_notices )) {
910
-				add_option( 'ee_pers_admin_notices', array(), '', 'no' );
909
+			if (empty($persistent_admin_notices)) {
910
+				add_option('ee_pers_admin_notices', array(), '', 'no');
911 911
 			}
912
-			$pan_name = sanitize_key( $pan_name );
913
-			if ( ! array_key_exists( $pan_name, $persistent_admin_notices ) || $force_update ) {
914
-				$persistent_admin_notices[ $pan_name ] = $pan_message;
915
-				update_option( 'ee_pers_admin_notices', $persistent_admin_notices );
912
+			$pan_name = sanitize_key($pan_name);
913
+			if ( ! array_key_exists($pan_name, $persistent_admin_notices) || $force_update) {
914
+				$persistent_admin_notices[$pan_name] = $pan_message;
915
+				update_option('ee_pers_admin_notices', $persistent_admin_notices);
916 916
 			}
917 917
 		}
918 918
 	}
@@ -928,34 +928,34 @@  discard block
 block discarded – undo
928 928
 	 * @param bool          $return_immediately
929 929
 	 * @return        void
930 930
 	 */
931
-	public static function dismiss_persistent_admin_notice( $pan_name = '', $purge = FALSE, $return_immediately = FALSE ) {
932
-		$pan_name = EE_Registry::instance()->REQ->is_set( 'ee_nag_notice' ) ? EE_Registry::instance()->REQ->get( 'ee_nag_notice' ) : $pan_name;
933
-		if ( ! empty( $pan_name )) {
934
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
931
+	public static function dismiss_persistent_admin_notice($pan_name = '', $purge = FALSE, $return_immediately = FALSE) {
932
+		$pan_name = EE_Registry::instance()->REQ->is_set('ee_nag_notice') ? EE_Registry::instance()->REQ->get('ee_nag_notice') : $pan_name;
933
+		if ( ! empty($pan_name)) {
934
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
935 935
 			// check if notice we wish to dismiss is actually in the $persistent_admin_notices array
936
-			if ( is_array( $persistent_admin_notices ) && isset( $persistent_admin_notices[ $pan_name ] )) {
936
+			if (is_array($persistent_admin_notices) && isset($persistent_admin_notices[$pan_name])) {
937 937
 				// completely delete nag notice, or just NULL message so that it can NOT be added again ?
938
-				if ( $purge ) {
939
-					unset( $persistent_admin_notices[ $pan_name ] );
938
+				if ($purge) {
939
+					unset($persistent_admin_notices[$pan_name]);
940 940
 				} else {
941
-					$persistent_admin_notices[ $pan_name ] = NULL;
941
+					$persistent_admin_notices[$pan_name] = NULL;
942 942
 				}
943
-				if ( update_option( 'ee_pers_admin_notices', $persistent_admin_notices ) === FALSE ) {
944
-					EE_Error::add_error( sprintf( __( 'The persistent admin notice for "%s" could not be deleted.', 'event_espresso' ), $pan_name ), __FILE__, __FUNCTION__, __LINE__ );
943
+				if (update_option('ee_pers_admin_notices', $persistent_admin_notices) === FALSE) {
944
+					EE_Error::add_error(sprintf(__('The persistent admin notice for "%s" could not be deleted.', 'event_espresso'), $pan_name), __FILE__, __FUNCTION__, __LINE__);
945 945
 				}
946 946
 			}
947 947
 		}
948
-		if ( $return_immediately ) {
948
+		if ($return_immediately) {
949 949
 			return;
950
-		} else if ( EE_Registry::instance()->REQ->ajax ) {
950
+		} else if (EE_Registry::instance()->REQ->ajax) {
951 951
 			// grab any notices and concatenate into string
952
-			echo json_encode( array( 'errors' => implode( '<br />', EE_Error::get_notices( FALSE ))));
952
+			echo json_encode(array('errors' => implode('<br />', EE_Error::get_notices(FALSE))));
953 953
 			exit();
954 954
 		} else {
955 955
 			// save errors to a transient to be displayed on next request (after redirect)
956
-			EE_Error::get_notices( FALSE, TRUE );
957
-			$return_url = EE_Registry::instance()->REQ->is_set( 'return_url' ) ? EE_Registry::instance()->REQ->get( 'return_url' ) : '';
958
-			wp_safe_redirect( urldecode( $return_url ));
956
+			EE_Error::get_notices(FALSE, TRUE);
957
+			$return_url = EE_Registry::instance()->REQ->is_set('return_url') ? EE_Registry::instance()->REQ->get('return_url') : '';
958
+			wp_safe_redirect(urldecode($return_url));
959 959
 		}
960 960
 	}
961 961
 
@@ -970,20 +970,20 @@  discard block
 block discarded – undo
970 970
 	 * @param  string $return_url  URL to go back to after nag notice is dismissed
971 971
 	 * @return string
972 972
 	 */
973
-	public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) {
974
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
973
+	public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') {
974
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
975 975
 			$args = array(
976 976
 				'nag_notice' => $pan_name,
977
-				'return_url' => urlencode( $return_url ),
977
+				'return_url' => urlencode($return_url),
978 978
 				'ajax_url' => WP_AJAX_URL,
979
-				'unknown_error' => __( 'An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso' )
979
+				'unknown_error' => __('An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso')
980 980
 			);
981
-			wp_localize_script( 'espresso_core', 'ee_dismiss', $args );
981
+			wp_localize_script('espresso_core', 'ee_dismiss', $args);
982 982
 			return '
983
-			<div id="' . $pan_name . '" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
-				<p>' . $pan_message . '</p>
985
-				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name . '">
986
-					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__( 'Dismiss', 'event_espresso' ) .'
983
+			<div id="' . $pan_name.'" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
+				<p>' . $pan_message.'</p>
985
+				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name.'">
986
+					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__('Dismiss', 'event_espresso').'
987 987
 				</a>
988 988
 				<div style="clear:both;"></div>
989 989
 			</div>';
@@ -1000,24 +1000,24 @@  discard block
 block discarded – undo
1000 1000
 	 * @param string $return_url
1001 1001
 	 * @return    array
1002 1002
 	 */
1003
-	public static function get_persistent_admin_notices( $return_url = '' ) {
1003
+	public static function get_persistent_admin_notices($return_url = '') {
1004 1004
 		$notices = '';
1005 1005
 		// check for persistent admin notices
1006 1006
 		//filter the list though so plugins can notify the admin in a different way if they want
1007 1007
 		$persistent_admin_notices = apply_filters(
1008 1008
 			'FHEE__EE_Error__get_persistent_admin_notices',
1009
-			get_option( 'ee_pers_admin_notices', FALSE ),
1009
+			get_option('ee_pers_admin_notices', FALSE),
1010 1010
 			'ee_pers_admin_notices',
1011 1011
 			$return_url
1012 1012
 		);
1013
-		if ( $persistent_admin_notices ) {
1013
+		if ($persistent_admin_notices) {
1014 1014
 			// load scripts
1015
-			wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
1016
-			wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE );
1017
-			wp_enqueue_script( 'ee_error_js' );
1015
+			wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
1016
+			wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE);
1017
+			wp_enqueue_script('ee_error_js');
1018 1018
 			// and display notices
1019
-			foreach( $persistent_admin_notices as $pan_name => $pan_message ) {
1020
-				$notices .= self::display_persistent_admin_notices( $pan_name, $pan_message, $return_url );
1019
+			foreach ($persistent_admin_notices as $pan_name => $pan_message) {
1020
+				$notices .= self::display_persistent_admin_notices($pan_name, $pan_message, $return_url);
1021 1021
 			}
1022 1022
 		}
1023 1023
 		return $notices;
@@ -1032,26 +1032,26 @@  discard block
 block discarded – undo
1032 1032
 	 * @param 	bool $force_print
1033 1033
 	 * @return 	void
1034 1034
 	 */
1035
-	private static function _print_scripts( $force_print = FALSE ) {
1036
-		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
1037
-			if ( wp_script_is( 'ee_error_js', 'enqueued' )) {
1035
+	private static function _print_scripts($force_print = FALSE) {
1036
+		if ((did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts')) && ! $force_print) {
1037
+			if (wp_script_is('ee_error_js', 'enqueued')) {
1038 1038
 				return;
1039
-			} else if ( wp_script_is( 'ee_error_js', 'registered' )) {
1040
-				add_filter( 'FHEE_load_css', '__return_true' );
1041
-				add_filter( 'FHEE_load_js', '__return_true' );
1042
-				wp_enqueue_script( 'ee_error_js' );
1043
-				wp_localize_script( 'ee_error_js','ee_settings', array( 'wp_debug'=>WP_DEBUG ));
1039
+			} else if (wp_script_is('ee_error_js', 'registered')) {
1040
+				add_filter('FHEE_load_css', '__return_true');
1041
+				add_filter('FHEE_load_js', '__return_true');
1042
+				wp_enqueue_script('ee_error_js');
1043
+				wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug'=>WP_DEBUG));
1044 1044
 			}
1045 1045
 		} else {
1046 1046
 			return '
1047 1047
 <script>
1048 1048
 /* <![CDATA[ */
1049
-var ee_settings = {"wp_debug":"' . WP_DEBUG . '"};
1049
+var ee_settings = {"wp_debug":"' . WP_DEBUG.'"};
1050 1050
 /* ]]> */
1051 1051
 </script>
1052
-<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script>
1053
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1054
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1052
+<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script>
1053
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1054
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1055 1055
 ';
1056 1056
 
1057 1057
 		}
@@ -1085,11 +1085,11 @@  discard block
 block discarded – undo
1085 1085
 	*	@param string $line
1086 1086
 	*	@return string
1087 1087
 	*/
1088
-	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089
-		$file = explode( '.', basename( $file ));
1090
-		$error_code = ! empty( $file[0] ) ? $file[0] : '';
1091
-		$error_code .= ! empty( $func ) ? ' - ' . $func : '';
1092
-		$error_code .= ! empty( $line ) ? ' - ' . $line : '';
1088
+	public static function generate_error_code($file = '', $func = '', $line = '') {
1089
+		$file = explode('.', basename($file));
1090
+		$error_code = ! empty($file[0]) ? $file[0] : '';
1091
+		$error_code .= ! empty($func) ? ' - '.$func : '';
1092
+		$error_code .= ! empty($line) ? ' - '.$line : '';
1093 1093
 		return $error_code;
1094 1094
 	}
1095 1095
 
@@ -1105,36 +1105,36 @@  discard block
 block discarded – undo
1105 1105
 	*	@ param object $ex
1106 1106
 	*	@ return void
1107 1107
 	*/
1108
-	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1108
+	public function write_to_error_log($time = FALSE, $ex = FALSE, $clear = FALSE) {
1109 1109
 
1110
-		if ( ! $ex ) {
1110
+		if ( ! $ex) {
1111 1111
 			return;
1112 1112
 		}
1113 1113
 
1114
-		if ( ! $time ) {
1114
+		if ( ! $time) {
1115 1115
 			$time = time();
1116 1116
 		}
1117 1117
 
1118
-		$exception_log = '----------------------------------------------------------------------------------------' . PHP_EOL;
1119
-		$exception_log .= '[' . date( 'Y-m-d H:i:s', $time ) . ']  Exception Details' . PHP_EOL;
1120
-		$exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL;
1121
-		$exception_log .= 'Code: '. $ex['code'] . PHP_EOL;
1122
-		$exception_log .= 'File: '. $ex['file'] . PHP_EOL;
1123
-		$exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL;
1124
-		$exception_log .= 'Stack trace: ' . PHP_EOL;
1125
-		$exception_log .= $ex['string'] . PHP_EOL;
1126
-		$exception_log .= '----------------------------------------------------------------------------------------' . PHP_EOL;
1118
+		$exception_log = '----------------------------------------------------------------------------------------'.PHP_EOL;
1119
+		$exception_log .= '['.date('Y-m-d H:i:s', $time).']  Exception Details'.PHP_EOL;
1120
+		$exception_log .= 'Message: '.$ex['msg'].PHP_EOL;
1121
+		$exception_log .= 'Code: '.$ex['code'].PHP_EOL;
1122
+		$exception_log .= 'File: '.$ex['file'].PHP_EOL;
1123
+		$exception_log .= 'Line No: '.$ex['line'].PHP_EOL;
1124
+		$exception_log .= 'Stack trace: '.PHP_EOL;
1125
+		$exception_log .= $ex['string'].PHP_EOL;
1126
+		$exception_log .= '----------------------------------------------------------------------------------------'.PHP_EOL;
1127 1127
 
1128 1128
 		try {
1129
-			EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file );
1130
-			EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' );
1131
-			if ( ! $clear ) {
1129
+			EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file);
1130
+			EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs');
1131
+			if ( ! $clear) {
1132 1132
 				//get existing log file and append new log info
1133
-				$exception_log = EEH_File::get_file_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ) . $exception_log;
1133
+				$exception_log = EEH_File::get_file_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file).$exception_log;
1134 1134
 			}
1135
-			EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file, $exception_log );
1136
-		} catch( EE_Error $e ){
1137
-			EE_Error::add_error( sprintf( __(  'Event Espresso error logging could not be setup because: %s', 'event_espresso' ), $e->getMessage() ));
1135
+			EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file, $exception_log);
1136
+		} catch (EE_Error $e) {
1137
+			EE_Error::add_error(sprintf(__('Event Espresso error logging could not be setup because: %s', 'event_espresso'), $e->getMessage()));
1138 1138
 			return;
1139 1139
 		}
1140 1140
 
@@ -1170,8 +1170,8 @@  discard block
 block discarded – undo
1170 1170
 		$applies_when = '',
1171 1171
 		$error_type = null
1172 1172
 	) {
1173
-		if ( defined('WP_DEBUG') && WP_DEBUG ) {
1174
-			EEH_Debug_Tools::instance()->doing_it_wrong( $function, $message, $version, $applies_when, $error_type );
1173
+		if (defined('WP_DEBUG') && WP_DEBUG) {
1174
+			EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type);
1175 1175
 		}
1176 1176
 	}
1177 1177
 
@@ -1205,13 +1205,13 @@  discard block
 block discarded – undo
1205 1205
  */
1206 1206
 function espresso_error_enqueue_scripts() {
1207 1207
 	// js for error handling
1208
-	wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE );
1209
-	wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE );
1208
+	wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE);
1209
+	wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE);
1210 1210
 }
1211
-if ( is_admin() ) {
1212
-	add_action( 'admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1211
+if (is_admin()) {
1212
+	add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1213 1213
 } else {
1214
-	add_action( 'wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1214
+	add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1215 1215
 }
1216 1216
 
1217 1217
 
Please login to merge, or discard this patch.
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 *    error_handler
90 90
 	 * @access public
91
-	 * @param $code
91
+	 * @param integer $code
92 92
 	 * @param $message
93 93
 	 * @param $file
94 94
 	 * @param $line
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	/**
190 190
 	 *    _format_error
191 191
 	 * @access private
192
-	 * @param $code
192
+	 * @param string $code
193 193
 	 * @param $message
194 194
 	 * @param $file
195 195
 	 * @param $line
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 	/**
224 224
 	*	_add_actions
225 225
 	*	@access public
226
-	*	@return void
226
+	*	@return string|null
227 227
 	*/
228 228
     public function get_error() {
229 229
 
@@ -998,7 +998,7 @@  discard block
 block discarded – undo
998 998
 	 *
999 999
 	 * @access    public
1000 1000
 	 * @param string $return_url
1001
-	 * @return    array
1001
+	 * @return    string
1002 1002
 	 */
1003 1003
 	public static function get_persistent_admin_notices( $return_url = '' ) {
1004 1004
 		$notices = '';
@@ -1030,7 +1030,7 @@  discard block
 block discarded – undo
1030 1030
 	 *
1031 1031
 	 * @access 	public
1032 1032
 	 * @param 	bool $force_print
1033
-	 * @return 	void
1033
+	 * @return 	null|string
1034 1034
 	 */
1035 1035
 	private static function _print_scripts( $force_print = FALSE ) {
1036 1036
 		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
@@ -1179,7 +1179,7 @@  discard block
 block discarded – undo
1179 1179
 
1180 1180
 	/**
1181 1181
 	 * Like get_notices, but returns an array of all the notices of the given type.
1182
-	 * @return array {
1182
+	 * @return boolean {
1183 1183
 	 *	@type array $success all the success messages
1184 1184
 	 *	@type array $errors all the error messages
1185 1185
 	 *	@type array $attention all the attention messages
Please login to merge, or discard this patch.
core/EE_Log.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
3 5
 /**
4 6
  * Event Espresso
Please login to merge, or discard this patch.
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  *
4 4
  * Class EE_Log
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @return EE_Log
63 63
 	 */
64 64
 	public static function instance() {
65
-		if ( ! self::$_instance instanceof EE_Log ) {
65
+		if ( ! self::$_instance instanceof EE_Log) {
66 66
 			self::$_instance = new self();
67 67
 		}
68 68
 		return self::$_instance;
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	private function __construct() {
76 76
 
77
-		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging ) {
77
+		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging) {
78 78
 			return;
79 79
 		}
80 80
 
81
-		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS;
81
+		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS;
82 82
 		$this->_log_file = EE_Registry::instance()->CFG->admin->log_file_name();
83 83
 		$this->_log = '';
84 84
 		$this->_debug_file = EE_Registry::instance()->CFG->admin->debug_file_name();
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 		$this->_remote_logging_url = EE_Registry::instance()->CFG->admin->remote_logging_url;
87 87
 		$this->_remote_log = '';
88 88
 
89
-		add_action( 'admin_init', array( $this, 'verify_filesystem' ), -10 );
90
-		add_action( 'AHEE_log', array( $this, 'log' ), 10, 4 );
91
-		if ( EE_Registry::instance()->CFG->admin->use_full_logging ) {
92
-			add_action( 'shutdown', array( $this, 'write_log' ), 9999 );
89
+		add_action('admin_init', array($this, 'verify_filesystem'), -10);
90
+		add_action('AHEE_log', array($this, 'log'), 10, 4);
91
+		if (EE_Registry::instance()->CFG->admin->use_full_logging) {
92
+			add_action('shutdown', array($this, 'write_log'), 9999);
93 93
 			// if WP_DEBUG
94
-			add_action( 'shutdown', array( $this, 'write_debug' ), 9999 );
94
+			add_action('shutdown', array($this, 'write_debug'), 9999);
95 95
 		}
96
-		if ( EE_Registry::instance()->CFG->admin->use_remote_logging ) {
97
-			add_action( 'shutdown', array( $this, 'send_log' ), 9999 );
96
+		if (EE_Registry::instance()->CFG->admin->use_remote_logging) {
97
+			add_action('shutdown', array($this, 'send_log'), 9999);
98 98
 		}
99 99
 
100 100
 	}
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function verify_filesystem() {
110 110
 		try {
111
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_log_file );
112
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_debug_file );
113
-			EEH_File::add_htaccess_deny_from_all( $this->_logs_folder );
114
-		} catch( EE_Error $e ){
115
-			EE_Error::add_error( sprintf( __(  'Event Espresso logging could not be setup because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
111
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_log_file);
112
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_debug_file);
113
+			EEH_File::add_htaccess_deny_from_all($this->_logs_folder);
114
+		} catch (EE_Error $e) {
115
+			EE_Error::add_error(sprintf(__('Event Espresso logging could not be setup because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
116 116
 			return;
117 117
 		}
118 118
 	}
@@ -129,15 +129,15 @@  discard block
 block discarded – undo
129 129
 	 * @param string $type
130 130
 	 * @return string
131 131
 	 */
132
-	private function _format_message( $file = '', $function = '', $message = '', $type = '' ) {
133
-		$msg = '----------------------------------------------------------------------------------------' . PHP_EOL;
134
-		$msg .= '[' . current_time( 'mysql' ) . '] ';
135
-		$msg .= ! empty( $file ) ? basename( $file ) : '';
136
-		$msg .= ! empty( $file ) && ! empty( $function ) ? ' -> ' : '';
137
-		$msg .= ! empty( $function ) ? $function . '()' : '';
132
+	private function _format_message($file = '', $function = '', $message = '', $type = '') {
133
+		$msg = '----------------------------------------------------------------------------------------'.PHP_EOL;
134
+		$msg .= '['.current_time('mysql').'] ';
135
+		$msg .= ! empty($file) ? basename($file) : '';
136
+		$msg .= ! empty($file) && ! empty($function) ? ' -> ' : '';
137
+		$msg .= ! empty($function) ? $function.'()' : '';
138 138
 		$msg .= PHP_EOL;
139
-		$type = ! empty( $type ) ? $type : 'log message';
140
-		$msg .= ! empty( $message ) ? "\t" . '[' . $type . '] ' . $message . PHP_EOL : '';
139
+		$type = ! empty($type) ? $type : 'log message';
140
+		$msg .= ! empty($message) ? "\t".'['.$type.'] '.$message.PHP_EOL : '';
141 141
 		return $msg;
142 142
 	}
143 143
 
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @param string $message
153 153
 	 * @param string $type
154 154
 	 */
155
-	public function log( $file = '', $function = '', $message = '', $type = '' ) {
156
-		$this->_log .= $this->_format_message( $file, $function, $message, $type );
155
+	public function log($file = '', $function = '', $message = '', $type = '') {
156
+		$this->_log .= $this->_format_message($file, $function, $message, $type);
157 157
 	}
158 158
 
159 159
 
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
 	public function write_log() {
166 166
 		try {
167 167
 			//get existing log file and append new log info
168
-			$this->_log = EEH_File::get_file_contents( $this->_logs_folder . $this->_log_file ) . $this->_log;
169
-			EEH_File::write_to_file( $this->_logs_folder . $this->_log_file, $this->_log, 'Event Espresso Log' );
170
-		} catch( EE_Error $e ){
171
-			EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
168
+			$this->_log = EEH_File::get_file_contents($this->_logs_folder.$this->_log_file).$this->_log;
169
+			EEH_File::write_to_file($this->_logs_folder.$this->_log_file, $this->_log, 'Event Espresso Log');
170
+		} catch (EE_Error $e) {
171
+			EE_Error::add_error(sprintf(__('Could not write to the Event Espresso log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
172 172
 			return;
173 173
 		}
174 174
 	}
@@ -181,31 +181,31 @@  discard block
 block discarded – undo
181 181
 	 */
182 182
 	public function send_log() {
183 183
 
184
-		if ( empty( $this->_remote_logging_url )) {
184
+		if (empty($this->_remote_logging_url)) {
185 185
 			return;
186 186
 		}
187 187
 
188
-		$data = 'domain=' . $_SERVER['HTTP_HOST'];
189
-		$data .= '&ip=' . $_SERVER['SERVER_ADDR'];
190
-		$data .= '&server_type=' . $_SERVER['SERVER_SOFTWARE'];
191
-		$data .= '&time=' . time();
192
-		$data .= '&remote_log=' . $this->_log;
193
-		$data .= '&request_array=' . json_encode( $_REQUEST );
188
+		$data = 'domain='.$_SERVER['HTTP_HOST'];
189
+		$data .= '&ip='.$_SERVER['SERVER_ADDR'];
190
+		$data .= '&server_type='.$_SERVER['SERVER_SOFTWARE'];
191
+		$data .= '&time='.time();
192
+		$data .= '&remote_log='.$this->_log;
193
+		$data .= '&request_array='.json_encode($_REQUEST);
194 194
 		$data .= '&action=save';
195 195
 
196
-		if ( defined( 'EELOGGING_PASS' )) {
197
-			$data .= '&pass=' . EELOGGING_PASS;
196
+		if (defined('EELOGGING_PASS')) {
197
+			$data .= '&pass='.EELOGGING_PASS;
198 198
 		}
199
-		if ( defined( 'EELOGGING_KEY' )) {
200
-			$data .= '&key=' . EELOGGING_KEY;
199
+		if (defined('EELOGGING_KEY')) {
200
+			$data .= '&key='.EELOGGING_KEY;
201 201
 		}
202 202
 
203
-		$c = curl_init( $this->_remote_logging_url );
204
-		curl_setopt( $c, CURLOPT_POST, TRUE );
205
-		curl_setopt( $c, CURLOPT_POSTFIELDS, $data );
206
-		curl_setopt( $c, CURLOPT_RETURNTRANSFER, TRUE );
207
-		curl_exec( $c );
208
-		curl_close( $c );
203
+		$c = curl_init($this->_remote_logging_url);
204
+		curl_setopt($c, CURLOPT_POST, TRUE);
205
+		curl_setopt($c, CURLOPT_POSTFIELDS, $data);
206
+		curl_setopt($c, CURLOPT_RETURNTRANSFER, TRUE);
207
+		curl_exec($c);
208
+		curl_close($c);
209 209
 	}
210 210
 
211 211
 
@@ -216,18 +216,18 @@  discard block
 block discarded – undo
216 216
 	 * previous entries are overwritten
217 217
 	 */
218 218
 	public function write_debug() {
219
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
219
+		if (defined('WP_DEBUG') && WP_DEBUG) {
220 220
 			$this->_debug_log = '';
221
-			foreach ( $_GET as $key => $value ) {
222
-				$this->_debug_log .= '$_GET["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
221
+			foreach ($_GET as $key => $value) {
222
+				$this->_debug_log .= '$_GET["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
223 223
 			}
224
-			foreach ( $_POST as $key => $value ) {
225
-				$this->_debug_log .= '$_POST["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
224
+			foreach ($_POST as $key => $value) {
225
+				$this->_debug_log .= '$_POST["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
226 226
 			}
227 227
 			try {
228
-				EEH_File::write_to_file( $this->_logs_folder . $this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log' );
229
-			} catch( EE_Error $e ){
230
-				EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso debug log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
228
+				EEH_File::write_to_file($this->_logs_folder.$this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log');
229
+			} catch (EE_Error $e) {
230
+				EE_Error::add_error(sprintf(__('Could not write to the Event Espresso debug log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
231 231
 				return;
232 232
 			}
233 233
 		}
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	 * __clone
240 240
 	 */
241 241
 	public function __clone() {
242
-		trigger_error( __( 'Clone is not allowed.', 'event_espresso' ), E_USER_ERROR );
242
+		trigger_error(__('Clone is not allowed.', 'event_espresso'), E_USER_ERROR);
243 243
 	}
244 244
 
245 245
 
Please login to merge, or discard this patch.
core/EE_Network_Config.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 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;
@@ -73,15 +73,15 @@  discard block
 block discarded – undo
73 73
 	 *  @access 	private
74 74
 	 */
75 75
 	private function __construct() {
76
-		do_action( 'AHEE__EE_Network_Config__construct__begin',$this );
76
+		do_action('AHEE__EE_Network_Config__construct__begin', $this);
77 77
 		//set defaults
78
-		$this->core = apply_filters( 'FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config() );
78
+		$this->core = apply_filters('FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config());
79 79
 		$this->addons = array();
80 80
 
81 81
 		$this->_load_config();
82 82
 
83 83
 		// construct__end hook
84
-		do_action( 'AHEE__EE_Network_Config__construct__end',$this );
84
+		do_action('AHEE__EE_Network_Config__construct__end', $this);
85 85
 	}
86 86
 
87 87
 
@@ -94,25 +94,25 @@  discard block
 block discarded – undo
94 94
 	 */
95 95
 	private function _load_config() {
96 96
 		//load network config start hook
97
-		do_action( 'AHEE__EE_Network_Config___load_config__start', $this );
97
+		do_action('AHEE__EE_Network_Config___load_config__start', $this);
98 98
 		$config = $this->get_config();
99
-		foreach ( $config as $config_prop => $settings ) {
100
-			if ( is_object( $settings ) && property_exists( $this, $config_prop ) ) {
101
-				$this->{$config_prop} = apply_filters( 'FHEE__EE_Network_Config___load_config__config_settings', $settings, $config_prop, $this );
102
-				if ( method_exists( $settings, 'populate' ) ) {
99
+		foreach ($config as $config_prop => $settings) {
100
+			if (is_object($settings) && property_exists($this, $config_prop)) {
101
+				$this->{$config_prop} = apply_filters('FHEE__EE_Network_Config___load_config__config_settings', $settings, $config_prop, $this);
102
+				if (method_exists($settings, 'populate')) {
103 103
 					$this->{$config_prop}->populate();
104 104
 				}
105
-				if ( method_exists( $settings, 'do_hooks' ) ) {
105
+				if (method_exists($settings, 'do_hooks')) {
106 106
 					$this->{$config_prop}->do_hooks();
107 107
 				}
108 108
 			}
109 109
 		}
110
-		if ( apply_filters( 'FHEE__EE_Network_Config___load_config__update_network_config', false ) ) {
110
+		if (apply_filters('FHEE__EE_Network_Config___load_config__update_network_config', false)) {
111 111
 			$this->update_config();
112 112
 		}
113 113
 
114 114
 		//load network config end hook
115
-		do_action( 'AHEE__EE_Network_Config___load_config__end', $this );
115
+		do_action('AHEE__EE_Network_Config___load_config__end', $this);
116 116
 	}
117 117
 
118 118
 
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
 	 */
127 127
 	public function get_config() {
128 128
 		// grab network configuration
129
-		$CFG = get_site_option( 'ee_network_config', array() );
130
-		$CFG = apply_filters( 'FHEE__EE_Network_Config__get_config__CFG', $CFG );
129
+		$CFG = get_site_option('ee_network_config', array());
130
+		$CFG = apply_filters('FHEE__EE_Network_Config__get_config__CFG', $CFG);
131 131
 		return $CFG;
132 132
 	}
133 133
 
@@ -141,39 +141,39 @@  discard block
 block discarded – undo
141 141
 	 * @param bool $add_error
142 142
 	 * @return bool success
143 143
 	 */
144
-	public function update_config( $add_success = FALSE, $add_error = TRUE ) {
145
-		do_action( 'AHEE__EE_Network_Config__update_config__begin',$this );
144
+	public function update_config($add_success = FALSE, $add_error = TRUE) {
145
+		do_action('AHEE__EE_Network_Config__update_config__begin', $this);
146 146
 
147 147
 		//need to bust cache for comparing original if this is a multisite install
148
-		if ( is_multisite() ) {
148
+		if (is_multisite()) {
149 149
 			global $current_site;
150
-			$cache_key = $current_site->id . ':ee_network_config';
151
-			wp_cache_delete( $cache_key, 'site-options' );
150
+			$cache_key = $current_site->id.':ee_network_config';
151
+			wp_cache_delete($cache_key, 'site-options');
152 152
 		}
153 153
 
154 154
 		//we have to compare existing saved config with config in memory because if there is no difference that means
155 155
 		//that the method executed fine but there just was no update.  WordPress doesn't distinguish between false because
156 156
 		//there were 0 records updated because of no change vs false because some error produced problems with the update.
157
-		$original = get_site_option( 'ee_network_config' );
157
+		$original = get_site_option('ee_network_config');
158 158
 
159
-		if ( $original == $this ) {
159
+		if ($original == $this) {
160 160
 			return true;
161 161
 		}
162 162
 		// update
163
-		$saved = update_site_option( 'ee_network_config', $this );
163
+		$saved = update_site_option('ee_network_config', $this);
164 164
 
165
-		do_action( 'AHEE__EE_Network_Config__update_config__end', $this, $saved );
165
+		do_action('AHEE__EE_Network_Config__update_config__end', $this, $saved);
166 166
 		// if config remains the same or was updated successfully
167
-		if ( $saved ) {
168
-			if ( $add_success ) {
169
-				$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' );
170
-				EE_Error::add_success( $msg );
167
+		if ($saved) {
168
+			if ($add_success) {
169
+				$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');
170
+				EE_Error::add_success($msg);
171 171
 			}
172 172
 			return true;
173 173
 		} else {
174
-			if ( $add_error ) {
175
-				$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' );
176
-				EE_Error::add_error( $msg , __FILE__, __FUNCTION__, __LINE__ );
174
+			if ($add_error) {
175
+				$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');
176
+				EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
177 177
 			}
178 178
 			return false;
179 179
 		}
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
 	 *  @return 	array
188 188
 	 */
189 189
 	public function __sleep() {
190
-		return apply_filters( 'FHEE__EE_Network_Config__sleep',array(
190
+		return apply_filters('FHEE__EE_Network_Config__sleep', array(
191 191
 			'core',
192
-		) );
192
+		));
193 193
 	}
194 194
 
195 195
 } //end EE_Network_Config.
Please login to merge, or discard this patch.
4_5_0_stages/EE_DMS_4_5_0_invoice_settings.dmsstage.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 		//so in case teh IPN is arriving later, let's try to process an IPN!
91 91
 		if($_SERVER['REQUEST_METHOD'] == 'POST'){
92 92
 			return $this->handle_ipn($_POST, $transaction );
93
-		}else{
93
+		} else{
94 94
 			return parent::finalize_payment_for( $transaction );
95 95
 		}
96 96
 	}
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * Just initializes the status of the migration
30 30
 	 */
31 31
 	public function __construct() {
32
-		$this->_pretty_name = __( 'Update Invoice Gateway Settings', 'event_espresso' );
32
+		$this->_pretty_name = __('Update Invoice Gateway Settings', 'event_espresso');
33 33
 		parent::__construct();
34 34
 	}
35 35
 
@@ -56,39 +56,39 @@  discard block
 block discarded – undo
56 56
 	 * @throws EE_Error
57 57
 	 * @return int number of items ACTUALLY migrated
58 58
 	 */
59
-	protected function _migration_step( $num_items = 1 ){
59
+	protected function _migration_step($num_items = 1) {
60 60
 		// if this isn't set then something is really wrong
61
-		if ( ! EE_Config::instance()->gateway instanceof EE_Gateway_Config ) {
62
-			throw new EE_Error( __( 'It appears the Event Espresso Core Configuration is not setup correctly.', 'event_espresso' ));
61
+		if ( ! EE_Config::instance()->gateway instanceof EE_Gateway_Config) {
62
+			throw new EE_Error(__('It appears the Event Espresso Core Configuration is not setup correctly.', 'event_espresso'));
63 63
 		}
64
-		$invoice_settings = isset( EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] ) ? EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] : NULL;
65
-		if( ! $invoice_settings ){
66
-			$this->add_error( __( 'Could not migrate EE4.4 invoice settings to EE4.5 because they didnt exist', 'event_espresso' ) );
67
-		}else{
68
-			$invoice_settings[ 'template_payment_instructions' ] = $invoice_settings[ 'pdf_instructions' ];
69
-			$invoice_settings[ 'template_invoice_payee_name' ] = $invoice_settings[ 'payable_to' ];
70
-			$invoice_settings[ 'template_invoice_address' ] = $invoice_settings[ 'payment_address' ];
71
-			$invoice_settings[ 'template_invoice_email' ] = '';
72
-			$invoice_settings[ 'template_invoice_tax_number' ] = '';
73
-			unset( $invoice_settings[ 'pdf_instructions' ] );
74
-			unset( $invoice_settings[ 'payable_to' ] );
75
-			unset( $invoice_settings[ 'payment_address' ] );
76
-			EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] = $invoice_settings;
77
-			EE_Config::instance()->update_espresso_config(false,false);
64
+		$invoice_settings = isset(EE_Config::instance()->gateway->payment_settings['Invoice']) ? EE_Config::instance()->gateway->payment_settings['Invoice'] : NULL;
65
+		if ( ! $invoice_settings) {
66
+			$this->add_error(__('Could not migrate EE4.4 invoice settings to EE4.5 because they didnt exist', 'event_espresso'));
67
+		} else {
68
+			$invoice_settings['template_payment_instructions'] = $invoice_settings['pdf_instructions'];
69
+			$invoice_settings['template_invoice_payee_name'] = $invoice_settings['payable_to'];
70
+			$invoice_settings['template_invoice_address'] = $invoice_settings['payment_address'];
71
+			$invoice_settings['template_invoice_email'] = '';
72
+			$invoice_settings['template_invoice_tax_number'] = '';
73
+			unset($invoice_settings['pdf_instructions']);
74
+			unset($invoice_settings['payable_to']);
75
+			unset($invoice_settings['payment_address']);
76
+			EE_Config::instance()->gateway->payment_settings['Invoice'] = $invoice_settings;
77
+			EE_Config::instance()->update_espresso_config(false, false);
78 78
 
79 79
 			//@todo: check 'invoice_css' too because we can't easily affect that so we might need to set a persistent notice
80 80
 			//(why is it tough to change? because we want to update the receipt and invoice message template, but
81 81
 			//message templates are only initialized AFTER migrations and those two are new in 4.5. So if we wanted to
82 82
 			//update them from a DMS, we'd need to have the DMS create the message templates which is quite a lot of code;
83 83
 			//also we don't want to build a dependency on the messages code because it is likely to change soon
84
-			if( ! in_array( $invoice_settings[ 'invoice_css' ], array( '', 'simple.css' ) ) ){
85
-				EE_Error::add_persistent_admin_notice( 'invoice_css_not_updated', sprintf( __( 'You had previously set your Invoice Payment Method\'s stylesheet to be %1$s, but that setting has moved. PDF and HTML Invoices and Receipts are now Messages, which means you can easily modify them from your Wordpress Dashboard instead of using filters or uploading template files. Please visit Messages -> Receipt and Messages -> Invoice to change their stylesheets.', 'event_espresso'), $invoice_settings[ 'invoice_css' ] ), FALSE );
84
+			if ( ! in_array($invoice_settings['invoice_css'], array('', 'simple.css'))) {
85
+				EE_Error::add_persistent_admin_notice('invoice_css_not_updated', sprintf(__('You had previously set your Invoice Payment Method\'s stylesheet to be %1$s, but that setting has moved. PDF and HTML Invoices and Receipts are now Messages, which means you can easily modify them from your Wordpress Dashboard instead of using filters or uploading template files. Please visit Messages -> Receipt and Messages -> Invoice to change their stylesheets.', 'event_espresso'), $invoice_settings['invoice_css']), FALSE);
86 86
 			}
87 87
 			$templates_relative_path = 'modules/gateways/Invoice/lib/templates/';
88
-			$overridden_invoice_body = EEH_Template::locate_template( $templates_relative_path . 'invoice_body.template.php', NULL, FALSE, FALSE, TRUE );
89
-			$overridden_receipt_body= EEH_Template::locate_template( $templates_relative_path . 'receipt_body.template.php', NULL, FALSE, FALSE, TRUE );
90
-			if( $overridden_invoice_body || $overridden_receipt_body ) {
91
-				EE_Error::add_persistent_admin_notice( 'invoice_overriding_templates', sprintf( __( 'Note: in this version of Event Espresso, PDF and HTML Invoices and Receipts are now Messages and can be changed just like any other messages; however we noticed you had previously overriden the old default Invoice/Receipt templates. Because of this, your old Invoice/Receipt templates will continue to be used INSTEAD of the new Invoice/Receipt message equivalents. We recommend deleting your old Invoice/Receipt templates and modifying the new Invoice and Receipt messages\'s content in Messages -> Invoice and Messages -> Receipt.')), TRUE );
88
+			$overridden_invoice_body = EEH_Template::locate_template($templates_relative_path.'invoice_body.template.php', NULL, FALSE, FALSE, TRUE);
89
+			$overridden_receipt_body = EEH_Template::locate_template($templates_relative_path.'receipt_body.template.php', NULL, FALSE, FALSE, TRUE);
90
+			if ($overridden_invoice_body || $overridden_receipt_body) {
91
+				EE_Error::add_persistent_admin_notice('invoice_overriding_templates', sprintf(__('Note: in this version of Event Espresso, PDF and HTML Invoices and Receipts are now Messages and can be changed just like any other messages; however we noticed you had previously overriden the old default Invoice/Receipt templates. Because of this, your old Invoice/Receipt templates will continue to be used INSTEAD of the new Invoice/Receipt message equivalents. We recommend deleting your old Invoice/Receipt templates and modifying the new Invoice and Receipt messages\'s content in Messages -> Invoice and Messages -> Receipt.')), TRUE);
92 92
 			}
93 93
 
94 94
 		}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_2_0.dms.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
 		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		} elseif( ! $version_string ){
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71 71
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
72
+		} else{
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
Please login to merge, or discard this patch.
Spacing   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@  discard block
 block discarded – undo
14 14
 //(all other times it gets resurrected from a wordpress option)
15 15
 $stages = glob(EE_CORE.'data_migration_scripts/4_2_0_stages/*');
16 16
 $class_to_filepath = array();
17
-if ( ! empty( $stages ) ) {
18
-	foreach($stages as $filepath){
17
+if ( ! empty($stages)) {
18
+	foreach ($stages as $filepath) {
19 19
 		$matches = array();
20
-		preg_match('~4_2_0_stages/(.*).dmsstage.php~',$filepath,$matches);
20
+		preg_match('~4_2_0_stages/(.*).dmsstage.php~', $filepath, $matches);
21 21
 		$class_to_filepath[$matches[1]] = $filepath;
22 22
 	}
23 23
 }
24 24
 //give addons a chance to autoload their stages too
25
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_2_0__autoloaded_stages',$class_to_filepath);
25
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_2_0__autoloaded_stages', $class_to_filepath);
26 26
 EEH_Autoloader::register_autoloader($class_to_filepath);
27 27
 
28
-class EE_DMS_Core_4_2_0 extends EE_Data_Migration_Script_Base{
28
+class EE_DMS_Core_4_2_0 extends EE_Data_Migration_Script_Base {
29 29
 
30 30
 
31 31
 
@@ -35,26 +35,26 @@  discard block
 block discarded – undo
35 35
 	 * @param TableManager  $table_manager
36 36
 	 * @param TableAnalysis $table_analysis
37 37
 	 */
38
-	public function __construct( TableManager $table_manager = null, TableAnalysis $table_analysis = null ) {
38
+	public function __construct(TableManager $table_manager = null, TableAnalysis $table_analysis = null) {
39 39
 		$this->_pretty_name = __("Data Migration to Event Espresso 4.2.0.P", "event_espresso");
40 40
 		$this->_priority = 10;
41 41
 		$this->_migration_stages = array(
42 42
 			new EE_DMS_4_2_0_question_group_questions(),
43 43
 			new EE_DMS_4_2_0_datetime_fields(),
44 44
 		);
45
-		parent::__construct( $table_manager, $table_analysis );
45
+		parent::__construct($table_manager, $table_analysis);
46 46
 	}
47 47
 	public function can_migrate_from_version($version_array) {
48 48
 		$version_string = $version_array['Core'];
49
-		if ( version_compare( $version_string, '4.2.0', '<=' ) && version_compare( $version_string, '4.1.0', '>=' ) ) {
49
+		if (version_compare($version_string, '4.2.0', '<=') && version_compare($version_string, '4.1.0', '>=')) {
50 50
 //			echo "$version_string can be migrated fro";
51 51
 			return true;
52
-		}elseif( ! $version_string ){
52
+		}elseif ( ! $version_string) {
53 53
 //			echo "no version string provided: $version_string";
54 54
 			//no version string provided... this must be pre 4.1
55 55
 			//because since 4.1 we're
56
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
57
-		}else{
56
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
57
+		} else {
58 58
 //			echo "$version_string doesnt apply";
59 59
 			return false;
60 60
 		}
@@ -64,14 +64,14 @@  discard block
 block discarded – undo
64 64
 	}
65 65
 	public function schema_changes_before_migration() {
66 66
 		//relies on 4.1's EEH_Activation::create_table
67
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
68
-		$table_name='esp_answer';
69
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
67
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
68
+		$table_name = 'esp_answer';
69
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
70 70
 					REG_ID INT UNSIGNED NOT NULL,
71 71
 					QST_ID INT UNSIGNED NOT NULL,
72 72
 					ANS_value TEXT NOT NULL,
73 73
 					PRIMARY KEY  (ANS_ID)";
74
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
74
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
75 75
 
76 76
 		$table_name = 'esp_attendee_meta';
77 77
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
112 112
 					  CNT_active TINYINT(1) DEFAULT '0',
113 113
 					  PRIMARY KEY  (CNT_ISO)";
114
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
114
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
115 115
 
116 116
 
117 117
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
 
136 136
 
137
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
137
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
138 138
 		$table_name = 'esp_event_meta';
139 139
 		$sql = "
140 140
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -151,41 +151,41 @@  discard block
 block discarded – undo
151 151
 			EVT_external_URL VARCHAR(200) NULL,
152 152
 			EVT_donations TINYINT(1) NULL,
153 153
 			PRIMARY KEY  (EVTM_ID)";
154
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
154
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
155 155
 
156 156
 
157 157
 
158
-		$table_name='esp_event_question_group';
159
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
158
+		$table_name = 'esp_event_question_group';
159
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
160 160
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
161 161
 					QSG_ID INT UNSIGNED NOT NULL,
162 162
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
163 163
 					PRIMARY KEY  (EQG_ID)";
164
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
164
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
165 165
 
166 166
 
167 167
 
168
-		$table_name='esp_event_venue';
169
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
168
+		$table_name = 'esp_event_venue';
169
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
170 170
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
171 171
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
172 172
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
173 173
 				PRIMARY KEY  (EVV_ID)";
174
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
174
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
175 175
 
176 176
 
177 177
 
178
-		$table_name='esp_extra_meta';
179
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
178
+		$table_name = 'esp_extra_meta';
179
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
180 180
 				OBJ_ID INT(11) DEFAULT NULL,
181 181
 				EXM_type VARCHAR(45) DEFAULT NULL,
182 182
 				EXM_key VARCHAR(45) DEFAULT NULL,
183 183
 				EXM_value TEXT,
184 184
 				PRIMARY KEY  (EXM_ID)";
185
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
185
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
186 186
 
187
-		$table_name='esp_line_item';
188
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
187
+		$table_name = 'esp_line_item';
188
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
189 189
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
190 190
 				TXN_ID INT(11) DEFAULT NULL,
191 191
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 				OBJ_ID INT(11) DEFAULT NULL,
202 202
 				OBJ_type VARCHAR(45)DEFAULT NULL,
203 203
 				PRIMARY KEY  (LIN_ID)";
204
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB' );
204
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
205 205
 
206 206
 		$table_name = 'esp_message_template';
207 207
 		$sql = "MTP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 					PRIMARY KEY  (GRP_ID),
229 229
 					KEY EVT_ID (EVT_ID),
230 230
 					KEY MTP_user_id (MTP_user_id)";
231
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
231
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
232 232
 
233 233
 
234 234
 
@@ -336,8 +336,8 @@  discard block
 block discarded – undo
336 336
 
337 337
 
338 338
 
339
-		$table_name='esp_question';
340
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
339
+		$table_name = 'esp_question';
340
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
341 341
 					QST_display_text TEXT NOT NULL,
342 342
 					QST_admin_label VARCHAR(255) NOT NULL,
343 343
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -349,12 +349,12 @@  discard block
 block discarded – undo
349 349
 					QST_wp_user BIGINT UNSIGNED NULL,
350 350
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
351 351
 					PRIMARY KEY  (QST_ID)';
352
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
352
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
353 353
 
354
-		$this->_get_table_manager()->dropIndex( 'esp_question_group', 'QSG_identifier_UNIQUE' );
354
+		$this->_get_table_manager()->dropIndex('esp_question_group', 'QSG_identifier_UNIQUE');
355 355
 
356 356
 		$table_name = 'esp_question_group';
357
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
357
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
358 358
 					QSG_name VARCHAR(255) NOT NULL,
359 359
 					QSG_identifier VARCHAR(100) NOT NULL,
360 360
 					QSG_desc TEXT NULL,
@@ -365,28 +365,28 @@  discard block
 block discarded – undo
365 365
 					QSG_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
366 366
 					PRIMARY KEY  (QSG_ID),
367 367
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
368
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
368
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
369 369
 
370 370
 
371 371
 
372
-		$table_name='esp_question_group_question';
373
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
372
+		$table_name = 'esp_question_group_question';
373
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
374 374
 					QSG_ID INT UNSIGNED NOT NULL,
375 375
 					QST_ID INT UNSIGNED NOT NULL,
376 376
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
377 377
 					PRIMARY KEY  (QGQ_ID) ";
378
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
378
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
379 379
 
380 380
 
381 381
 
382
-		$table_name='esp_question_option';
383
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
382
+		$table_name = 'esp_question_option';
383
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
384 384
 					QSO_value VARCHAR(255) NOT NULL,
385 385
 					QSO_desc TEXT NOT NULL,
386 386
 					QST_ID INT UNSIGNED NOT NULL,
387 387
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
388 388
 					PRIMARY KEY  (QSO_ID)";
389
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
389
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
390 390
 
391 391
 
392 392
 
@@ -419,8 +419,8 @@  discard block
 block discarded – undo
419 419
 
420 420
 
421 421
 
422
-		$table_name='esp_checkin';
423
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
422
+		$table_name = 'esp_checkin';
423
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
424 424
 					REG_ID INT(10) UNSIGNED NOT NULL,
425 425
 					DTT_ID INT(10) UNSIGNED NOT NULL,
426 426
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
495 495
 
496 496
 
497
-		$script_with_defaults = EE_Registry::instance()->load_dms( 'Core_4_1_0' );
497
+		$script_with_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
498 498
 		//setting up the DEFAULT stats and countries is also essential for the data migrations to run
499 499
 		//(because many need to convert old string states to foreign keys into the states table)
500 500
 		$script_with_defaults->insert_default_states();
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 		return true;
517 517
 	}
518 518
 
519
-	public function migration_page_hooks(){
519
+	public function migration_page_hooks() {
520 520
 
521 521
 	}
522 522
 }
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_3_0.dms.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
 		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		} elseif( ! $version_string ){
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71 71
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
72
+		} else{
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
Please login to merge, or discard this patch.
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
 //(all other times it gets resurrected from a wordpress option)
14 14
 $stages = glob(EE_CORE.'data_migration_scripts/4_3_0_stages/*');
15 15
 $class_to_filepath = array();
16
-if ( ! empty( $stages ) ) {
17
-	foreach($stages as $filepath){
16
+if ( ! empty($stages)) {
17
+	foreach ($stages as $filepath) {
18 18
 		$matches = array();
19
-		preg_match('~4_3_0_stages/(.*).dmsstage.php~',$filepath,$matches);
19
+		preg_match('~4_3_0_stages/(.*).dmsstage.php~', $filepath, $matches);
20 20
 		$class_to_filepath[$matches[1]] = $filepath;
21 21
 	}
22 22
 }
23 23
 //give addons a chance to autoload their stages too
24
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_3_0__autoloaded_stages',$class_to_filepath);
24
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_3_0__autoloaded_stages', $class_to_filepath);
25 25
 EEH_Autoloader::register_autoloader($class_to_filepath);
26 26
 
27
-class EE_DMS_Core_4_3_0 extends EE_Data_Migration_Script_Base{
27
+class EE_DMS_Core_4_3_0 extends EE_Data_Migration_Script_Base {
28 28
 
29 29
 
30 30
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 * @param TableManager  $table_manager
35 35
 	 * @param TableAnalysis $table_analysis
36 36
 	 */
37
-	public function __construct( TableManager $table_manager = null, TableAnalysis $table_analysis = null ) {
37
+	public function __construct(TableManager $table_manager = null, TableAnalysis $table_analysis = null) {
38 38
 		$this->_pretty_name = __("Data Migration to Event Espresso 4.3.0.P", "event_espresso");
39 39
 		$this->_priority = 10;
40 40
 		$this->_migration_stages = array(
@@ -42,18 +42,18 @@  discard block
 block discarded – undo
42 42
 			new EE_DMS_4_3_0_event_message_templates(),
43 43
 			new EE_DMS_4_3_0_critical_page_shortcode_tracking()
44 44
 		);
45
-		parent::__construct( $table_manager, $table_analysis );
45
+		parent::__construct($table_manager, $table_analysis);
46 46
 	}
47 47
 	public function can_migrate_from_version($version_array) {
48 48
 		$version_string = $version_array['Core'];
49
-		if ( version_compare( $version_string, '4.3.0', '<=' ) && version_compare( $version_string, '4.2.0', '>=' ) ) {
49
+		if (version_compare($version_string, '4.3.0', '<=') && version_compare($version_string, '4.2.0', '>=')) {
50 50
 //			echo "$version_string can be migrated fro";
51 51
 			return true;
52
-		}elseif( ! $version_string ){
52
+		}elseif ( ! $version_string) {
53 53
 //			echo "no version string provided: $version_string";
54 54
 			//no version string provided... this must be pre 4.2
55
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
56
-		}else{
55
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
56
+		} else {
57 57
 //			echo "$version_string doesnt apply";
58 58
 			return false;
59 59
 		}
@@ -63,14 +63,14 @@  discard block
 block discarded – undo
63 63
 	}
64 64
 	public function schema_changes_before_migration() {
65 65
 		//relies on 4.1's EEH_Activation::create_table
66
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
67
-		$table_name='esp_answer';
68
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
66
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
67
+		$table_name = 'esp_answer';
68
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
69 69
 					REG_ID INT UNSIGNED NOT NULL,
70 70
 					QST_ID INT UNSIGNED NOT NULL,
71 71
 					ANS_value TEXT NOT NULL,
72 72
 					PRIMARY KEY  (ANS_ID)";
73
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
73
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
74 74
 
75 75
 		$table_name = 'esp_attendee_meta';
76 76
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
110 110
 					  CNT_active TINYINT(1) DEFAULT '0',
111 111
 					  PRIMARY KEY  (CNT_ISO)";
112
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
112
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
113 113
 
114 114
 
115 115
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
 
134 134
 
135
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
135
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
136 136
 		$table_name = 'esp_event_meta';
137 137
 		$sql = "
138 138
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -149,41 +149,41 @@  discard block
 block discarded – undo
149 149
 			EVT_external_URL VARCHAR(200) NULL,
150 150
 			EVT_donations TINYINT(1) NULL,
151 151
 			PRIMARY KEY  (EVTM_ID)";
152
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
152
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
153 153
 
154 154
 
155 155
 
156
-		$table_name='esp_event_question_group';
157
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
156
+		$table_name = 'esp_event_question_group';
157
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
158 158
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
159 159
 					QSG_ID INT UNSIGNED NOT NULL,
160 160
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
161 161
 					PRIMARY KEY  (EQG_ID)";
162
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
162
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
163 163
 
164 164
 
165 165
 
166
-		$table_name='esp_event_venue';
167
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
166
+		$table_name = 'esp_event_venue';
167
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
168 168
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
169 169
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
170 170
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
171 171
 				PRIMARY KEY  (EVV_ID)";
172
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
172
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
173 173
 
174 174
 
175 175
 
176
-		$table_name='esp_extra_meta';
177
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
176
+		$table_name = 'esp_extra_meta';
177
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
178 178
 				OBJ_ID INT(11) DEFAULT NULL,
179 179
 				EXM_type VARCHAR(45) DEFAULT NULL,
180 180
 				EXM_key VARCHAR(45) DEFAULT NULL,
181 181
 				EXM_value TEXT,
182 182
 				PRIMARY KEY  (EXM_ID)";
183
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
183
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
184 184
 
185
-		$table_name='esp_line_item';
186
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
185
+		$table_name = 'esp_line_item';
186
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
187 187
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
188 188
 				TXN_ID INT(11) DEFAULT NULL,
189 189
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 				OBJ_ID INT(11) DEFAULT NULL,
200 200
 				OBJ_type VARCHAR(45)DEFAULT NULL,
201 201
 				PRIMARY KEY  (LIN_ID)";
202
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB' );
202
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
203 203
 
204 204
 		$table_name = 'esp_message_template';
205 205
 		$sql = "MTP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 					KEY GRP_ID (GRP_ID)";
212 212
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
213 213
 
214
-		$this->_get_table_manager()->dropIndex( 'esp_message_template_group', 'EVT_ID' );
214
+		$this->_get_table_manager()->dropIndex('esp_message_template_group', 'EVT_ID');
215 215
 
216 216
 		$table_name = 'esp_message_template_group';
217 217
 		$sql = "GRP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 					MTP_is_active TINYINT(1) NOT NULL DEFAULT '1',
227 227
 					PRIMARY KEY  (GRP_ID),
228 228
 					KEY MTP_user_id (MTP_user_id)";
229
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
229
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
230 230
 
231 231
 		$table_name = 'esp_event_message_template';
232 232
 		$sql = "EMT_ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 					PRIMARY KEY  (EMT_ID),
236 236
 					KEY EVT_ID (EVT_ID),
237 237
 					KEY GRP_ID (GRP_ID)";
238
-		$this->_table_is_new_in_this_version( $table_name, $sql, 'ENGINE=InnoDB');
238
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
239 239
 
240 240
 
241 241
 
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
 
345 345
 
346 346
 
347
-		$table_name='esp_question';
348
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
347
+		$table_name = 'esp_question';
348
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
349 349
 					QST_display_text TEXT NOT NULL,
350 350
 					QST_admin_label VARCHAR(255) NOT NULL,
351 351
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -357,12 +357,12 @@  discard block
 block discarded – undo
357 357
 					QST_wp_user BIGINT UNSIGNED NULL,
358 358
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
359 359
 					PRIMARY KEY  (QST_ID)';
360
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
360
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
361 361
 
362
-		$this->_get_table_manager()->dropIndex( 'esp_question_group', 'QSG_identifier_UNIQUE' );
362
+		$this->_get_table_manager()->dropIndex('esp_question_group', 'QSG_identifier_UNIQUE');
363 363
 
364 364
 		$table_name = 'esp_question_group';
365
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
365
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
366 366
 					QSG_name VARCHAR(255) NOT NULL,
367 367
 					QSG_identifier VARCHAR(100) NOT NULL,
368 368
 					QSG_desc TEXT NULL,
@@ -373,29 +373,29 @@  discard block
 block discarded – undo
373 373
 					QSG_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
374 374
 					PRIMARY KEY  (QSG_ID),
375 375
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
376
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
376
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
377 377
 
378 378
 
379 379
 
380
-		$table_name='esp_question_group_question';
381
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
380
+		$table_name = 'esp_question_group_question';
381
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
382 382
 					QSG_ID INT UNSIGNED NOT NULL,
383 383
 					QST_ID INT UNSIGNED NOT NULL,
384 384
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
385 385
 					PRIMARY KEY  (QGQ_ID) ";
386
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
386
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
387 387
 
388 388
 
389 389
 
390
-		$table_name='esp_question_option';
391
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
390
+		$table_name = 'esp_question_option';
391
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
392 392
 					QSO_value VARCHAR(255) NOT NULL,
393 393
 					QSO_desc TEXT NOT NULL,
394 394
 					QST_ID INT UNSIGNED NOT NULL,
395 395
 					QSO_order INT UNSIGNED NOT NULL DEFAULT 0,
396 396
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
397 397
 					PRIMARY KEY  (QSO_ID)";
398
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
398
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
399 399
 
400 400
 
401 401
 
@@ -428,8 +428,8 @@  discard block
 block discarded – undo
428 428
 
429 429
 
430 430
 
431
-		$table_name='esp_checkin';
432
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
431
+		$table_name = 'esp_checkin';
432
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
433 433
 					REG_ID INT(10) UNSIGNED NOT NULL,
434 434
 					DTT_ID INT(10) UNSIGNED NOT NULL,
435 435
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
504 504
 
505 505
 
506
-		$script_with_defaults = EE_Registry::instance()->load_dms( 'Core_4_1_0' );
506
+		$script_with_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
507 507
 		//setting up the DEFAULT stats and countries is also essential for the data migrations to run
508 508
 		//(because many need to convert old string states to foreign keys into the states table)
509 509
 		$script_with_defaults->insert_default_states();
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 		return true;
526 526
 	}
527 527
 
528
-	public function migration_page_hooks(){
528
+	public function migration_page_hooks() {
529 529
 
530 530
 	}
531 531
 
@@ -541,34 +541,34 @@  discard block
 block discarded – undo
541 541
 
542 542
 		global $wpdb;
543 543
 		$ticket_table = $wpdb->prefix."esp_ticket";
544
-		if ( $this->_get_table_analysis()->tableExists( $ticket_table ) ) {
544
+		if ($this->_get_table_analysis()->tableExists($ticket_table)) {
545 545
 
546
-			$SQL = 'SELECT COUNT(TKT_ID) FROM ' . $ticket_table;
546
+			$SQL = 'SELECT COUNT(TKT_ID) FROM '.$ticket_table;
547 547
 			$tickets_exist = $wpdb->get_var($SQL);
548 548
 
549
-			if ( ! $tickets_exist ) {
549
+			if ( ! $tickets_exist) {
550 550
 				$SQL = "INSERT INTO $ticket_table
551 551
 					( TKT_ID, TTM_ID, TKT_name, TKT_description, TKT_qty, TKT_sold, TKT_uses, TKT_required, TKT_min, TKT_max, TKT_price, TKT_start_date, TKT_end_date, TKT_taxable, TKT_order, TKT_row, TKT_is_default, TKT_parent, TKT_deleted ) VALUES
552
-					( 1, 0, '" . __("Free Ticket", "event_espresso") . "', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
553
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL );
552
+					( 1, 0, '".__("Free Ticket", "event_espresso")."', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
553
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL);
554 554
 				$wpdb->query($SQL);
555 555
 			}
556 556
 		}
557 557
 		$ticket_price_table = $wpdb->prefix."esp_ticket_price";
558 558
 
559
-		if ( $this->_get_table_analysis()->tableExists( $ticket_price_table ) ) {
559
+		if ($this->_get_table_analysis()->tableExists($ticket_price_table)) {
560 560
 
561
-			$SQL = 'SELECT COUNT(TKP_ID) FROM ' . $ticket_price_table;
561
+			$SQL = 'SELECT COUNT(TKP_ID) FROM '.$ticket_price_table;
562 562
 			$ticket_prc_exist = $wpdb->get_var($SQL);
563 563
 
564
-			if ( ! $ticket_prc_exist ) {
564
+			if ( ! $ticket_prc_exist) {
565 565
 
566 566
 				$SQL = "INSERT INTO $ticket_price_table
567 567
 				( TKP_ID, TKT_ID, PRC_ID ) VALUES
568 568
 				( 1, 1, 1 )
569 569
 				";
570 570
 
571
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL );
571
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL);
572 572
 				$wpdb->query($SQL);
573 573
 			}
574 574
 		}
Please login to merge, or discard this patch.