Completed
Branch BUG-9804-double-click-spco-sub... (c2cac1)
by
unknown
51:40 queued 26:35
created
core/EE_Base.core.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	 *		@ return void
29 29
 	 */	
30 30
 	public function __get($a) { return FALSE; }
31
-	public function __set($a,$b) { return FALSE; }
31
+	public function __set($a, $b) { return FALSE; }
32 32
 	public function __isset($a) { return FALSE; }
33 33
 	public function __unset($a) { return FALSE; }
34 34
 	public function __clone() { 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_Base_Class_Repository.core.php 1 patch
Spacing   +12 added lines, -12 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
  * Class EE_Base_Class_Repository
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 	 * @param array $arguments	arrays of arguments that will be passed to the object's save method
40 40
 	 * @return bool | int
41 41
 	 */
42
-	public function save( $arguments = array() ) {
43
-		return $this->persist( 'save', $arguments );
42
+	public function save($arguments = array()) {
43
+		return $this->persist('save', $arguments);
44 44
 	}
45 45
 
46 46
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @return bool | int
55 55
 	 */
56 56
 	public function save_all() {
57
-		return $this->persist_all( 'save' );
57
+		return $this->persist_all('save');
58 58
 	}
59 59
 
60 60
 
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * @return bool
69 69
 	 */
70 70
 	public function delete() {
71
-		$success = $this->_call_user_func_array_on_current( 'delete' );
72
-		$this->remove( $this->current() );
71
+		$success = $this->_call_user_func_array_on_current('delete');
72
+		$this->remove($this->current());
73 73
 		return $success;
74 74
 	}
75 75
 
@@ -86,16 +86,16 @@  discard block
 block discarded – undo
86 86
 	public function delete_all() {
87 87
 		$success = true;
88 88
 		$this->rewind();
89
-		while ( $this->valid() ) {
89
+		while ($this->valid()) {
90 90
 			// any db error will result in false being returned
91
-			$success = $this->_call_user_func_array_on_current( 'delete' ) !== false ? $success : false;
91
+			$success = $this->_call_user_func_array_on_current('delete') !== false ? $success : false;
92 92
 			// can't remove current object because valid() requires it
93 93
 			// so just capture current object temporarily
94 94
 			$object = $this->current();
95 95
 			// advance the pointer
96 96
 			$this->next();
97 97
 			// THEN remove the object from the repository
98
-			$this->remove( $object );
98
+			$this->remove($object);
99 99
 		}
100 100
 		return $success;
101 101
 	}
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
 	 * @param string $previous_value
114 114
 	 * @return bool | int
115 115
 	 */
116
-	public function update_extra_meta( $meta_key, $meta_value, $previous_value = null ) {
117
-		return $this->_call_user_func_array_on_current( 'update_extra_meta', array( $meta_key, $meta_value, $previous_value ) );
116
+	public function update_extra_meta($meta_key, $meta_value, $previous_value = null) {
117
+		return $this->_call_user_func_array_on_current('update_extra_meta', array($meta_key, $meta_value, $previous_value));
118 118
 	}
119 119
 
120 120
 
Please login to merge, or discard this patch.
core/EE_Capabilities.core.php 2 patches
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,6 @@  discard block
 block discarded – undo
111 111
 
112 112
 	/**
113 113
 	 * This sets the meta caps property.
114
-
115 114
 	 * @since 4.5.0
116 115
 	 *
117 116
 	 * @return void
@@ -209,7 +208,7 @@  discard block
 block discarded – undo
209 208
 			 * capability mapping which will be used for accessing payment methods owned by
210 209
 			 * other users.  This is not fully implemented yet in the payment method ui.
211 210
 			 * Currently only the "plural" caps are in active use. (Specific payment method caps are in use as well).
212
-			**/
211
+			 **/
213 212
 				'ee_manage_gateways',
214 213
 				'ee_read_payment_method',
215 214
 				'ee_read_payment_methods',
Please login to merge, or discard this patch.
Spacing   +127 added lines, -127 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
  * @package Event Espresso
8 8
  * @subpackage core, capabilities
9 9
  */
10
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
11
-	exit( 'No direct script access allowed' );
10
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
11
+	exit('No direct script access allowed');
12 12
 }
13 13
 
14 14
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 */
70 70
 	public static function instance() {
71 71
 		//check if instantiated, and if not do so.
72
-		if ( ! self::$_instance instanceof EE_Capabilities ) {
72
+		if ( ! self::$_instance instanceof EE_Capabilities) {
73 73
 			self::$_instance = new self();
74 74
 		}
75 75
 		return self::$_instance;
@@ -98,10 +98,10 @@  discard block
 block discarded – undo
98 98
 	 * @since 4.5.0
99 99
 	 * @return void
100 100
 	 */
101
-	public function init_caps( $reset = false ) {
102
-		if ( EE_Maintenance_Mode::instance()->models_can_query() ){
101
+	public function init_caps($reset = false) {
102
+		if (EE_Maintenance_Mode::instance()->models_can_query()) {
103 103
 			$this->_caps_map = $this->_init_caps_map();
104
-			$this->init_role_caps( $reset );
104
+			$this->init_role_caps($reset);
105 105
 			$this->_set_meta_caps();
106 106
 		}
107 107
 	}
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
 		//make sure we're only ever initializing the default _meta_caps array once if it's empty.
121 121
 		$this->_meta_caps = $this->_get_default_meta_caps_array();
122 122
 
123
-		$this->_meta_caps = apply_filters( 'FHEE__EE_Capabilities___set_meta_caps__meta_caps', $this->_meta_caps );
123
+		$this->_meta_caps = apply_filters('FHEE__EE_Capabilities___set_meta_caps__meta_caps', $this->_meta_caps);
124 124
 
125 125
 		//add filter for map_meta_caps but only if models can query.
126
-		if ( EE_Maintenance_Mode::instance()->models_can_query() && ! has_filter( 'map_meta_cap', array( $this, 'map_meta_caps' ) ) ) {
127
-			add_filter( 'map_meta_cap', array( $this, 'map_meta_caps' ), 10, 4 );
126
+		if (EE_Maintenance_Mode::instance()->models_can_query() && ! has_filter('map_meta_cap', array($this, 'map_meta_caps'))) {
127
+			add_filter('map_meta_cap', array($this, 'map_meta_caps'), 10, 4);
128 128
 		}
129 129
 	}
130 130
 
@@ -137,37 +137,37 @@  discard block
 block discarded – undo
137 137
 	 */
138 138
 	private function _get_default_meta_caps_array() {
139 139
 		static $default_meta_caps = array();
140
-		if ( empty( $default_meta_caps ) ) {
140
+		if (empty($default_meta_caps)) {
141 141
 			$default_meta_caps = array(
142 142
 				//edits
143
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_event', array( 'Event', 'ee_edit_published_events', 'ee_edit_others_events', 'ee_edit_private_events' ) ),
144
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_venue', array( 'Venue', 'ee_edit_published_venues', 'ee_edit_others_venues', 'ee_edit_private_venues' ) ),
145
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_registration', array( 'Registration', '', 'ee_edit_others_registrations', '' ) ),
146
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_checkin', array( 'Registration', '', 'ee_edit_others_checkins', '' ) ),
147
-				new EE_Meta_Capability_Map_Messages_Cap( 'ee_edit_message', array( 'Message_Template_Group', '', 'ee_edit_others_messages', 'ee_edit_global_messages' ) ),
148
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_default_ticket', array( 'Ticket', '', 'ee_edit_others_default_tickets', '' ) ),
149
-				new EE_Meta_Capability_Map_Registration_Form_Cap( 'ee_edit_question', array( 'Question', '', '', 'ee_edit_system_questions' ) ),
150
-				new EE_Meta_Capability_Map_Registration_Form_Cap( 'ee_edit_question_group', array( 'Question_Group', '', '', 'ee_edit_system_question_groups' ) ),
151
-				new EE_Meta_Capability_Map_Edit( 'ee_edit_payment_method', array( 'Payment_Method', '', 'ee_edit_others_payment_methods', '' ) ),
143
+				new EE_Meta_Capability_Map_Edit('ee_edit_event', array('Event', 'ee_edit_published_events', 'ee_edit_others_events', 'ee_edit_private_events')),
144
+				new EE_Meta_Capability_Map_Edit('ee_edit_venue', array('Venue', 'ee_edit_published_venues', 'ee_edit_others_venues', 'ee_edit_private_venues')),
145
+				new EE_Meta_Capability_Map_Edit('ee_edit_registration', array('Registration', '', 'ee_edit_others_registrations', '')),
146
+				new EE_Meta_Capability_Map_Edit('ee_edit_checkin', array('Registration', '', 'ee_edit_others_checkins', '')),
147
+				new EE_Meta_Capability_Map_Messages_Cap('ee_edit_message', array('Message_Template_Group', '', 'ee_edit_others_messages', 'ee_edit_global_messages')),
148
+				new EE_Meta_Capability_Map_Edit('ee_edit_default_ticket', array('Ticket', '', 'ee_edit_others_default_tickets', '')),
149
+				new EE_Meta_Capability_Map_Registration_Form_Cap('ee_edit_question', array('Question', '', '', 'ee_edit_system_questions')),
150
+				new EE_Meta_Capability_Map_Registration_Form_Cap('ee_edit_question_group', array('Question_Group', '', '', 'ee_edit_system_question_groups')),
151
+				new EE_Meta_Capability_Map_Edit('ee_edit_payment_method', array('Payment_Method', '', 'ee_edit_others_payment_methods', '')),
152 152
 				//reads
153
-				new EE_Meta_Capability_Map_Read( 'ee_read_event', array( 'Event', '', 'ee_read_others_events', 'ee_read_private_events' ) ),
154
-				new EE_Meta_Capability_Map_Read( 'ee_read_venue', array( 'Venue', '', 'ee_read_others_venues', 'ee_read_private_venues' ) ),
155
-				new EE_Meta_Capability_Map_Read( 'ee_read_registration', array( 'Registration', '', '', 'ee_edit_others_registrations' ) ),
156
-				new EE_Meta_Capability_Map_Read( 'ee_read_checkin', array( 'Registration', '', '', 'ee_read_others_checkins' ) ),
157
-				new EE_Meta_Capability_Map_Messages_Cap( 'ee_read_message', array( 'Message_Template_Group', '', 'ee_read_others_messages', 'ee_read_global_messages' ) ),
158
-				new EE_Meta_Capability_Map_Read( 'ee_read_default_ticket', array( 'Ticket', '', '', 'ee_read_others_default_tickets' ) ),
159
-				new EE_Meta_Capability_Map_Read( 'ee_read_payment_method', array( 'Payment_Method', '', '', 'ee_read_others_payment_methods' ) ),
153
+				new EE_Meta_Capability_Map_Read('ee_read_event', array('Event', '', 'ee_read_others_events', 'ee_read_private_events')),
154
+				new EE_Meta_Capability_Map_Read('ee_read_venue', array('Venue', '', 'ee_read_others_venues', 'ee_read_private_venues')),
155
+				new EE_Meta_Capability_Map_Read('ee_read_registration', array('Registration', '', '', 'ee_edit_others_registrations')),
156
+				new EE_Meta_Capability_Map_Read('ee_read_checkin', array('Registration', '', '', 'ee_read_others_checkins')),
157
+				new EE_Meta_Capability_Map_Messages_Cap('ee_read_message', array('Message_Template_Group', '', 'ee_read_others_messages', 'ee_read_global_messages')),
158
+				new EE_Meta_Capability_Map_Read('ee_read_default_ticket', array('Ticket', '', '', 'ee_read_others_default_tickets')),
159
+				new EE_Meta_Capability_Map_Read('ee_read_payment_method', array('Payment_Method', '', '', 'ee_read_others_payment_methods')),
160 160
 
161 161
 				//deletes
162
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_event', array( 'Event', 'ee_delete_published_events', 'ee_delete_others_events', 'ee_delete_private_events' ) ),
163
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_venue', array( 'Venue', 'ee_delete_published_venues', 'ee_delete_others_venues', 'ee_delete_private_venues' ) ),
164
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_registration', array( 'Registration', '', 'ee_delete_others_registrations', '' ) ),
165
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_checkin', array( 'Registration', '', 'ee_delete_others_checkins', '' ) ),
166
-				new EE_Meta_Capability_Map_Messages_Cap( 'ee_delete_message', array( 'Message_Template_Group', '', 'ee_delete_others_messages', 'ee_delete_global_messages' ) ),
167
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_default_ticket', array( 'Ticket', '', 'ee_delete_others_default_tickets', '' ) ),
168
-				new EE_Meta_Capability_Map_Registration_Form_Cap( 'ee_delete_question', array( 'Question', '', '', 'delete_system_questions' ) ),
169
-				new EE_Meta_Capability_Map_Registration_Form_Cap( 'ee_delete_question_group', array( 'Question_Group', '', '', 'delete_system_question_groups' ) ),
170
-				new EE_Meta_Capability_Map_Delete( 'ee_delete_payment_method', array( 'Payment_Method', '', 'ee_delete_others_payment_methods', '' ) ),
162
+				new EE_Meta_Capability_Map_Delete('ee_delete_event', array('Event', 'ee_delete_published_events', 'ee_delete_others_events', 'ee_delete_private_events')),
163
+				new EE_Meta_Capability_Map_Delete('ee_delete_venue', array('Venue', 'ee_delete_published_venues', 'ee_delete_others_venues', 'ee_delete_private_venues')),
164
+				new EE_Meta_Capability_Map_Delete('ee_delete_registration', array('Registration', '', 'ee_delete_others_registrations', '')),
165
+				new EE_Meta_Capability_Map_Delete('ee_delete_checkin', array('Registration', '', 'ee_delete_others_checkins', '')),
166
+				new EE_Meta_Capability_Map_Messages_Cap('ee_delete_message', array('Message_Template_Group', '', 'ee_delete_others_messages', 'ee_delete_global_messages')),
167
+				new EE_Meta_Capability_Map_Delete('ee_delete_default_ticket', array('Ticket', '', 'ee_delete_others_default_tickets', '')),
168
+				new EE_Meta_Capability_Map_Registration_Form_Cap('ee_delete_question', array('Question', '', '', 'delete_system_questions')),
169
+				new EE_Meta_Capability_Map_Registration_Form_Cap('ee_delete_question_group', array('Question_Group', '', '', 'delete_system_question_groups')),
170
+				new EE_Meta_Capability_Map_Delete('ee_delete_payment_method', array('Payment_Method', '', 'ee_delete_others_payment_methods', '')),
171 171
 			);
172 172
 		}
173 173
 		return $default_meta_caps;
@@ -191,15 +191,15 @@  discard block
 block discarded – undo
191 191
 	 *
192 192
 	 * @return array   actual users capabilities
193 193
 	 */
194
-	public function map_meta_caps( $caps, $cap, $user_id, $args ) {
194
+	public function map_meta_caps($caps, $cap, $user_id, $args) {
195 195
 		//loop through our _meta_caps array
196
-		foreach ( $this->_meta_caps as $meta_map ) {
197
-			if ( ! $meta_map instanceof EE_Meta_Capability_Map ) {
196
+		foreach ($this->_meta_caps as $meta_map) {
197
+			if ( ! $meta_map instanceof EE_Meta_Capability_Map) {
198 198
 				continue;
199 199
 			}
200 200
 			$meta_map->ensure_is_model();
201 201
 
202
-			$caps = $meta_map->map_meta_caps( $caps, $cap, $user_id, $args );
202
+			$caps = $meta_map->map_meta_caps($caps, $cap, $user_id, $args);
203 203
 		}
204 204
 		return $caps;
205 205
 	}
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
 				)
365 365
 			);
366 366
 
367
-		$caps = apply_filters( 'FHEE__EE_Capabilities__init_caps_map__caps', $caps );
367
+		$caps = apply_filters('FHEE__EE_Capabilities__init_caps_map__caps', $caps);
368 368
 		return $caps;
369 369
 	}
370 370
 
@@ -381,26 +381,26 @@  discard block
 block discarded – undo
381 381
 	 *
382 382
 	 * @return void
383 383
 	 */
384
-	public function init_role_caps( $reset = false, $custom_map = array() ) {
384
+	public function init_role_caps($reset = false, $custom_map = array()) {
385 385
 
386
-		$caps_map = empty( $custom_map ) ? $this->_caps_map : $custom_map;
386
+		$caps_map = empty($custom_map) ? $this->_caps_map : $custom_map;
387 387
 
388 388
 		//first let's determine if these caps have already been set.
389
-		$caps_set_before = get_option( self::option_name, array() );
389
+		$caps_set_before = get_option(self::option_name, array());
390 390
 		//if not reset, see what caps are new for each role. if they're new, add them.
391
-		foreach ( $caps_map as $role => $caps_for_role ) {
392
-			foreach ( $caps_for_role as $cap ) {
391
+		foreach ($caps_map as $role => $caps_for_role) {
392
+			foreach ($caps_for_role as $cap) {
393 393
 				//first check we haven't already added this cap before, or it's a reset
394
-				if ( $reset || ! isset( $caps_set_before[ $role ] ) || ! in_array( $cap, $caps_set_before[ $role ] ) ) {
395
-					$this->add_cap_to_role( $role, $cap );
396
-					$caps_set_before[ $role ][] = $cap;
394
+				if ($reset || ! isset($caps_set_before[$role]) || ! in_array($cap, $caps_set_before[$role])) {
395
+					$this->add_cap_to_role($role, $cap);
396
+					$caps_set_before[$role][] = $cap;
397 397
 				}
398 398
 			}
399 399
 		}
400 400
 
401 401
 		//now let's just save the cap that has been set.
402
-		update_option( self::option_name, $caps_set_before );
403
-		do_action( 'AHEE__EE_Capabilities__init_role_caps__complete', $caps_set_before );
402
+		update_option(self::option_name, $caps_set_before);
403
+		do_action('AHEE__EE_Capabilities__init_role_caps__complete', $caps_set_before);
404 404
 	}
405 405
 
406 406
 
@@ -419,10 +419,10 @@  discard block
 block discarded – undo
419 419
 	 * @param bool $grant  Whether to grant access to this cap on this role.
420 420
 	 * @return void
421 421
 	 */
422
-	public function add_cap_to_role( $role, $cap, $grant = true ) {
423
-		$role = get_role( $role );
424
-		if ( $role instanceof WP_Role ) {
425
-			$role->add_cap( $cap, $grant );
422
+	public function add_cap_to_role($role, $cap, $grant = true) {
423
+		$role = get_role($role);
424
+		if ($role instanceof WP_Role) {
425
+			$role->add_cap($cap, $grant);
426 426
 		}
427 427
 	}
428 428
 
@@ -442,10 +442,10 @@  discard block
 block discarded – undo
442 442
 	 *
443 443
 	 * @return void
444 444
 	 */
445
-	public function remove_cap_from_role( $role, $cap ) {
446
-		$role = get_role( $role );
447
-		if ( $role instanceof WP_Role ) {
448
-			$role->remove_cap( $cap );
445
+	public function remove_cap_from_role($role, $cap) {
446
+		$role = get_role($role);
447
+		if ($role instanceof WP_Role) {
448
+			$role->remove_cap($cap);
449 449
 		}
450 450
 	}
451 451
 
@@ -466,11 +466,11 @@  discard block
 block discarded – undo
466 466
 	 *
467 467
 	 * @return bool  Whether user can or not.
468 468
 	 */
469
-	public function current_user_can( $cap, $context, $id = 0 ) {
469
+	public function current_user_can($cap, $context, $id = 0) {
470 470
 		//apply filters (both a global on just the cap, and context specific.  Global overrides context specific)
471
-		$filtered_cap = apply_filters( 'FHEE__EE_Capabilities__current_user_can__cap__' . $context,  $cap, $id );
472
-		$filtered_cap = apply_filters( 'FHEE__EE_Capabilities__current_user_can__cap', $filtered_cap, $context, $cap, $id );
473
-		return ! empty( $id ) ? current_user_can( $filtered_cap, $id ) : current_user_can( $filtered_cap );
471
+		$filtered_cap = apply_filters('FHEE__EE_Capabilities__current_user_can__cap__'.$context, $cap, $id);
472
+		$filtered_cap = apply_filters('FHEE__EE_Capabilities__current_user_can__cap', $filtered_cap, $context, $cap, $id);
473
+		return ! empty($id) ? current_user_can($filtered_cap, $id) : current_user_can($filtered_cap);
474 474
 	}
475 475
 
476 476
 
@@ -487,11 +487,11 @@  discard block
 block discarded – undo
487 487
 	 *
488 488
 	 * @return bool Whether user can or not.
489 489
 	 */
490
-	public function user_can( $user, $cap, $context, $id = 0 ) {
490
+	public function user_can($user, $cap, $context, $id = 0) {
491 491
 		//apply filters (both a global on just the cap, and context specific.  Global overrides context specific)
492
-		$filtered_cap = apply_filters( 'FHEE__EE_Capabilities__user_can__cap__' . $context, $cap, $user, $id );
493
-		$filtered_cap = apply_filters( 'FHEE__EE_Capabilities__user_can__cap', $filtered_cap, $context, $cap, $user,  $id );
494
-		return ! empty( $id ) ? user_can( $user, $filtered_cap, $id ) : user_can( $user, $filtered_cap );
492
+		$filtered_cap = apply_filters('FHEE__EE_Capabilities__user_can__cap__'.$context, $cap, $user, $id);
493
+		$filtered_cap = apply_filters('FHEE__EE_Capabilities__user_can__cap', $filtered_cap, $context, $cap, $user, $id);
494
+		return ! empty($id) ? user_can($user, $filtered_cap, $id) : user_can($user, $filtered_cap);
495 495
 	}
496 496
 
497 497
 
@@ -511,12 +511,12 @@  discard block
 block discarded – undo
511 511
 	 *
512 512
 	 * @return bool  Whether user can or not.
513 513
 	 */
514
-	public function current_user_can_for_blog( $blog_id, $cap, $context, $id = 0 ) {
515
-		$user_can = ! empty( $id ) ? current_user_can_for_blog( $blog_id, $cap, $id ) : current_user_can( $blog_id, $cap );
514
+	public function current_user_can_for_blog($blog_id, $cap, $context, $id = 0) {
515
+		$user_can = ! empty($id) ? current_user_can_for_blog($blog_id, $cap, $id) : current_user_can($blog_id, $cap);
516 516
 
517 517
 		//apply filters (both a global on just the cap, and context specific.  Global overrides context specific)
518
-		$user_can = apply_filters( 'FHEE__EE_Capabilities__current_user_can_for_blog__user_can__' . $context, $user_can, $blog_id, $cap, $id );
519
-		$user_can = apply_filters( 'FHEE__EE_Capabilities__current_user_can_for_blog__user_can', $user_can, $context, $blog_id, $cap, $id );
518
+		$user_can = apply_filters('FHEE__EE_Capabilities__current_user_can_for_blog__user_can__'.$context, $user_can, $blog_id, $cap, $id);
519
+		$user_can = apply_filters('FHEE__EE_Capabilities__current_user_can_for_blog__user_can', $user_can, $context, $blog_id, $cap, $id);
520 520
 		return $user_can;
521 521
 	}
522 522
 
@@ -532,12 +532,12 @@  discard block
 block discarded – undo
532 532
 	 *
533 533
 	 * @return array
534 534
 	 */
535
-	public function get_ee_capabilities( $role = 'administrator' ) {
535
+	public function get_ee_capabilities($role = 'administrator') {
536 536
 		$capabilities = $this->_init_caps_map();
537
-		if ( empty( $role ) ) {
537
+		if (empty($role)) {
538 538
 			return $capabilities;
539 539
 		}
540
-		return isset( $capabilities[ $role ] ) ? $capabilities[ $role ] : array();
540
+		return isset($capabilities[$role]) ? $capabilities[$role] : array();
541 541
 	}
542 542
 }
543 543
 
@@ -585,11 +585,11 @@  discard block
 block discarded – undo
585 585
 	 * 	}
586 586
 	 * @throws EE_Error
587 587
 	 */
588
-	public function __construct( $meta_cap, $map_values ) {
588
+	public function __construct($meta_cap, $map_values) {
589 589
 		$this->meta_cap = $meta_cap;
590 590
 		//verify there are four args in the $map_values array;
591
-		if ( count( $map_values ) !== 4 ) {
592
-			throw new EE_Error( sprintf( __( 'Incoming $map_values array should have a count of four values in it.  This is what was given: %s', 'event_espresso' ), '<br>' . print_r( $map_values, true ) ) );
591
+		if (count($map_values) !== 4) {
592
+			throw new EE_Error(sprintf(__('Incoming $map_values array should have a count of four values in it.  This is what was given: %s', 'event_espresso'), '<br>'.print_r($map_values, true)));
593 593
 		}
594 594
 
595 595
 		//set properties
@@ -603,8 +603,8 @@  discard block
 block discarded – undo
603 603
 	/**
604 604
 	 * Makes it so this object stops filtering caps
605 605
 	 */
606
-	public function remove_filters(){
607
-		remove_filter( 'map_meta_cap', array( $this, 'map_meta_caps' ), 10 );
606
+	public function remove_filters() {
607
+		remove_filter('map_meta_cap', array($this, 'map_meta_caps'), 10);
608 608
 	}
609 609
 
610 610
 
@@ -619,19 +619,19 @@  discard block
 block discarded – undo
619 619
 	 */
620 620
 	public function ensure_is_model() {
621 621
 		//is it already instantiated?
622
-		if ( $this->_model instanceof EEM_Base ) {
622
+		if ($this->_model instanceof EEM_Base) {
623 623
 			return;
624 624
 		}
625 625
 
626 626
 		//ensure model name is string
627 627
 		$this->_model_name = (string) $this->_model_name;
628 628
 		//error proof if the name has EEM in it
629
-		$this->_model_name = str_replace( 'EEM', '', $this->_model_name );
629
+		$this->_model_name = str_replace('EEM', '', $this->_model_name);
630 630
 
631
-		$this->_model = EE_Registry::instance()->load_model( $this->_model_name );
631
+		$this->_model = EE_Registry::instance()->load_model($this->_model_name);
632 632
 
633
-		if ( ! $this->_model instanceof EEM_Base ) {
634
-			throw new EE_Error( sprintf( __( 'This string passed in to %s to represent a EEM_Base model class was not able to be used to instantiate the class.   Please ensure that the string is a match for the EEM_Base model name (not including the EEM_ part). This was given: %s', 'event_espresso' ), get_class( $this ), $this->_model ) );
633
+		if ( ! $this->_model instanceof EEM_Base) {
634
+			throw new EE_Error(sprintf(__('This string passed in to %s to represent a EEM_Base model class was not able to be used to instantiate the class.   Please ensure that the string is a match for the EEM_Base model name (not including the EEM_ part). This was given: %s', 'event_espresso'), get_class($this), $this->_model));
635 635
 		}
636 636
 	}
637 637
 
@@ -647,8 +647,8 @@  discard block
 block discarded – undo
647 647
 	 *
648 648
 	 * @return array
649 649
 	 */
650
-	public function map_meta_caps( $caps, $cap, $user_id, $args ) {
651
-		return $this->_map_meta_caps( $caps, $cap, $user_id, $args );
650
+	public function map_meta_caps($caps, $cap, $user_id, $args) {
651
+		return $this->_map_meta_caps($caps, $cap, $user_id, $args);
652 652
 	}
653 653
 
654 654
 
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
 	 *
667 667
 	 * @return array   actual users capabilities
668 668
 	 */
669
-	abstract protected function _map_meta_caps( $caps, $cap, $user_id, $args );
669
+	abstract protected function _map_meta_caps($caps, $cap, $user_id, $args);
670 670
 }
671 671
 
672 672
 
@@ -698,28 +698,28 @@  discard block
 block discarded – undo
698 698
 	 *
699 699
 	 * @return array   actual users capabilities
700 700
 	 */
701
-	protected function _map_meta_caps( $caps, $cap, $user_id, $args ) {
701
+	protected function _map_meta_caps($caps, $cap, $user_id, $args) {
702 702
 		//only process if we're checking our mapped_cap
703
-		if ( $cap !== $this->meta_cap ) {
703
+		if ($cap !== $this->meta_cap) {
704 704
 			return $caps;
705 705
 		}
706 706
 
707
-		$obj = ! empty( $args[0] ) ? $this->_model->get_one_by_ID( $args[0] ) : null;
707
+		$obj = ! empty($args[0]) ? $this->_model->get_one_by_ID($args[0]) : null;
708 708
 
709 709
 		//if no obj then let's just do cap
710
-		if ( ! $obj instanceof EE_Base_Class ) {
710
+		if ( ! $obj instanceof EE_Base_Class) {
711 711
 			$caps[] = $cap;
712 712
 			return $caps;
713 713
 		}
714 714
 
715
-		if ( $obj instanceof EE_CPT_Base ) {
715
+		if ($obj instanceof EE_CPT_Base) {
716 716
 			//if the item author is set and the user is the author...
717
-			if ( $obj->wp_user() && $user_id == $obj->wp_user() ) {
718
-				if ( empty( $this->published_cap ) ) {
717
+			if ($obj->wp_user() && $user_id == $obj->wp_user()) {
718
+				if (empty($this->published_cap)) {
719 719
 					$caps[] = $cap;
720 720
 				} else {
721 721
 					//if obj is published...
722
-					if ( $obj->status() == 'publish' ) {
722
+					if ($obj->status() == 'publish') {
723 723
 						$caps[] = $this->published_cap;
724 724
 					} else {
725 725
 						$caps[] = $cap;
@@ -727,21 +727,21 @@  discard block
 block discarded – undo
727 727
 				}
728 728
 			} else {
729 729
 				//the user is trying to edit someone else's obj
730
-				if ( ! empty( $this->others_cap ) ) {
730
+				if ( ! empty($this->others_cap)) {
731 731
 					$caps[] = $this->others_cap;
732 732
 				}
733
-				if ( ! empty( $this->published_cap ) && $obj->status() == 'publish' ) {
733
+				if ( ! empty($this->published_cap) && $obj->status() == 'publish') {
734 734
 					$caps[] = $this->published_cap;
735
-				} elseif ( ! empty( $this->private_cap ) && $obj->status() == 'private' ) {
735
+				} elseif ( ! empty($this->private_cap) && $obj->status() == 'private') {
736 736
 					$caps[] = $this->private_cap;
737 737
 				}
738 738
 			}
739 739
 		} else {
740 740
 			//not a cpt object so handled differently
741
-			if ( method_exists( $obj, 'wp_user' ) && $obj->wp_user() && $user_id == $obj->wp_user() ) {
741
+			if (method_exists($obj, 'wp_user') && $obj->wp_user() && $user_id == $obj->wp_user()) {
742 742
 				$caps[] = $cap;
743 743
 			} else {
744
-				if ( ! empty( $this->others_cap ) ) {
744
+				if ( ! empty($this->others_cap)) {
745 745
 					$caps[] = $this->others_cap;
746 746
 				}
747 747
 			}
@@ -778,8 +778,8 @@  discard block
 block discarded – undo
778 778
 	 *
779 779
 	 * @return array   actual users capabilities
780 780
 	 */
781
-	protected function _map_meta_caps( $caps, $cap, $user_id, $args ) {
782
-		return parent::_map_meta_caps( $caps, $cap, $user_id, $args );
781
+	protected function _map_meta_caps($caps, $cap, $user_id, $args) {
782
+		return parent::_map_meta_caps($caps, $cap, $user_id, $args);
783 783
 	}
784 784
 }
785 785
 
@@ -811,45 +811,45 @@  discard block
 block discarded – undo
811 811
 	 *
812 812
 	 * @return array   actual users capabilities
813 813
 	 */
814
-	protected function _map_meta_caps( $caps, $cap, $user_id, $args ) {
814
+	protected function _map_meta_caps($caps, $cap, $user_id, $args) {
815 815
 		//only process if we're checking our mapped cap;
816
-		if ( $cap !== $this->meta_cap ) {
816
+		if ($cap !== $this->meta_cap) {
817 817
 			return $caps;
818 818
 		}
819 819
 
820
-		$obj = ! empty( $args[0] ) ? $this->_model->get_one_by_ID( $args[0] ) : null;
820
+		$obj = ! empty($args[0]) ? $this->_model->get_one_by_ID($args[0]) : null;
821 821
 
822 822
 		//if no obj then let's just do cap
823
-		if ( ! $obj instanceof EE_Base_Class ) {
823
+		if ( ! $obj instanceof EE_Base_Class) {
824 824
 			$caps[] = $cap;
825 825
 			return $caps;
826 826
 		}
827 827
 
828
-		if ( $obj instanceof EE_CPT_Base ) {
829
-			$status_obj = get_post_status_object( $obj->status() );
830
-			if ( $status_obj->public ) {
828
+		if ($obj instanceof EE_CPT_Base) {
829
+			$status_obj = get_post_status_object($obj->status());
830
+			if ($status_obj->public) {
831 831
 				$caps[] = $cap;
832 832
 				return $caps;
833 833
 			}
834 834
 
835 835
 			//if the item author is set and the user is the author...
836
-			if ( $obj->wp_user() && $user_id == $obj->wp_user() ) {
836
+			if ($obj->wp_user() && $user_id == $obj->wp_user()) {
837 837
 				$caps[] = $cap;
838
-			} elseif ( $status_obj->private && ! empty( $this->private_cap ) ) {
838
+			} elseif ($status_obj->private && ! empty($this->private_cap)) {
839 839
 				//the user is trying to view someone else's obj
840 840
 				$caps[] = $this->private_cap;
841
-			} elseif ( ! empty( $this->others_cap ) ) {
841
+			} elseif ( ! empty($this->others_cap)) {
842 842
 				$caps[] = $this->others_cap;
843 843
 			} else {
844 844
 				$caps[] = $cap;
845 845
 			}
846 846
 		} else {
847 847
 			//not a cpt object so handled differently
848
-			if ( method_exists( $obj, 'wp_user' ) && $obj->wp_user() && $user_id == $obj->wp_user() ) {
848
+			if (method_exists($obj, 'wp_user') && $obj->wp_user() && $user_id == $obj->wp_user()) {
849 849
 				$caps[] = $cap;
850
-			} elseif ( ! empty( $this->private_cap ) ) {
850
+			} elseif ( ! empty($this->private_cap)) {
851 851
 				$caps[] = $this->private_cap;
852
-			} elseif ( ! empty( $this->others_cap ) ) {
852
+			} elseif ( ! empty($this->others_cap)) {
853 853
 				$caps[] = $this->others_cap;
854 854
 			} else {
855 855
 				$caps[] = $cap;
@@ -886,30 +886,30 @@  discard block
 block discarded – undo
886 886
 	 *
887 887
 	 * @return array   actual users capabilities
888 888
 	 */
889
-	protected function _map_meta_caps( $caps, $cap, $user_id, $args ) {
889
+	protected function _map_meta_caps($caps, $cap, $user_id, $args) {
890 890
 		//only process if we're checking our mapped_cap
891
-		if ( $cap !== $this->meta_cap ) {
891
+		if ($cap !== $this->meta_cap) {
892 892
 			return $caps;
893 893
 		}
894 894
 
895
-		$obj = ! empty( $args[0] ) ? $this->_model->get_one_by_ID( $args[0] ) : null;
895
+		$obj = ! empty($args[0]) ? $this->_model->get_one_by_ID($args[0]) : null;
896 896
 
897 897
 		//if no obj then let's just do cap
898
-		if ( ! $obj instanceof EE_Message_Template_Group ) {
898
+		if ( ! $obj instanceof EE_Message_Template_Group) {
899 899
 			$caps[] = $cap;
900 900
 			return $caps;
901 901
 		}
902 902
 
903 903
 		$is_global = $obj->is_global();
904 904
 
905
-		if ( $obj->wp_user() && $user_id == $obj->wp_user() ) {
906
-			if ( $is_global ) {
907
-				$caps[]  = $this->private_cap;
905
+		if ($obj->wp_user() && $user_id == $obj->wp_user()) {
906
+			if ($is_global) {
907
+				$caps[] = $this->private_cap;
908 908
 			} else {
909 909
 				$caps[] = $cap;
910 910
 			}
911 911
 		} else {
912
-			if ( $is_global ) {
912
+			if ($is_global) {
913 913
 				$caps[] = $this->private_cap;
914 914
 			} else {
915 915
 				$caps[] = $this->others_cap;
@@ -947,16 +947,16 @@  discard block
 block discarded – undo
947 947
 	 *
948 948
 	 * @return array   actual users capabilities
949 949
 	 */
950
-	protected function _map_meta_caps( $caps, $cap, $user_id, $args ) {
950
+	protected function _map_meta_caps($caps, $cap, $user_id, $args) {
951 951
 		//only process if we're checking our mapped_cap
952
-		if ( $cap !== $this->meta_cap ) {
952
+		if ($cap !== $this->meta_cap) {
953 953
 			return $caps;
954 954
 		}
955 955
 
956
-		$obj = ! empty( $args[0] ) ? $this->_model->get_one_by_ID( $args[0] ) : null;
956
+		$obj = ! empty($args[0]) ? $this->_model->get_one_by_ID($args[0]) : null;
957 957
 
958 958
 		//if no obj then let's just do cap
959
-		if ( ! $obj instanceof EE_Base_Class ) {
959
+		if ( ! $obj instanceof EE_Base_Class) {
960 960
 			$caps[] = $cap;
961 961
 			return $caps;
962 962
 		}
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
 		$is_system = $obj instanceof EE_Question_Group ? $obj->system_group() : false;
965 965
 		$is_system = $obj instanceof EE_Question ? $obj->is_system_question() : $is_system;
966 966
 
967
-		if ( $is_system ) {
967
+		if ($is_system) {
968 968
 			$caps[] = $this->private_cap;
969 969
 		} else {
970 970
 			$caps[] = $cap;
Please login to merge, or discard this patch.
core/EE_Cart.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   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );/**
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
+do_action('AHEE_log', __FILE__, __FUNCTION__, ''); /**
3 3
  *
4 4
  * Event Espresso
5 5
  *
@@ -67,24 +67,24 @@  discard block
 block discarded – undo
67 67
 	  * @param EE_Session $session
68 68
 	  * @return \EE_Cart
69 69
 	  */
70
-	 public static function instance( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
71
-		if ( ! empty( $grand_total ) ){
72
-			self::$_instance = new self( $grand_total, $session );
70
+	 public static function instance(EE_Line_Item $grand_total = null, EE_Session $session = null) {
71
+		if ( ! empty($grand_total)) {
72
+			self::$_instance = new self($grand_total, $session);
73 73
 		}
74 74
 		// or maybe retrieve an existing one ?
75
-		if ( ! self::$_instance instanceof EE_Cart ) {
75
+		if ( ! self::$_instance instanceof EE_Cart) {
76 76
 			// try getting the cart out of the session
77 77
 			$saved_cart = $session instanceof EE_Session ? $session->cart() : null;
78
-			self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self( $grand_total, $session );
79
-			unset( $saved_cart );
78
+			self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self($grand_total, $session);
79
+			unset($saved_cart);
80 80
 		}
81 81
 		// verify that cart is ok and grand total line item exists
82
-		if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item ) {
83
-			self::$_instance = new self( $grand_total, $session );
82
+		if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item) {
83
+			self::$_instance = new self($grand_total, $session);
84 84
 		}
85 85
 		self::$_instance->get_grand_total();
86 86
 		 // once everything is all said and done, save the cart to the EE_Session
87
-		add_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 );
87
+		add_action('shutdown', array(self::$_instance, 'save_cart'), 90);
88 88
 		return self::$_instance;
89 89
 	}
90 90
 
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
 	  * @param EE_Session $session
99 99
 	  * @return \EE_Cart
100 100
 	  */
101
-	 private function __construct( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
102
-		 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
103
-		 $this->set_session( $session );
104
-		 if ( $grand_total instanceof EE_Line_Item ) {
105
-			 $this->set_grand_total_line_item( $grand_total );
101
+	 private function __construct(EE_Line_Item $grand_total = null, EE_Session $session = null) {
102
+		 do_action('AHEE_log', __FILE__, __FUNCTION__, '');
103
+		 $this->set_session($session);
104
+		 if ($grand_total instanceof EE_Line_Item) {
105
+			 $this->set_grand_total_line_item($grand_total);
106 106
 		 }
107 107
 	 }
108 108
 
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
 	  * @param EE_Session $session
115 115
 	  * @return EE_Cart
116 116
 	  */
117
-	 public static function reset( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
118
-		 remove_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 );
119
-		 if ( $session instanceof EE_Session ) {
117
+	 public static function reset(EE_Line_Item $grand_total = null, EE_Session $session = null) {
118
+		 remove_action('shutdown', array(self::$_instance, 'save_cart'), 90);
119
+		 if ($session instanceof EE_Session) {
120 120
 			 $session->reset_cart();
121 121
 		 }
122 122
 		 self::$_instance = null;
123
-		 return self::instance( $grand_total, $session );
123
+		 return self::instance($grand_total, $session);
124 124
 	 }
125 125
 
126 126
 
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 	 /**
129 129
 	  * @param EE_Session $session
130 130
 	  */
131
-	 public function set_session( EE_Session $session = null ) {
132
-		 $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core( 'Session' );
131
+	 public function set_session(EE_Session $session = null) {
132
+		 $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core('Session');
133 133
 	 }
134 134
 
135 135
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	  *  know the grand total line item on it
140 140
 	  * @param EE_Line_Item $line_item
141 141
 	  */
142
-	 public function set_grand_total_line_item( EE_Line_Item $line_item ) {
142
+	 public function set_grand_total_line_item(EE_Line_Item $line_item) {
143 143
 		 $this->_grand_total = $line_item;
144 144
 	 }
145 145
 
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
 	  * @param EE_Session $session
153 153
 	  * @return \EE_Cart
154 154
 	  */
155
-	public static function get_cart_from_txn( EE_Transaction $transaction, EE_Session $session = null ) {
155
+	public static function get_cart_from_txn(EE_Transaction $transaction, EE_Session $session = null) {
156 156
 		$grand_total = $transaction->total_line_item();
157 157
 		$grand_total->get_items();
158 158
 		$grand_total->tax_descendants();
159
-		return EE_Cart::instance( $grand_total, $session );
159
+		return EE_Cart::instance($grand_total, $session);
160 160
 	}
161 161
 
162 162
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 	 * Creates the total line item, and ensures it has its 'tickets' and 'taxes' sub-items
166 166
 	 * @return EE_Line_Item
167 167
 	 */
168
-	private function _create_grand_total(){
168
+	private function _create_grand_total() {
169 169
 		$this->_grand_total = EEH_Line_Item::create_total_line_item();
170 170
 		return $this->_grand_total;
171 171
 	}
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 	 *	@return \EE_Line_Item[]
179 179
 	 */
180 180
 	public function get_tickets() {
181
-		return EEH_Line_Item::get_ticket_line_items( $this->_grand_total );
181
+		return EEH_Line_Item::get_ticket_line_items($this->_grand_total);
182 182
 	}
183 183
 
184 184
 
@@ -191,11 +191,11 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	public function all_ticket_quantity_count() {
193 193
 		$tickets = $this->get_tickets();
194
-		if ( empty( $tickets )) {
194
+		if (empty($tickets)) {
195 195
 			return 0;
196 196
 		}
197 197
 		$count = 0;
198
-		foreach ( $tickets as $ticket ) {
198
+		foreach ($tickets as $ticket) {
199 199
 			$count = $count + $ticket->get('LIN_quantity');
200 200
 		}
201 201
 		return $count;
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 	 *  Gets all the tax line items
208 208
 	 * @return \EE_Line_Item[]
209 209
 	 */
210
-	public function get_taxes(){
211
-		return EEH_Line_Item::get_taxes_subtotal( $this->_grand_total )->children();
210
+	public function get_taxes() {
211
+		return EEH_Line_Item::get_taxes_subtotal($this->_grand_total)->children();
212 212
 	}
213 213
 
214 214
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	 * Gets the total line item (which is a parent of all other line items) on this cart
218 218
 	 * @return EE_Line_Item
219 219
 	 */
220
-	public function get_grand_total(){
220
+	public function get_grand_total() {
221 221
 		return $this->_grand_total instanceof EE_Line_Item ? $this->_grand_total : $this->_create_grand_total();
222 222
 	}
223 223
 
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
 	 *	@param int $qty
231 231
 	 *	@return TRUE on success, FALSE on fail
232 232
 	 */
233
-	public function add_ticket_to_cart( EE_Ticket $ticket, $qty = 1 ) {
234
-		EEH_Line_Item::add_ticket_purchase( $this->get_grand_total(), $ticket, $qty );
233
+	public function add_ticket_to_cart(EE_Ticket $ticket, $qty = 1) {
234
+		EEH_Line_Item::add_ticket_purchase($this->get_grand_total(), $ticket, $qty);
235 235
 		return $this->save_cart() ? TRUE : FALSE;
236 236
 	}
237 237
 
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 	 *	@return float
255 255
 	 */
256 256
 	public function get_applied_taxes() {
257
-		return EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
257
+		return EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
258 258
 	}
259 259
 
260 260
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	 *	@return float
266 266
 	 */
267 267
 	public function get_cart_grand_total() {
268
-		EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
268
+		EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
269 269
 		return $this->get_grand_total()->total();
270 270
 	}
271 271
 
@@ -278,8 +278,8 @@  discard block
 block discarded – undo
278 278
 	 */
279 279
 	public function recalculate_all_cart_totals() {
280 280
 		$pre_tax_total = $this->get_cart_total_before_tax();
281
-		$taxes_total = EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
282
-		$this->_grand_total->set_total( $pre_tax_total + $taxes_total );
281
+		$taxes_total = EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
282
+		$this->_grand_total->set_total($pre_tax_total + $taxes_total);
283 283
 		$this->_grand_total->save_this_and_descendants_to_txn();
284 284
 		return $this->get_grand_total()->total();
285 285
 	}
@@ -292,9 +292,9 @@  discard block
 block discarded – undo
292 292
 	 *	@param array|bool|string $line_item_codes
293 293
 	 *	@return int on success, FALSE on fail
294 294
 	 */
295
-	public function delete_items( $line_item_codes = FALSE ) {
296
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
297
-		return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes );
295
+	public function delete_items($line_item_codes = FALSE) {
296
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
297
+		return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes);
298 298
 	}
299 299
 
300 300
 
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
 	 *	@return bool
306 306
 	 */
307 307
 	public function empty_cart() {
308
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
308
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
309 309
 		$this->_grand_total = $this->_create_grand_total();
310
-		return $this->save_cart( TRUE );
310
+		return $this->save_cart(TRUE);
311 311
 	}
312 312
 
313 313
 
@@ -318,8 +318,8 @@  discard block
 block discarded – undo
318 318
 	 *	@return bool
319 319
 	 */
320 320
 	public function delete_cart() {
321
-		$deleted = EEH_Line_Item::delete_all_child_items( $this->_grand_total );
322
-		if ( $deleted ) {
321
+		$deleted = EEH_Line_Item::delete_all_child_items($this->_grand_total);
322
+		if ($deleted) {
323 323
 			$deleted += $this->_grand_total->delete();
324 324
 			$this->_grand_total = null;
325 325
 		}
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
 	  * @param bool $apply_taxes
335 335
 	  * @return TRUE on success, FALSE on fail
336 336
 	  */
337
-	public function save_cart( $apply_taxes = TRUE ) {
338
-		if ( $apply_taxes && $this->_grand_total instanceof EE_Line_Item ) {
339
-			EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
337
+	public function save_cart($apply_taxes = TRUE) {
338
+		if ($apply_taxes && $this->_grand_total instanceof EE_Line_Item) {
339
+			EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
340 340
 			//make sure we don't cache the transaction because it can get stale
341
-			if( $this->_grand_total->get_one_from_cache( 'Transaction' ) instanceof EE_Transaction &&
342
-				$this->_grand_total->get_one_from_cache( 'Transaction' )->ID()) {
343
-				$this->_grand_total->clear_cache( 'Transaction', null, true );
341
+			if ($this->_grand_total->get_one_from_cache('Transaction') instanceof EE_Transaction &&
342
+				$this->_grand_total->get_one_from_cache('Transaction')->ID()) {
343
+				$this->_grand_total->clear_cache('Transaction', null, true);
344 344
 			}
345 345
 		}
346
-		if ( $this->_session instanceof EE_Session ) {
347
-			return $this->_session->set_cart( $this );
346
+		if ($this->_session instanceof EE_Session) {
347
+			return $this->_session->set_cart($this);
348 348
 		} else {
349 349
 			return false;
350 350
 		}
Please login to merge, or discard this patch.
core/EE_Configurable.core.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 	/**
53 53
 	 * @param string $config_section
54 54
 	 */
55
-	public function set_config_section( $config_section = '' ) {
56
-		$this->_config_section = ! empty( $config_section ) ? $config_section : 'modules';
55
+	public function set_config_section($config_section = '') {
56
+		$this->_config_section = ! empty($config_section) ? $config_section : 'modules';
57 57
 	}
58 58
 
59 59
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	/**
71 71
 	 * @param string $config_class
72 72
 	 */
73
-	public function set_config_class( $config_class = '' ) {
73
+	public function set_config_class($config_class = '') {
74 74
 		$this->_config_class = $config_class;
75 75
 	}
76 76
 
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 * @param mixed $config_name
90 90
 	 */
91
-	public function set_config_name( $config_name ) {
92
-		$this->_config_name = ! empty( $config_name ) ? $config_name : get_called_class();
91
+	public function set_config_name($config_name) {
92
+		$this->_config_name = ! empty($config_name) ? $config_name : get_called_class();
93 93
 	}
94 94
 
95 95
 
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 	 * @param 	EE_Config_Base 	$config_obj
113 113
 	 * @return 	mixed 	EE_Config_Base | NULL
114 114
 	 */
115
-	protected function _set_config( EE_Config_Base $config_obj = NULL ) {
116
-		return EE_Config::instance()->set_config( $this->config_section(), $this->config_name(), $this->config_class(), $config_obj );
115
+	protected function _set_config(EE_Config_Base $config_obj = NULL) {
116
+		return EE_Config::instance()->set_config($this->config_section(), $this->config_name(), $this->config_class(), $config_obj);
117 117
 	}
118 118
 
119 119
 
@@ -127,12 +127,12 @@  discard block
 block discarded – undo
127 127
 	 * @throws \EE_Error
128 128
 	 * @return    mixed    EE_Config_Base | NULL
129 129
 	 */
130
-	public function _update_config( EE_Config_Base $config_obj = NULL ) {
130
+	public function _update_config(EE_Config_Base $config_obj = NULL) {
131 131
 		$config_class = $this->config_class();
132
-		if ( ! $config_obj instanceof $config_class ) {
133
-			throw new EE_Error( sprintf( __( 'The "%1$s" class is not an instance of %2$s.', 'event_espresso' ), print_r( $config_obj, TRUE ), $config_class ));
132
+		if ( ! $config_obj instanceof $config_class) {
133
+			throw new EE_Error(sprintf(__('The "%1$s" class is not an instance of %2$s.', 'event_espresso'), print_r($config_obj, TRUE), $config_class));
134 134
 		}
135
-		return EE_Config::instance()->update_config( $this->config_section(), $this->config_name(), $config_obj );
135
+		return EE_Config::instance()->update_config($this->config_section(), $this->config_name(), $config_obj);
136 136
 	}
137 137
 
138 138
 
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
 	 * @return EE_Config_Base
144 144
 	 */
145 145
 	public function config() {
146
-		if ( empty( $this->_config )) {
147
-			$this->_config = EE_Config::instance()->get_config( $this->config_section(), $this->config_name(), $this->config_class() );
146
+		if (empty($this->_config)) {
147
+			$this->_config = EE_Config::instance()->get_config($this->config_section(), $this->config_name(), $this->config_class());
148 148
 		}
149 149
 		return $this->_config;
150 150
 	}
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_Data_Mapper.core.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
 
29 29
 
30 30
    /**
31
-     * instance of the EE_Data_Mapper Object
32
-     * @private _instance
33
-     */
31
+    * instance of the EE_Data_Mapper Object
32
+    * @private _instance
33
+    */
34 34
 	private static $_instance = NULL;
35 35
 
36 36
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */	
55 55
 	public  function &instance() {
56 56
 		// check if class object is instantiated
57
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_Data_Mapper )) {
57
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Data_Mapper)) {
58 58
 			self::$_instance = new self();
59 59
 		}
60 60
 		return self::$_instance;
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
 	 *		@ return void
72 72
 	 */
73 73
 	final function __destruct() {}
74
-	final function __call($a,$b) {}
75
-	public static function __callStatic($a,$b) {}
74
+	final function __call($a, $b) {}
75
+	public static function __callStatic($a, $b) {}
76 76
 	final function __get($a) {}
77
-	final function __set($a,$b) {}
77
+	final function __set($a, $b) {}
78 78
 	final function __isset($a) {}
79 79
 	final function __unset($a) {}
80 80
 	final function __sleep() {
Please login to merge, or discard this patch.
core/EE_Data_Migration_Manager.core.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
 	var $stati_that_indicate_to_stop_single_migration_script = array();
111 111
 
112 112
 	/**
113
-     * 	@var EE_Data_Migration_Manager $_instance
113
+	 * 	@var EE_Data_Migration_Manager $_instance
114 114
 	 * 	@access 	private
115
-     */
115
+	 */
116 116
 	private static $_instance = NULL;
117 117
 
118 118
 	/**
@@ -905,12 +905,12 @@  discard block
 block discarded – undo
905 905
 	}
906 906
 
907 907
 /**
908
-	 * Resets the borked data migration scripts so they're no longer borked
909
-	 * so we can again attempt to migrate
910
-	 *
911
-	 * @return bool
912
-	 * @throws \EE_Error
913
-	 */
908
+ * Resets the borked data migration scripts so they're no longer borked
909
+ * so we can again attempt to migrate
910
+ *
911
+ * @return bool
912
+ * @throws \EE_Error
913
+ */
914 914
 	public function reattempt(){
915 915
 		//find if the last-ran script was borked
916 916
 		//set it as being non-borked (we shouldn't ever get DMSs that we don't recognize)
Please login to merge, or discard this patch.
Braces   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 			//it's 4.2-style.eg Core.4.1.0
188 188
 			$plugin_slug = $parts[0];//eg Core
189 189
 			$version_string = $parts[1].".".$parts[2].".".$parts[3]; //eg 4.1.0
190
-		}else{
190
+		} else{
191 191
 			//it's 4.1-style: eg 4.1.0
192 192
 			$plugin_slug = 'Core';
193 193
 			$version_string = $plugin_slug_and_version_string;//eg 4.1.0
@@ -210,12 +210,12 @@  discard block
 block discarded – undo
210 210
 			if($class instanceof EE_Data_Migration_Script_Base){
211 211
 				$class->instantiate_from_array_of_properties($data_migration_data);
212 212
 				return $class;
213
-			}else{
213
+			} else{
214 214
 				//huh, so its an object but not a data migration script?? that shouldn't happen
215 215
 				//just leave it as an array (which will probably just get ignored)
216 216
 				throw new EE_Error(sprintf(__("Trying to retrieve DMS class from wp option. No DMS by the name '%s' exists", 'event_espresso'),$data_migration_data['class']));
217 217
 			}
218
-		}else{
218
+		} else{
219 219
 			//so the data doesn't specify a class. So it must either be a legacy array of info or some array (which we'll probably just ignore), or a class that no longer exists
220 220
 			throw new EE_Error(sprintf(__("The wp option  with key '%s' does not represent a DMS", 'event_espresso'),$dms_option_name));
221 221
 		}
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 						//sometimes we also like to know which was the last incomplete script (or if there are any at all)
246 246
 						$this->_last_ran_incomplete_script = $class;
247 247
 					}
248
-				}catch(EE_Error $e){
248
+				} catch(EE_Error $e){
249 249
 					//ok so its not a DMS. We'll just keep it, although other code will need to expect non-DMSs
250 250
 					$data_migrations_ran[$plugin_slug][$version_string] = maybe_unserialize($data_migration_option['option_value']);
251 251
 				}
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
 				//so we want the data migrations to happen. SO, we're going to say the DB is at that state
347 347
 //				echo "4.1.0 is greater than $previous_version_installed! update the option";
348 348
 				$db_state = array('Core'=>$previous_version_installed);
349
-			}else{
349
+			} else{
350 350
 //					echo "4.1.0 is SMALLER than $previous_version_installed";
351 351
 					$db_state = array('Core'=>EVENT_ESPRESSO_VERSION);
352 352
 			}
@@ -414,10 +414,10 @@  discard block
 block discarded – undo
414 414
 						$migrates_to_version = $script->migrates_to_version();
415 415
 						$next_database_state_to_consider[ $migrates_to_version[ 'slug' ] ] = $migrates_to_version[ 'version' ];
416 416
 						unset($script_class_and_filepaths_available[$classname]);
417
-					}else{
417
+					} else{
418 418
 						//it must have a status that indicates it has finished, so we don't want to try and run it again
419 419
 					}
420
-				}else{
420
+				} else{
421 421
 					//it exists but it's not  a proper data migration script
422 422
 					//maybe the script got renamed? or was simply removed from EE?
423 423
 					//either way, its certainly not runnable!
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
 		}
458 458
 		if($include_completed_scripts){
459 459
 			return $this->_last_ran_script;
460
-		}else{
460
+		} else{
461 461
 			return $this->_last_ran_incomplete_script;
462 462
 		}
463 463
 	}
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 				$this->_data_migrations_ran[$plugin_slug][$version] = $currently_executing_script;
517 517
 			}
518 518
 			$current_script_name = get_class($currently_executing_script);
519
-		}catch(Exception $e){
519
+		} catch(Exception $e){
520 520
 			//an exception occurred while trying to get migration scripts
521 521
 
522 522
 			$message =  sprintf( __("Error Message: %sStack Trace:%s", "event_espresso"), $e->getMessage() . '<br>', $e->getTraceAsString() );
@@ -581,14 +581,14 @@  discard block
 block discarded – undo
581 581
 					);
582 582
 					break;
583 583
 			}
584
-		}catch(Exception $e){
584
+		} catch(Exception $e){
585 585
 			//ok so some exception was thrown which killed the data migration script
586 586
 			//double-check we have a real script
587 587
 			if($currently_executing_script instanceof EE_Data_Migration_Script_Base){
588 588
 				$script_name = $currently_executing_script->pretty_name();
589 589
 				$currently_executing_script->set_broken();
590 590
 				$currently_executing_script->add_error($e->getMessage());
591
-			}else{
591
+			} else{
592 592
 				$script_name = __("Error getting Migration Script", "event_espresso");
593 593
 			}
594 594
 			$response_array = array(
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
631 631
 		ob_start();
632 632
 		try{
633 633
 			$response = $this->migration_step();
634
-		}catch(Exception $e){
634
+		} catch(Exception $e){
635 635
 			$response = array(
636 636
 				'records_to_migrate'=>0,
637 637
 				'records_migrated'=>0,
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
 		$current_database_state = get_option(self::current_database_state);
681 681
 		if( ! isset( $current_database_state[ $slug ] ) ) {
682 682
 			return true;
683
-		}else{
683
+		} else{
684 684
 			//just compare the first 3 parts of version string, eg "4.7.1", not "4.7.1.dev.032" because DBs shouldn't change on nano version changes
685 685
 			$version_parts_current_db_state = array_slice( explode('.', $current_database_state[ $slug ] ), 0, 3);
686 686
 			$version_parts_of_provided_db_state = array_slice( explode( '.', $version ), 0, 3 );
@@ -769,7 +769,7 @@  discard block
 block discarded – undo
769 769
 			//ok then just add this error to its list of errors
770 770
 			$last_ran_migration_script_properties['_errors'][] = $error_message;
771 771
 			$last_ran_migration_script_properties['_status'] = self::status_fatal_error;
772
-		}else{
772
+		} else{
773 773
 			//so we don't even know which script was last running
774 774
 			//use the data migration error stub, which is designed specifically for this type of thing
775 775
 			$general_migration_error = new EE_DMS_Unknown_1_0_0();
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
 					if( $old_option_value != $script_array_for_saving){
806 806
 						$successful_updates = update_option($option_name,$script_array_for_saving);
807 807
 					}
808
-				}else{//we don't know what this array-thing is. So just save it as-is
808
+				} else{//we don't know what this array-thing is. So just save it as-is
809 809
 	//				$array_of_migrations[$version_string] = $array_or_migration_obj;
810 810
 					if($old_option_value != $array_or_migration_obj){
811 811
 						$successful_updates = update_option($option_name,$array_or_migration_obj);
@@ -872,7 +872,7 @@  discard block
 block discarded – undo
872 872
 				}
873 873
 				//if it wasn't for core, we must keep searching for one that is!
874 874
 				continue;
875
-			}else{
875
+			} else{
876 876
 				$champion_migrates_to= $this->script_migrates_to_version($most_up_to_date_dms_classname);
877 877
 				$contender_migrates_to = $this->script_migrates_to_version($classname);
878 878
 				if($contender_migrates_to[ 'slug' ] == $plugin_slug && version_compare($champion_migrates_to[ 'version' ], $contender_migrates_to[ 'version' ], '<')){
@@ -899,7 +899,7 @@  discard block
 block discarded – undo
899 899
 		$migrations_ran = $this->get_data_migrations_ran();
900 900
 		if( isset( $migrations_ran[ $plugin_slug ] ) && isset( $migrations_ran[ $plugin_slug ][ $version ] ) ){
901 901
 			return $migrations_ran[ $plugin_slug ][ $version ];
902
-		}else{
902
+		} else{
903 903
 			return NULL;
904 904
 		}
905 905
 	}
@@ -921,9 +921,9 @@  discard block
 block discarded – undo
921 921
 		if( $last_ran_script instanceof EE_DMS_Unknown_1_0_0 ){
922 922
 			//if it was an error DMS, just mark it as complete (if another error occurs it will overwrite it)
923 923
 			$last_ran_script->set_completed();
924
-		}elseif( $last_ran_script instanceof EE_Data_Migration_Script_Base ) {
924
+		} elseif( $last_ran_script instanceof EE_Data_Migration_Script_Base ) {
925 925
 			$last_ran_script->reattempt();
926
-		}else{
926
+		} else{
927 927
 			throw new EE_Error( sprintf( __( 'Unable to reattempt the last ran migration script because it was not a valid migration script. || It was %s', 'event_espresso' ), print_r( $last_ran_script ) ) );
928 928
 		}
929 929
 		return $this->_save_migrations_ran();
@@ -962,7 +962,7 @@  discard block
 block discarded – undo
962 962
 			if( ! $most_up_to_date_dms ) {
963 963
 				//if there is NO DMS for this plugin, obviously there's no schema to verify anyways
964 964
 				$verify_db = false;
965
-			}else{
965
+			} else{
966 966
 				$most_up_to_date_dms_migrates_to = $this->script_migrates_to_version( $most_up_to_date_dms );
967 967
 				$verify_db = $this->database_needs_updating_to( $most_up_to_date_dms_migrates_to );
968 968
 			}
@@ -971,7 +971,7 @@  discard block
 block discarded – undo
971 971
 						false,
972 972
 						$verify_db
973 973
 					);
974
-			}else{
974
+			} else{
975 975
 				//just loop through the addons to make sure their database is setup
976 976
 				foreach( EE_Registry::instance()->addons as $addon ) {
977 977
 					if( $addon->name() == $plugin_slug ) {
Please login to merge, or discard this patch.
Spacing   +199 added lines, -199 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  * to indicate it successfully migrate some data, and has nothing left to do; or EE_Data_Migration_Manager::status_fatal_error to indicate
22 22
  * an error occurred which means the ajax script should probably stop executing.
23 23
  */
24
-class EE_Data_Migration_Manager{
24
+class EE_Data_Migration_Manager {
25 25
 
26 26
 	/**
27 27
 	 *
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	 * of this EE installation. Keys should be the name of the version the script upgraded to
79 79
 	 * @var EE_Data_Migration_Script_Base[]
80 80
 	 */
81
-	private $_data_migrations_ran =null;
81
+	private $_data_migrations_ran = null;
82 82
 	/**
83 83
 	 * The last ran script. It's nice to store this somewhere accessible, as its easiest
84 84
 	 * to know which was the last run by which is the newest wp option; but in most of the code
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	 */
123 123
 	public static function instance() {
124 124
 		// check if class object is instantiated
125
-		if ( ! self::$_instance instanceof EE_Data_Migration_Manager ) {
125
+		if ( ! self::$_instance instanceof EE_Data_Migration_Manager) {
126 126
 			self::$_instance = new self();
127 127
 		}
128 128
 		return self::$_instance;
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	 * all new usages of the singleton should be made with Classname::instance()) and returns it
133 133
 	 * @return EE_Data_Migration_Manager
134 134
 	 */
135
-	public static function reset(){
135
+	public static function reset() {
136 136
 		self::$_instance = NULL;
137 137
 		return self::instance();
138 138
 	}
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	/**
143 143
 	 * constructor
144 144
 	 */
145
-	private function __construct(){
145
+	private function __construct() {
146 146
 		$this->stati_that_indicate_to_continue_migrations = array(
147 147
 			self::status_continue,
148 148
 			self::status_completed
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
 		);
162 162
 		//make sure we've included the base migration script, because we may need the EE_DMS_Unknown_1_0_0 class
163 163
 		//to be defined, because right now it doesn't get autoloaded on its own
164
-		EE_Registry::instance()->load_core( 'Data_Migration_Class_Base', array(), TRUE );
165
-		EE_Registry::instance()->load_core( 'Data_Migration_Script_Base', array(), TRUE );
166
-		EE_Registry::instance()->load_core( 'DMS_Unknown_1_0_0', array(), TRUE );
167
-		EE_Registry::instance()->load_core( 'Data_Migration_Script_Stage', array(), TRUE );
168
-		EE_Registry::instance()->load_core( 'Data_Migration_Script_Stage_Table', array(), TRUE );
164
+		EE_Registry::instance()->load_core('Data_Migration_Class_Base', array(), TRUE);
165
+		EE_Registry::instance()->load_core('Data_Migration_Script_Base', array(), TRUE);
166
+		EE_Registry::instance()->load_core('DMS_Unknown_1_0_0', array(), TRUE);
167
+		EE_Registry::instance()->load_core('Data_Migration_Script_Stage', array(), TRUE);
168
+		EE_Registry::instance()->load_core('Data_Migration_Script_Stage_Table', array(), TRUE);
169 169
 	}
170 170
 
171 171
 
@@ -178,21 +178,21 @@  discard block
 block discarded – undo
178 178
 	 * @param string $option_name (see EE_Data_Migration_Manage::_save_migrations_ran() where the option name is set)
179 179
 	 * @return array where the first item is the plugin slug (eg 'Core','Calendar',etc) and the 2nd is the version of that plugin (eg '4.1.0')
180 180
 	 */
181
-	private function _get_plugin_slug_and_version_string_from_dms_option_name($option_name){
181
+	private function _get_plugin_slug_and_version_string_from_dms_option_name($option_name) {
182 182
 		$plugin_slug_and_version_string = str_replace(EE_Data_Migration_Manager::data_migration_script_option_prefix, "", $option_name);
183 183
 		//check if $plugin_slug_and_version_string is like '4.1.0' (4.1-style) or 'Core.4.1.0' (4.2-style)
184
-		$parts = explode(".",$plugin_slug_and_version_string);
184
+		$parts = explode(".", $plugin_slug_and_version_string);
185 185
 
186
-		if(count($parts) == 4){
186
+		if (count($parts) == 4) {
187 187
 			//it's 4.2-style.eg Core.4.1.0
188
-			$plugin_slug = $parts[0];//eg Core
188
+			$plugin_slug = $parts[0]; //eg Core
189 189
 			$version_string = $parts[1].".".$parts[2].".".$parts[3]; //eg 4.1.0
190
-		}else{
190
+		} else {
191 191
 			//it's 4.1-style: eg 4.1.0
192 192
 			$plugin_slug = 'Core';
193
-			$version_string = $plugin_slug_and_version_string;//eg 4.1.0
193
+			$version_string = $plugin_slug_and_version_string; //eg 4.1.0
194 194
 		}
195
-		return array($plugin_slug,$version_string);
195
+		return array($plugin_slug, $version_string);
196 196
 	}
197 197
 
198 198
 	/**
@@ -203,21 +203,21 @@  discard block
 block discarded – undo
203 203
 	 * @return EE_Data_Migration_Script_Base
204 204
 	 * @throws EE_Error
205 205
 	 */
206
-	private function _get_dms_class_from_wp_option($dms_option_name,$dms_option_value){
206
+	private function _get_dms_class_from_wp_option($dms_option_name, $dms_option_value) {
207 207
 		$data_migration_data = maybe_unserialize($dms_option_value);
208
-		if(isset($data_migration_data['class']) && class_exists($data_migration_data['class'])){
208
+		if (isset($data_migration_data['class']) && class_exists($data_migration_data['class'])) {
209 209
 			$class = new $data_migration_data['class'];
210
-			if($class instanceof EE_Data_Migration_Script_Base){
210
+			if ($class instanceof EE_Data_Migration_Script_Base) {
211 211
 				$class->instantiate_from_array_of_properties($data_migration_data);
212 212
 				return $class;
213
-			}else{
213
+			} else {
214 214
 				//huh, so its an object but not a data migration script?? that shouldn't happen
215 215
 				//just leave it as an array (which will probably just get ignored)
216
-				throw new EE_Error(sprintf(__("Trying to retrieve DMS class from wp option. No DMS by the name '%s' exists", 'event_espresso'),$data_migration_data['class']));
216
+				throw new EE_Error(sprintf(__("Trying to retrieve DMS class from wp option. No DMS by the name '%s' exists", 'event_espresso'), $data_migration_data['class']));
217 217
 			}
218
-		}else{
218
+		} else {
219 219
 			//so the data doesn't specify a class. So it must either be a legacy array of info or some array (which we'll probably just ignore), or a class that no longer exists
220
-			throw new EE_Error(sprintf(__("The wp option  with key '%s' does not represent a DMS", 'event_espresso'),$dms_option_name));
220
+			throw new EE_Error(sprintf(__("The wp option  with key '%s' does not represent a DMS", 'event_espresso'), $dms_option_name));
221 221
 		}
222 222
 	}
223 223
 	/**
@@ -225,34 +225,34 @@  discard block
 block discarded – undo
225 225
 	 * the last ran which hasn't finished yet
226 226
 	 * @return array where each element should be an array of EE_Data_Migration_Script_Base (but also has a few legacy arrays in there - which should probably be ignored)
227 227
 	 */
228
-	public function get_data_migrations_ran(){
229
-		if( ! $this->_data_migrations_ran ){
228
+	public function get_data_migrations_ran() {
229
+		if ( ! $this->_data_migrations_ran) {
230 230
 			//setup autoloaders for each of the scripts in there
231 231
 			$this->get_all_data_migration_scripts_available();
232
-			$data_migrations_options = $this->get_all_migration_script_options();//get_option(EE_Data_Migration_Manager::data_migrations_option_name,get_option('espresso_data_migrations',array()));
232
+			$data_migrations_options = $this->get_all_migration_script_options(); //get_option(EE_Data_Migration_Manager::data_migrations_option_name,get_option('espresso_data_migrations',array()));
233 233
 
234 234
 			$data_migrations_ran = array();
235 235
 			//convert into data migration script classes where possible
236
-			foreach($data_migrations_options as $data_migration_option){
237
-				list($plugin_slug,$version_string) = $this->_get_plugin_slug_and_version_string_from_dms_option_name($data_migration_option['option_name']);
236
+			foreach ($data_migrations_options as $data_migration_option) {
237
+				list($plugin_slug, $version_string) = $this->_get_plugin_slug_and_version_string_from_dms_option_name($data_migration_option['option_name']);
238 238
 
239
-				try{
240
-					$class = $this->_get_dms_class_from_wp_option($data_migration_option['option_name'],$data_migration_option['option_value']);
239
+				try {
240
+					$class = $this->_get_dms_class_from_wp_option($data_migration_option['option_name'], $data_migration_option['option_value']);
241 241
 					$data_migrations_ran[$plugin_slug][$version_string] = $class;
242 242
 					//ok so far THIS is the 'last-ran-script'... unless we find another on next iteration
243 243
 					$this->_last_ran_script = $class;
244
-					if( ! $class->is_completed()){
244
+					if ( ! $class->is_completed()) {
245 245
 						//sometimes we also like to know which was the last incomplete script (or if there are any at all)
246 246
 						$this->_last_ran_incomplete_script = $class;
247 247
 					}
248
-				}catch(EE_Error $e){
248
+				} catch (EE_Error $e) {
249 249
 					//ok so its not a DMS. We'll just keep it, although other code will need to expect non-DMSs
250 250
 					$data_migrations_ran[$plugin_slug][$version_string] = maybe_unserialize($data_migration_option['option_value']);
251 251
 				}
252 252
 			}
253 253
 			//so here the array of $data_migrations_ran is actually a mix of classes and a few legacy arrays
254 254
 			$this->_data_migrations_ran = $data_migrations_ran;
255
-			 if ( ! $this->_data_migrations_ran || ! is_array($this->_data_migrations_ran) ){
255
+			 if ( ! $this->_data_migrations_ran || ! is_array($this->_data_migrations_ran)) {
256 256
 				$this->_data_migrations_ran = array();
257 257
 			}
258 258
 		}
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
 	 * @param        $new_table
270 270
 	 * @return mixed string or int
271 271
 	 */
272
-	public function get_mapping_new_pk( $script_name, $old_table, $old_pk, $new_table){
272
+	public function get_mapping_new_pk($script_name, $old_table, $old_pk, $new_table) {
273 273
 		$script = EE_Registry::instance()->load_dms($script_name);
274 274
 		$mapping = $script->get_mapping_new_pk($old_table, $old_pk, $new_table);
275 275
 		return $mapping;
@@ -280,9 +280,9 @@  discard block
 block discarded – undo
280 280
 	 * option returned in this array is the most-recently ran DMS option
281 281
 	 * @return array
282 282
 	 */
283
-	 public function get_all_migration_script_options(){
283
+	 public function get_all_migration_script_options() {
284 284
 		global $wpdb;
285
-		return $wpdb->get_results("SELECT * FROM {$wpdb->options} WHERE option_name like '".EE_Data_Migration_Manager::data_migration_script_option_prefix."%' ORDER BY option_id ASC",ARRAY_A);
285
+		return $wpdb->get_results("SELECT * FROM {$wpdb->options} WHERE option_name like '".EE_Data_Migration_Manager::data_migration_script_option_prefix."%' ORDER BY option_id ASC", ARRAY_A);
286 286
 	}
287 287
 
288 288
 	/**
@@ -290,8 +290,8 @@  discard block
 block discarded – undo
290 290
 	 * @return array where each value is the full folder path of a folder containing data migration scripts, WITH slashes at the end of the
291 291
 	 * folder name.
292 292
 	 */
293
-	public function get_data_migration_script_folders(){
294
-		return  apply_filters( 'FHEE__EE_Data_Migration_Manager__get_data_migration_script_folders',array(EE_CORE.'data_migration_scripts') );
293
+	public function get_data_migration_script_folders() {
294
+		return  apply_filters('FHEE__EE_Data_Migration_Manager__get_data_migration_script_folders', array(EE_CORE.'data_migration_scripts'));
295 295
 	}
296 296
 
297 297
 	/**
@@ -303,11 +303,11 @@  discard block
 block discarded – undo
303 303
 	 * }
304 304
 	 * @throws EE_Error
305 305
 	 */
306
-	public function script_migrates_to_version($migration_script_name){
306
+	public function script_migrates_to_version($migration_script_name) {
307 307
 		$dms_info = $this->parse_dms_classname($migration_script_name);
308 308
 		return array(
309
-			'slug'=> $dms_info[ 'slug' ],
310
-			'version'=> $dms_info[ 'major_version' ] . "." . $dms_info[ 'minor_version' ] . "." . $dms_info[ 'micro_version' ] );
309
+			'slug'=> $dms_info['slug'],
310
+			'version'=> $dms_info['major_version'].".".$dms_info['minor_version'].".".$dms_info['micro_version'] );
311 311
 	}
312 312
 
313 313
 	/**
@@ -316,13 +316,13 @@  discard block
 block discarded – undo
316 316
 	 * @return array with keys 'slug','major_version','minor_version', and 'micro_version' (the last 3 are ints)
317 317
 	 * @throws EE_Error
318 318
 	 */
319
-	public function parse_dms_classname($classname){
319
+	public function parse_dms_classname($classname) {
320 320
 		$matches = array();
321
-		preg_match('~EE_DMS_(.*)_([0-9]*)_([0-9]*)_([0-9]*)~',$classname,$matches);
322
-		if( ! $matches || ! (isset($matches[1]) && isset($matches[2]) && isset($matches[3]))){
323
-				throw new EE_Error(sprintf(__("%s is not a valid Data Migration Script. The classname should be like EE_DMS_w_x_y_z, where w is either 'Core' or the slug of an addon and x, y and z are numbers, ", "event_espresso"),$classname));
321
+		preg_match('~EE_DMS_(.*)_([0-9]*)_([0-9]*)_([0-9]*)~', $classname, $matches);
322
+		if ( ! $matches || ! (isset($matches[1]) && isset($matches[2]) && isset($matches[3]))) {
323
+				throw new EE_Error(sprintf(__("%s is not a valid Data Migration Script. The classname should be like EE_DMS_w_x_y_z, where w is either 'Core' or the slug of an addon and x, y and z are numbers, ", "event_espresso"), $classname));
324 324
 		}
325
-		return array('slug'=>$matches[1],'major_version'=>intval($matches[2]),'minor_version'=>intval($matches[3]),'micro_version'=>intval($matches[4]));
325
+		return array('slug'=>$matches[1], 'major_version'=>intval($matches[2]), 'minor_version'=>intval($matches[3]), 'micro_version'=>intval($matches[4]));
326 326
 	}
327 327
 	/**
328 328
 	 * Ensures that the option indicating the current DB version is set. This should only be
@@ -331,33 +331,33 @@  discard block
 block discarded – undo
331 331
 	 * to 4.1.x.
332 332
 	 * @return string of current db state
333 333
 	 */
334
-	public function ensure_current_database_state_is_set(){
335
-		$espresso_db_core_updates = get_option( 'espresso_db_update', array() );
334
+	public function ensure_current_database_state_is_set() {
335
+		$espresso_db_core_updates = get_option('espresso_db_update', array());
336 336
 		$db_state = get_option(EE_Data_Migration_Manager::current_database_state);
337
-		if( ! $db_state ){
337
+		if ( ! $db_state) {
338 338
 			//mark the DB as being in the state as the last version in there.
339 339
 			//this is done to trigger maintenance mode and do data migration scripts
340 340
 			//if the admin installed this version of EE over 3.1.x or 4.0.x
341 341
 			//otherwise, the normal maintenance mode code is fine
342 342
 			$previous_versions_installed = array_keys($espresso_db_core_updates);
343 343
 			$previous_version_installed = end($previous_versions_installed);
344
-			if(version_compare('4.1.0', $previous_version_installed)){
344
+			if (version_compare('4.1.0', $previous_version_installed)) {
345 345
 				//last installed version was less than 4.1
346 346
 				//so we want the data migrations to happen. SO, we're going to say the DB is at that state
347 347
 //				echo "4.1.0 is greater than $previous_version_installed! update the option";
348 348
 				$db_state = array('Core'=>$previous_version_installed);
349
-			}else{
349
+			} else {
350 350
 //					echo "4.1.0 is SMALLER than $previous_version_installed";
351 351
 					$db_state = array('Core'=>EVENT_ESPRESSO_VERSION);
352 352
 			}
353
-			update_option(EE_Data_Migration_Manager::current_database_state,$db_state);
353
+			update_option(EE_Data_Migration_Manager::current_database_state, $db_state);
354 354
 		}
355 355
 		//in 4.1, $db_state would have only been a simple string like '4.1.0',
356 356
 		//but in 4.2+ it should be an array with at least key 'Core' and the value of that plugin's
357 357
 		//db, and possibly other keys for other addons like 'Calendar','Permissions',etc
358
-		if( ! is_array($db_state)){
358
+		if ( ! is_array($db_state)) {
359 359
 			$db_state = array('Core'=>$db_state);
360
-			update_option(EE_Data_Migration_Manager::current_database_state,$db_state);
360
+			update_option(EE_Data_Migration_Manager::current_database_state, $db_state);
361 361
 		}
362 362
 		return $db_state;
363 363
 	}
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 	 * or they don't apply), returns an empty array
369 369
 	 * @return EE_Data_Migration_Script_Base[]
370 370
 	 */
371
-	public function check_for_applicable_data_migration_scripts(){
371
+	public function check_for_applicable_data_migration_scripts() {
372 372
 		//get the option describing what options have already run
373 373
 		$scripts_ran = $this->get_data_migrations_ran();
374 374
 		//$scripts_ran = array('4.1.0.core'=>array('monkey'=>null));
@@ -381,62 +381,62 @@  discard block
 block discarded – undo
381 381
 		$iteration = 0;
382 382
 		$next_database_state_to_consider = $current_database_state;
383 383
 		$theoretical_database_state = NULL;
384
-		do{
384
+		do {
385 385
 			//the next state after the currently-considered one will start off looking the same as the current, but we may make additions...
386 386
 			$theoretical_database_state = $next_database_state_to_consider;
387 387
 			//the next db state to consider is "what would the DB be like had we run all the scripts we found that applied last time?)
388
-			foreach($script_class_and_filepaths_available as $classname => $filepath){
388
+			foreach ($script_class_and_filepaths_available as $classname => $filepath) {
389 389
 
390 390
 				$migrates_to_version = $this->script_migrates_to_version($classname);
391
-				$script_converts_plugin_slug = $migrates_to_version[ 'slug' ];
392
-				$script_converts_to_version = $migrates_to_version[ 'version' ];
391
+				$script_converts_plugin_slug = $migrates_to_version['slug'];
392
+				$script_converts_to_version = $migrates_to_version['version'];
393 393
 				//check if this version script is DONE or not; or if it's never been ran
394
-				if(		! $scripts_ran ||
394
+				if ( ! $scripts_ran ||
395 395
 						! isset($scripts_ran[$script_converts_plugin_slug]) ||
396
-						! isset($scripts_ran[$script_converts_plugin_slug][$script_converts_to_version])){
396
+						! isset($scripts_ran[$script_converts_plugin_slug][$script_converts_to_version])) {
397 397
 					//we haven't ran this conversion script before
398 398
 					//now check if it applies... note that we've added an autoloader for it on get_all_data_migration_scripts_available
399 399
 					$script = new $classname;
400 400
 					/* @var $script EE_Data_Migration_Script_Base */
401 401
 					$can_migrate = $script->can_migrate_from_version($theoretical_database_state);
402
-					if($can_migrate){
402
+					if ($can_migrate) {
403 403
 						$script_classes_that_should_run_per_iteration[$iteration][$script->priority()][] = $script;
404 404
 						$migrates_to_version = $script->migrates_to_version();
405
-						$next_database_state_to_consider[ $migrates_to_version[ 'slug' ] ] = $migrates_to_version[ 'version' ];
405
+						$next_database_state_to_consider[$migrates_to_version['slug']] = $migrates_to_version['version'];
406 406
 						unset($script_class_and_filepaths_available[$classname]);
407 407
 					}
408
-				} elseif($scripts_ran[$script_converts_plugin_slug][$script_converts_to_version] instanceof EE_Data_Migration_Script_Base){
408
+				} elseif ($scripts_ran[$script_converts_plugin_slug][$script_converts_to_version] instanceof EE_Data_Migration_Script_Base) {
409 409
 					//this script has been ran, or at least started
410 410
 					$script = $scripts_ran[$script_converts_plugin_slug][$script_converts_to_version];
411
-					if( $script->get_status() != self::status_completed){
411
+					if ($script->get_status() != self::status_completed) {
412 412
 						//this script is already underway... keep going with it
413 413
 						$script_classes_that_should_run_per_iteration[$iteration][$script->priority()][] = $script;
414 414
 						$migrates_to_version = $script->migrates_to_version();
415
-						$next_database_state_to_consider[ $migrates_to_version[ 'slug' ] ] = $migrates_to_version[ 'version' ];
415
+						$next_database_state_to_consider[$migrates_to_version['slug']] = $migrates_to_version['version'];
416 416
 						unset($script_class_and_filepaths_available[$classname]);
417
-					}else{
417
+					} else {
418 418
 						//it must have a status that indicates it has finished, so we don't want to try and run it again
419 419
 					}
420
-				}else{
420
+				} else {
421 421
 					//it exists but it's not  a proper data migration script
422 422
 					//maybe the script got renamed? or was simply removed from EE?
423 423
 					//either way, its certainly not runnable!
424 424
 				}
425 425
 			}
426 426
 			$iteration++;
427
-		}while( $next_database_state_to_consider != $theoretical_database_state && $iteration<6);
427
+		}while ($next_database_state_to_consider != $theoretical_database_state && $iteration < 6);
428 428
 		//ok we have all the scripts that should run, now let's make them into flat array
429 429
 		$scripts_that_should_run = array();
430
-		foreach($script_classes_that_should_run_per_iteration as $scripts_at_priority){
430
+		foreach ($script_classes_that_should_run_per_iteration as $scripts_at_priority) {
431 431
 			ksort($scripts_at_priority);
432
-			foreach($scripts_at_priority as $scripts){
433
-				foreach($scripts as $script){
432
+			foreach ($scripts_at_priority as $scripts) {
433
+				foreach ($scripts as $script) {
434 434
 					$scripts_that_should_run[get_class($script)] = $script;
435 435
 				}
436 436
 			}
437 437
 		}
438 438
 
439
-		do_action( 'AHEE__EE_Data_Migration_Manager__check_for_applicable_data_migration_scripts__scripts_that_should_run', $scripts_that_should_run );
439
+		do_action('AHEE__EE_Data_Migration_Manager__check_for_applicable_data_migration_scripts__scripts_that_should_run', $scripts_that_should_run);
440 440
 		return $scripts_that_should_run;
441 441
 	}
442 442
 
@@ -450,14 +450,14 @@  discard block
 block discarded – undo
450 450
 	 * @param bool $include_completed_scripts
451 451
 	 * @return EE_Data_Migration_Script_Base
452 452
 	 */
453
-	public function get_last_ran_script($include_completed_scripts = false){
453
+	public function get_last_ran_script($include_completed_scripts = false) {
454 454
 		//make sure we've setup the class properties _last_ran_script and _last_ran_incomplete_script
455
-		if( ! $this->_data_migrations_ran){
455
+		if ( ! $this->_data_migrations_ran) {
456 456
 			$this->get_data_migrations_ran();
457 457
 		}
458
-		if($include_completed_scripts){
458
+		if ($include_completed_scripts) {
459 459
 			return $this->_last_ran_script;
460
-		}else{
460
+		} else {
461 461
 			return $this->_last_ran_incomplete_script;
462 462
 		}
463 463
 	}
@@ -480,19 +480,19 @@  discard block
 block discarded – undo
480 480
 	 * 		@type string $message string describing what was done during this step
481 481
 	 * }
482 482
 	 */
483
-	public function migration_step( $step_size = 0 ){
483
+	public function migration_step($step_size = 0) {
484 484
 
485 485
 		//bandaid fix for issue https://events.codebasehq.com/projects/event-espresso/tickets/7535
486
-		if ( class_exists( 'EE_CPT_Strategy' ) ) {
487
-			remove_action( 'pre_get_posts', array( EE_CPT_Strategy::instance(), 'pre_get_posts' ), 5 );
486
+		if (class_exists('EE_CPT_Strategy')) {
487
+			remove_action('pre_get_posts', array(EE_CPT_Strategy::instance(), 'pre_get_posts'), 5);
488 488
 		}
489 489
 
490
-		try{
490
+		try {
491 491
 			$currently_executing_script = $this->get_last_ran_script();
492
-			if( ! $currently_executing_script){
492
+			if ( ! $currently_executing_script) {
493 493
 				//Find the next script that needs to execute
494 494
 				$scripts = $this->check_for_applicable_data_migration_scripts();
495
-				if( ! $scripts ){
495
+				if ( ! $scripts) {
496 496
 					//huh, no more scripts to run... apparently we're done!
497 497
 					//but dont forget to make sure initial data is there
498 498
 					//we should be good to allow them to exit maintenance mode now
@@ -513,18 +513,18 @@  discard block
 block discarded – undo
513 513
 				//and add to the array/wp option showing the scripts ran
514 514
 //				$this->_data_migrations_ran[$this->script_migrates_to_version(get_class($currently_executing_script))] = $currently_executing_script;
515 515
 				$migrates_to = $this->script_migrates_to_version(get_class($currently_executing_script));
516
-				$plugin_slug = $migrates_to[ 'slug' ];
517
-				$version = $migrates_to[ 'version' ];
516
+				$plugin_slug = $migrates_to['slug'];
517
+				$version = $migrates_to['version'];
518 518
 				$this->_data_migrations_ran[$plugin_slug][$version] = $currently_executing_script;
519 519
 			}
520 520
 			$current_script_name = get_class($currently_executing_script);
521
-		}catch(Exception $e){
521
+		} catch (Exception $e) {
522 522
 			//an exception occurred while trying to get migration scripts
523 523
 
524
-			$message =  sprintf( __("Error Message: %sStack Trace:%s", "event_espresso"), $e->getMessage() . '<br>', $e->getTraceAsString() );
524
+			$message = sprintf(__("Error Message: %sStack Trace:%s", "event_espresso"), $e->getMessage().'<br>', $e->getTraceAsString());
525 525
 			//record it on the array of data migration scripts ran. This will be overwritten next time we try and try to run data migrations
526 526
 			//but that's ok-- it's just an FYI to support that we couldn't even run any data migrations
527
-			$this->add_error_to_migrations_ran(sprintf(__("Could not run data migrations because: %s", "event_espresso"),$message));
527
+			$this->add_error_to_migrations_ran(sprintf(__("Could not run data migrations because: %s", "event_espresso"), $message));
528 528
 			return array(
529 529
 				'records_to_migrate'=>1,
530 530
 				'records_migrated'=>0,
@@ -534,16 +534,16 @@  discard block
 block discarded – undo
534 534
 			);
535 535
 		}
536 536
 		//ok so we definitely have a data migration script
537
-		try{
537
+		try {
538 538
 			//how big of a bite do we want to take? Allow users to easily override via their wp-config
539
-			if( ! absint( $step_size ) > 0 ){
540
-				$step_size = defined( 'EE_MIGRATION_STEP_SIZE' ) && absint( EE_MIGRATION_STEP_SIZE ) ? EE_MIGRATION_STEP_SIZE : EE_Data_Migration_Manager::step_size;
539
+			if ( ! absint($step_size) > 0) {
540
+				$step_size = defined('EE_MIGRATION_STEP_SIZE') && absint(EE_MIGRATION_STEP_SIZE) ? EE_MIGRATION_STEP_SIZE : EE_Data_Migration_Manager::step_size;
541 541
 			}
542 542
 			//do what we came to do!
543 543
 			$currently_executing_script->migration_step($step_size);
544 544
 			//can we wrap it up and verify default data?
545 545
 			$init_dbs = false;
546
-			switch($currently_executing_script->get_status()){
546
+			switch ($currently_executing_script->get_status()) {
547 547
 				case EE_Data_Migration_Manager::status_continue:
548 548
 					$response_array = array(
549 549
 						'records_to_migrate'=>$currently_executing_script->count_records_to_migrate(),
@@ -555,16 +555,16 @@  discard block
 block discarded – undo
555 555
 				case EE_Data_Migration_Manager::status_completed:
556 556
 					//ok so THAT script has completed
557 557
 					$this->update_current_database_state_to($this->script_migrates_to_version($current_script_name));
558
-					$response_array =  array(
558
+					$response_array = array(
559 559
 							'records_to_migrate'=>$currently_executing_script->count_records_to_migrate(),
560 560
 							'records_migrated'=>$currently_executing_script->count_records_migrated(),
561 561
 							'status'=> EE_Data_Migration_Manager::status_completed,
562 562
 							'message'=>$currently_executing_script->get_feedback_message(),
563
-							'script'=> sprintf(__("%s Completed",'event_espresso'),$currently_executing_script->pretty_name())
563
+							'script'=> sprintf(__("%s Completed", 'event_espresso'), $currently_executing_script->pretty_name())
564 564
 						);
565 565
 					//check if there are any more after this one.
566 566
 					$scripts_remaining = $this->check_for_applicable_data_migration_scripts();
567
-					if( ! $scripts_remaining ){
567
+					if ( ! $scripts_remaining) {
568 568
 						//we should be good to allow them to exit maintenance mode now
569 569
 						EE_Maintenance_Mode::instance()->set_maintenance_level(intval(EE_Maintenance_Mode::level_0_not_in_maintenance));
570 570
 						////huh, no more scripts to run... apparently we're done!
@@ -578,39 +578,39 @@  discard block
 block discarded – undo
578 578
 						'records_to_migrate'=>$currently_executing_script->count_records_to_migrate(),
579 579
 						'records_migrated'=>$currently_executing_script->count_records_migrated(),
580 580
 						'status'=> $currently_executing_script->get_status(),
581
-						'message'=>  sprintf(__("Minor errors occurred during %s: %s", "event_espresso"), $currently_executing_script->pretty_name(), implode(", ",$currently_executing_script->get_errors())),
581
+						'message'=>  sprintf(__("Minor errors occurred during %s: %s", "event_espresso"), $currently_executing_script->pretty_name(), implode(", ", $currently_executing_script->get_errors())),
582 582
 						'script'=>$currently_executing_script->pretty_name()
583 583
 					);
584 584
 					break;
585 585
 			}
586
-		}catch(Exception $e){
586
+		} catch (Exception $e) {
587 587
 			//ok so some exception was thrown which killed the data migration script
588 588
 			//double-check we have a real script
589
-			if($currently_executing_script instanceof EE_Data_Migration_Script_Base){
589
+			if ($currently_executing_script instanceof EE_Data_Migration_Script_Base) {
590 590
 				$script_name = $currently_executing_script->pretty_name();
591 591
 				$currently_executing_script->set_broken();
592 592
 				$currently_executing_script->add_error($e->getMessage());
593
-			}else{
593
+			} else {
594 594
 				$script_name = __("Error getting Migration Script", "event_espresso");
595 595
 			}
596 596
 			$response_array = array(
597 597
 				'records_to_migrate'=>1,
598 598
 				'records_migrated'=>0,
599 599
 				'status'=>self::status_fatal_error,
600
-				'message'=>  sprintf(__("A fatal error occurred during the migration: %s", "event_espresso"),$e->getMessage()),
600
+				'message'=>  sprintf(__("A fatal error occurred during the migration: %s", "event_espresso"), $e->getMessage()),
601 601
 				'script'=>$script_name
602 602
 			);
603 603
 		}
604 604
 		$successful_save = $this->_save_migrations_ran();
605
-		if($successful_save !== TRUE){
605
+		if ($successful_save !== TRUE) {
606 606
 			//ok so the current wp option didn't save. that's tricky, because we'd like to update it
607 607
 			//and mark it as having a fatal error, but remember- WE CAN'T SAVE THIS WP OPTION!
608 608
 			//however, if we throw an exception, and return that, then the next request
609 609
 			//won't have as much info in it, and it may be able to save
610
-			throw new EE_Error(sprintf(__("The error '%s' occurred updating the status of the migration. This is a FATAL ERROR, but the error is preventing the system from remembering that. Please contact event espresso support.", "event_espresso"),$successful_save));
610
+			throw new EE_Error(sprintf(__("The error '%s' occurred updating the status of the migration. This is a FATAL ERROR, but the error is preventing the system from remembering that. Please contact event espresso support.", "event_espresso"), $successful_save));
611 611
 		}
612 612
 		//if we're all done, initialize EE plugins' default data etc.
613
-		if( $init_dbs ) {
613
+		if ($init_dbs) {
614 614
 			$this->initialize_db_for_enqueued_ee_plugins();
615 615
 		}
616 616
 		return $response_array;
@@ -628,23 +628,23 @@  discard block
 block discarded – undo
628 628
 	 * 'message'=>a string, containing any message you want to show to the user. We may decide to split this up into errors, notifications, and successes
629 629
 	 * 'script'=>a pretty name of the script currently running
630 630
 	 */
631
-	public function response_to_migration_ajax_request(){
631
+	public function response_to_migration_ajax_request() {
632 632
 //		//start output buffer just to make sure we don't mess up the json
633 633
 		ob_start();
634
-		try{
634
+		try {
635 635
 			$response = $this->migration_step();
636
-		}catch(Exception $e){
636
+		} catch (Exception $e) {
637 637
 			$response = array(
638 638
 				'records_to_migrate'=>0,
639 639
 				'records_migrated'=>0,
640 640
 				'status'=> EE_Data_Migration_Manager::status_fatal_error,
641
-				'message'=> sprintf(__("Unknown fatal error occurred: %s", "event_espresso"),$e->getMessage()),
641
+				'message'=> sprintf(__("Unknown fatal error occurred: %s", "event_espresso"), $e->getMessage()),
642 642
 				'script'=>'Unknown');
643 643
 			$this->add_error_to_migrations_ran($e->getMessage()."; Stack trace:".$e->getTraceAsString());
644 644
 		}
645 645
 		$warnings_etc = @ob_get_contents();
646 646
 		ob_end_clean();
647
-		$response['message'] .=$warnings_etc;
647
+		$response['message'] .= $warnings_etc;
648 648
 		return $response;
649 649
 	}
650 650
 
@@ -657,14 +657,14 @@  discard block
 block discarded – undo
657 657
 	 * }
658 658
 	 * @return void
659 659
 	 */
660
-	public function update_current_database_state_to($slug_and_version = null){
661
-		if( ! $slug_and_version ){
660
+	public function update_current_database_state_to($slug_and_version = null) {
661
+		if ( ! $slug_and_version) {
662 662
 			//no version was provided, assume it should be at the current code version
663 663
 			$slug_and_version = array('slug' => 'Core', 'version' => espresso_version());
664 664
 		}
665 665
 		$current_database_state = get_option(self::current_database_state);
666
-		$current_database_state[ $slug_and_version[ 'slug' ] ]=$slug_and_version[ 'version' ];
667
-		update_option(self::current_database_state,$current_database_state);
666
+		$current_database_state[$slug_and_version['slug']] = $slug_and_version['version'];
667
+		update_option(self::current_database_state, $current_database_state);
668 668
 	}
669 669
 
670 670
 	/**
@@ -675,20 +675,20 @@  discard block
 block discarded – undo
675 675
 	 * }
676 676
 	 * @return boolean
677 677
 	 */
678
-	public function database_needs_updating_to( $slug_and_version ) {
678
+	public function database_needs_updating_to($slug_and_version) {
679 679
 
680
-		$slug = $slug_and_version[ 'slug' ];
681
-		$version = $slug_and_version[ 'version' ];
680
+		$slug = $slug_and_version['slug'];
681
+		$version = $slug_and_version['version'];
682 682
 		$current_database_state = get_option(self::current_database_state);
683
-		if( ! isset( $current_database_state[ $slug ] ) ) {
683
+		if ( ! isset($current_database_state[$slug])) {
684 684
 			return true;
685
-		}else{
685
+		} else {
686 686
 			//just compare the first 3 parts of version string, eg "4.7.1", not "4.7.1.dev.032" because DBs shouldn't change on nano version changes
687
-			$version_parts_current_db_state = array_slice( explode('.', $current_database_state[ $slug ] ), 0, 3);
688
-			$version_parts_of_provided_db_state = array_slice( explode( '.', $version ), 0, 3 );
687
+			$version_parts_current_db_state = array_slice(explode('.', $current_database_state[$slug]), 0, 3);
688
+			$version_parts_of_provided_db_state = array_slice(explode('.', $version), 0, 3);
689 689
 			$needs_updating = false;
690
-			foreach($version_parts_current_db_state as $offset => $version_part_in_current_db_state ) {
691
-				if( $version_part_in_current_db_state < $version_parts_of_provided_db_state[ $offset ] ) {
690
+			foreach ($version_parts_current_db_state as $offset => $version_part_in_current_db_state) {
691
+				if ($version_part_in_current_db_state < $version_parts_of_provided_db_state[$offset]) {
692 692
 					$needs_updating = true;
693 693
 					break;
694 694
 				}
@@ -702,29 +702,29 @@  discard block
 block discarded – undo
702 702
 	 * in addons. Has the side effect of adding them for autoloading
703 703
 	 * @return array keys are expected classnames, values are their filepaths
704 704
 	 */
705
-	public function get_all_data_migration_scripts_available(){
706
-		if( ! $this->_data_migration_class_to_filepath_map){
705
+	public function get_all_data_migration_scripts_available() {
706
+		if ( ! $this->_data_migration_class_to_filepath_map) {
707 707
 			$this->_data_migration_class_to_filepath_map = array();
708
-			foreach($this->get_data_migration_script_folders() as $folder_path){
709
-				if($folder_path[count($folder_path-1)] != DS ){
710
-					$folder_path.= DS;
708
+			foreach ($this->get_data_migration_script_folders() as $folder_path) {
709
+				if ($folder_path[count($folder_path - 1)] != DS) {
710
+					$folder_path .= DS;
711 711
 				}
712
-				$files = glob( $folder_path. '*.dms.php' );
712
+				$files = glob($folder_path.'*.dms.php');
713 713
 
714
-				if ( empty( $files ) ) {
714
+				if (empty($files)) {
715 715
 					continue;
716 716
 				}
717 717
 
718
-				foreach($files as $file){
719
-					$pos_of_last_slash = strrpos($file,DS);
720
-					$classname = str_replace(".dms.php","", substr($file, $pos_of_last_slash+1));
721
-					$migrates_to = $this->script_migrates_to_version( $classname );
722
-					$slug = $migrates_to[ 'slug' ];
718
+				foreach ($files as $file) {
719
+					$pos_of_last_slash = strrpos($file, DS);
720
+					$classname = str_replace(".dms.php", "", substr($file, $pos_of_last_slash + 1));
721
+					$migrates_to = $this->script_migrates_to_version($classname);
722
+					$slug = $migrates_to['slug'];
723 723
 					//check that the slug as contained in the DMS is associated with
724 724
 					//the slug of an addon or core
725
-					if( $slug != 'Core' ){
726
-						if( ! EE_Registry::instance()->get_addon_by_name( $slug ) ) {
727
-							EE_Error::doing_it_wrong(__FUNCTION__, sprintf( __( 'The data migration script "%s" migrates the "%s" data, but there is no EE addon with that name. There is only: %s. ', 'event_espresso' ),$classname,$slug,implode(",", array_keys( EE_Registry::instance()->get_addons_by_name() ) ) ), '4.3.0.alpha.019' );
725
+					if ($slug != 'Core') {
726
+						if ( ! EE_Registry::instance()->get_addon_by_name($slug)) {
727
+							EE_Error::doing_it_wrong(__FUNCTION__, sprintf(__('The data migration script "%s" migrates the "%s" data, but there is no EE addon with that name. There is only: %s. ', 'event_espresso'), $classname, $slug, implode(",", array_keys(EE_Registry::instance()->get_addons_by_name()))), '4.3.0.alpha.019');
728 728
 						}
729 729
 					}
730 730
 					$this->_data_migration_class_to_filepath_map[$classname] = $file;
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
 	 * from each addon, and check if they need updating,
745 745
 	 * @return boolean
746 746
 	 */
747
-	public function addons_need_updating(){
747
+	public function addons_need_updating() {
748 748
 		return false;
749 749
 	}
750 750
 	/**
@@ -753,25 +753,25 @@  discard block
 block discarded – undo
753 753
 	 * @param string $error_message
754 754
 	 * @throws EE_Error
755 755
 	 */
756
-	public function add_error_to_migrations_ran($error_message){
756
+	public function add_error_to_migrations_ran($error_message) {
757 757
 		//get last-ran migration script
758 758
 		global $wpdb;
759
-		$last_migration_script_option = $wpdb->get_row("SELECT * FROM $wpdb->options WHERE option_name like '".EE_Data_Migration_Manager::data_migration_script_option_prefix."%' ORDER BY option_id DESC LIMIT 1",ARRAY_A);
759
+		$last_migration_script_option = $wpdb->get_row("SELECT * FROM $wpdb->options WHERE option_name like '".EE_Data_Migration_Manager::data_migration_script_option_prefix."%' ORDER BY option_id DESC LIMIT 1", ARRAY_A);
760 760
 
761 761
 		$last_ran_migration_script_properties = isset($last_migration_script_option['option_value']) ? maybe_unserialize($last_migration_script_option['option_value']) : null;
762 762
 		//now, tread lightly because we're here because a FATAL non-catchable error
763 763
 		//was thrown last time when we were trying to run a data migration script
764 764
 		//so the fatal error could have happened while getting the migration script
765 765
 		//or doing running it...
766
-		$versions_migrated_to = isset($last_migration_script_option['option_name']) ? str_replace(EE_Data_Migration_Manager::data_migration_script_option_prefix,"",$last_migration_script_option['option_name']) : null;
766
+		$versions_migrated_to = isset($last_migration_script_option['option_name']) ? str_replace(EE_Data_Migration_Manager::data_migration_script_option_prefix, "", $last_migration_script_option['option_name']) : null;
767 767
 
768 768
 		//check if it THINKS its a data migration script and especially if it's one that HASN'T finished yet
769 769
 		//because if it has finished, then it obviously couldn't be the cause of this error, right? (because its all done)
770
-		if(isset($last_ran_migration_script_properties['class']) && isset($last_ran_migration_script_properties['_status']) && $last_ran_migration_script_properties['_status'] != self::status_completed){
770
+		if (isset($last_ran_migration_script_properties['class']) && isset($last_ran_migration_script_properties['_status']) && $last_ran_migration_script_properties['_status'] != self::status_completed) {
771 771
 			//ok then just add this error to its list of errors
772 772
 			$last_ran_migration_script_properties['_errors'][] = $error_message;
773 773
 			$last_ran_migration_script_properties['_status'] = self::status_fatal_error;
774
-		}else{
774
+		} else {
775 775
 			//so we don't even know which script was last running
776 776
 			//use the data migration error stub, which is designed specifically for this type of thing
777 777
 			$general_migration_error = new EE_DMS_Unknown_1_0_0();
@@ -781,39 +781,39 @@  discard block
 block discarded – undo
781 781
 			$versions_migrated_to = 'Unknown.1.0.0';
782 782
 			//now just to make sure appears as last (in case the were previously a fatal error like this)
783 783
 			//delete the old one
784
-			delete_option( self::data_migration_script_option_prefix . $versions_migrated_to );
784
+			delete_option(self::data_migration_script_option_prefix.$versions_migrated_to);
785 785
 		}
786
-		update_option(self::data_migration_script_option_prefix.$versions_migrated_to,$last_ran_migration_script_properties);
786
+		update_option(self::data_migration_script_option_prefix.$versions_migrated_to, $last_ran_migration_script_properties);
787 787
 
788 788
 	}
789 789
 	/**
790 790
 	 * saves what data migrations have ran to the database
791 791
 	 * @return mixed TRUE if successfully saved migrations ran, string if an error occurred
792 792
 	 */
793
-	protected function _save_migrations_ran(){
794
-		if($this->_data_migrations_ran == null){
793
+	protected function _save_migrations_ran() {
794
+		if ($this->_data_migrations_ran == null) {
795 795
 			$this->get_data_migrations_ran();
796 796
 		}
797 797
 		//now, we don't want to save actual classes to the DB because that's messy
798 798
 		$successful_updates = true;
799
-		foreach($this->_data_migrations_ran as $plugin_slug => $migrations_ran_for_plugin){
800
-			foreach($migrations_ran_for_plugin as $version_string => $array_or_migration_obj){
799
+		foreach ($this->_data_migrations_ran as $plugin_slug => $migrations_ran_for_plugin) {
800
+			foreach ($migrations_ran_for_plugin as $version_string => $array_or_migration_obj) {
801 801
 	//			echo "saving migration script to $version_string<br>";
802 802
 				$plugin_slug_for_use_in_option_name = $plugin_slug.".";
803 803
 				$option_name = self::data_migration_script_option_prefix.$plugin_slug_for_use_in_option_name.$version_string;
804 804
 				$old_option_value = get_option($option_name);
805
-				if($array_or_migration_obj instanceof EE_Data_Migration_Script_Base){
805
+				if ($array_or_migration_obj instanceof EE_Data_Migration_Script_Base) {
806 806
 					$script_array_for_saving = $array_or_migration_obj->properties_as_array();
807
-					if( $old_option_value != $script_array_for_saving){
808
-						$successful_updates = update_option($option_name,$script_array_for_saving);
807
+					if ($old_option_value != $script_array_for_saving) {
808
+						$successful_updates = update_option($option_name, $script_array_for_saving);
809 809
 					}
810
-				}else{//we don't know what this array-thing is. So just save it as-is
810
+				} else {//we don't know what this array-thing is. So just save it as-is
811 811
 	//				$array_of_migrations[$version_string] = $array_or_migration_obj;
812
-					if($old_option_value != $array_or_migration_obj){
813
-						$successful_updates = update_option($option_name,$array_or_migration_obj);
812
+					if ($old_option_value != $array_or_migration_obj) {
813
+						$successful_updates = update_option($option_name, $array_or_migration_obj);
814 814
 					}
815 815
 				}
816
-				if( ! $successful_updates ){
816
+				if ( ! $successful_updates) {
817 817
 					global $wpdb;
818 818
 					return $wpdb->last_error;
819 819
 				}
@@ -837,17 +837,17 @@  discard block
 block discarded – undo
837 837
 	 * @return EE_Data_Migration_Script_Base
838 838
 	 * @throws EE_Error
839 839
 	 */
840
-	function _instantiate_script_from_properties_array($properties_array){
841
-		if( ! isset($properties_array['class'])){
842
-			throw new EE_Error(sprintf(__("Properties array  has no 'class' properties. Here's what it has: %s", "event_espresso"),implode(",",$properties_array)));
840
+	function _instantiate_script_from_properties_array($properties_array) {
841
+		if ( ! isset($properties_array['class'])) {
842
+			throw new EE_Error(sprintf(__("Properties array  has no 'class' properties. Here's what it has: %s", "event_espresso"), implode(",", $properties_array)));
843 843
 		}
844 844
 		$class_name = $properties_array['class'];
845
-		if( ! class_exists($class_name)){
846
-			throw new EE_Error(sprintf(__("There is no migration script named %s", "event_espresso"),$class_name));
845
+		if ( ! class_exists($class_name)) {
846
+			throw new EE_Error(sprintf(__("There is no migration script named %s", "event_espresso"), $class_name));
847 847
 		}
848 848
 		$class = new $class_name;
849
-		if( ! $class instanceof EE_Data_Migration_Script_Base){
850
-			throw new EE_Error(sprintf(__("Class '%s' is supposed to be a migration script. Its not, its a '%s'", "event_espresso"),$class_name,get_class($class)));
849
+		if ( ! $class instanceof EE_Data_Migration_Script_Base) {
850
+			throw new EE_Error(sprintf(__("Class '%s' is supposed to be a migration script. Its not, its a '%s'", "event_espresso"), $class_name, get_class($class)));
851 851
 		}
852 852
 		$class->instantiate_from_array_of_properties($properties_array);
853 853
 		return $class;
@@ -859,25 +859,25 @@  discard block
 block discarded – undo
859 859
 	 * @param string $plugin_slug the slug for the ee plugin we are searching for. Default is 'Core'
860 860
 	 * @return string
861 861
 	 */
862
-	public function get_most_up_to_date_dms($plugin_slug = 'Core'){
862
+	public function get_most_up_to_date_dms($plugin_slug = 'Core') {
863 863
 		$class_to_filepath_map = $this->get_all_data_migration_scripts_available();
864 864
 		$most_up_to_date_dms_classname = NULL;
865
-		foreach($class_to_filepath_map as $classname => $filepath){
866
-			if($most_up_to_date_dms_classname === NULL){
865
+		foreach ($class_to_filepath_map as $classname => $filepath) {
866
+			if ($most_up_to_date_dms_classname === NULL) {
867 867
 				$migrates_to = $this->script_migrates_to_version($classname);
868
-				$this_plugin_slug = $migrates_to[ 'slug' ];
868
+				$this_plugin_slug = $migrates_to['slug'];
869 869
 //				$version_string = $migrates_to[ 'version' ];
870 870
 //				$details = $this->parse_dms_classname($classname);
871
-				if($this_plugin_slug == $plugin_slug){
871
+				if ($this_plugin_slug == $plugin_slug) {
872 872
 					//if it's for core, it wins
873 873
 					$most_up_to_date_dms_classname = $classname;
874 874
 				}
875 875
 				//if it wasn't for core, we must keep searching for one that is!
876 876
 				continue;
877
-			}else{
878
-				$champion_migrates_to= $this->script_migrates_to_version($most_up_to_date_dms_classname);
877
+			} else {
878
+				$champion_migrates_to = $this->script_migrates_to_version($most_up_to_date_dms_classname);
879 879
 				$contender_migrates_to = $this->script_migrates_to_version($classname);
880
-				if($contender_migrates_to[ 'slug' ] == $plugin_slug && version_compare($champion_migrates_to[ 'version' ], $contender_migrates_to[ 'version' ], '<')){
880
+				if ($contender_migrates_to['slug'] == $plugin_slug && version_compare($champion_migrates_to['version'], $contender_migrates_to['version'], '<')) {
881 881
 					//so the contenders version is higher and its for Core
882 882
 					$most_up_to_date_dms_classname = $classname;
883 883
 				}
@@ -897,11 +897,11 @@  discard block
 block discarded – undo
897 897
 	 * @param string $plugin_slug like 'Core', 'Mailchimp', 'Calendar', etc
898 898
 	 * @return EE_Data_Migration_Script_Base
899 899
 	 */
900
-	public function get_migration_ran( $version, $plugin_slug = 'Core' ) {
900
+	public function get_migration_ran($version, $plugin_slug = 'Core') {
901 901
 		$migrations_ran = $this->get_data_migrations_ran();
902
-		if( isset( $migrations_ran[ $plugin_slug ] ) && isset( $migrations_ran[ $plugin_slug ][ $version ] ) ){
903
-			return $migrations_ran[ $plugin_slug ][ $version ];
904
-		}else{
902
+		if (isset($migrations_ran[$plugin_slug]) && isset($migrations_ran[$plugin_slug][$version])) {
903
+			return $migrations_ran[$plugin_slug][$version];
904
+		} else {
905 905
 			return NULL;
906 906
 		}
907 907
 	}
@@ -913,20 +913,20 @@  discard block
 block discarded – undo
913 913
 	 * @return bool
914 914
 	 * @throws \EE_Error
915 915
 	 */
916
-	public function reattempt(){
916
+	public function reattempt() {
917 917
 		//find if the last-ran script was borked
918 918
 		//set it as being non-borked (we shouldn't ever get DMSs that we don't recognize)
919 919
 		//add an 'error' saying that we attempted to reset
920 920
 		//does it have a stage that was borked too? if so make it no longer borked
921 921
 		//add an 'error' saying we attempted to reset
922 922
 		$last_ran_script = $this->get_last_ran_script();
923
-		if( $last_ran_script instanceof EE_DMS_Unknown_1_0_0 ){
923
+		if ($last_ran_script instanceof EE_DMS_Unknown_1_0_0) {
924 924
 			//if it was an error DMS, just mark it as complete (if another error occurs it will overwrite it)
925 925
 			$last_ran_script->set_completed();
926
-		}elseif( $last_ran_script instanceof EE_Data_Migration_Script_Base ) {
926
+		}elseif ($last_ran_script instanceof EE_Data_Migration_Script_Base) {
927 927
 			$last_ran_script->reattempt();
928
-		}else{
929
-			throw new EE_Error( sprintf( __( 'Unable to reattempt the last ran migration script because it was not a valid migration script. || It was %s', 'event_espresso' ), print_r( $last_ran_script ) ) );
928
+		} else {
929
+			throw new EE_Error(sprintf(__('Unable to reattempt the last ran migration script because it was not a valid migration script. || It was %s', 'event_espresso'), print_r($last_ran_script)));
930 930
 		}
931 931
 		return $this->_save_migrations_ran();
932 932
 	}
@@ -936,19 +936,19 @@  discard block
 block discarded – undo
936 936
 	 * @param string $plugin_slug like 'Core', 'Mailchimp', 'Calendar', etc
937 937
 	 * @return boolean
938 938
 	 */
939
-	public function migration_has_ran( $version, $plugin_slug = 'Core' ) {
940
-		return $this->get_migration_ran( $version, $plugin_slug ) !== NULL;
939
+	public function migration_has_ran($version, $plugin_slug = 'Core') {
940
+		return $this->get_migration_ran($version, $plugin_slug) !== NULL;
941 941
 	}
942 942
 	/**
943 943
 	 * Enqueues this ee plugin to have its data initialized
944 944
 	 * @param string $plugin_slug either 'Core' or EE_Addon::name()'s return value
945 945
 	 */
946
-	public function enqueue_db_initialization_for( $plugin_slug ) {
946
+	public function enqueue_db_initialization_for($plugin_slug) {
947 947
 		$queue = $this->get_db_initialization_queue();
948
-		if( ! in_array( $plugin_slug, $queue ) ) {
948
+		if ( ! in_array($plugin_slug, $queue)) {
949 949
 			$queue[] = $plugin_slug;
950 950
 		}
951
-		update_option( self::db_init_queue_option_name, $queue );
951
+		update_option(self::db_init_queue_option_name, $queue);
952 952
 	}
953 953
 	/**
954 954
 	 * Calls EE_Addon::initialize_db_if_no_migrations_required() on each addon
@@ -958,26 +958,26 @@  discard block
 block discarded – undo
958 958
 	public function initialize_db_for_enqueued_ee_plugins() {
959 959
 //		EEH_Debug_Tools::instance()->start_timer( 'initialize_db_for_enqueued_ee_plugins' );
960 960
 		$queue = $this->get_db_initialization_queue();
961
-		foreach( $queue as $plugin_slug ) {
962
-			$most_up_to_date_dms = $this->get_most_up_to_date_dms( $plugin_slug );
963
-			if( ! $most_up_to_date_dms ) {
961
+		foreach ($queue as $plugin_slug) {
962
+			$most_up_to_date_dms = $this->get_most_up_to_date_dms($plugin_slug);
963
+			if ( ! $most_up_to_date_dms) {
964 964
 				//if there is NO DMS for this plugin, obviously there's no schema to verify anyways
965 965
 				$verify_db = false;
966
-			}else{
967
-				$most_up_to_date_dms_migrates_to = $this->script_migrates_to_version( $most_up_to_date_dms );
968
-				$verify_db = $this->database_needs_updating_to( $most_up_to_date_dms_migrates_to );
966
+			} else {
967
+				$most_up_to_date_dms_migrates_to = $this->script_migrates_to_version($most_up_to_date_dms);
968
+				$verify_db = $this->database_needs_updating_to($most_up_to_date_dms_migrates_to);
969 969
 			}
970
-			if( $plugin_slug == 'Core' ){
970
+			if ($plugin_slug == 'Core') {
971 971
 				EE_System::instance()->initialize_db_if_no_migrations_required(
972 972
 						false,
973 973
 						$verify_db
974 974
 					);
975
-			}else{
975
+			} else {
976 976
 				//just loop through the addons to make sure their database is setup
977
-				foreach( EE_Registry::instance()->addons as $addon ) {
978
-					if( $addon->name() == $plugin_slug ) {
977
+				foreach (EE_Registry::instance()->addons as $addon) {
978
+					if ($addon->name() == $plugin_slug) {
979 979
 
980
-						$addon->initialize_db_if_no_migrations_required( $verify_db );
980
+						$addon->initialize_db_if_no_migrations_required($verify_db);
981 981
 						break;
982 982
 					}
983 983
 				}
@@ -987,7 +987,7 @@  discard block
 block discarded – undo
987 987
 //		EEH_Debug_Tools::instance()->show_times();
988 988
 		//because we just initialized the DBs for the enqueued ee plugins
989 989
 		//we don't need to keep remembering which ones needed to be initialized
990
-		delete_option( self::db_init_queue_option_name );
990
+		delete_option(self::db_init_queue_option_name);
991 991
 	}
992 992
 
993 993
 	/**
@@ -996,7 +996,7 @@  discard block
 block discarded – undo
996 996
 	 * 'Core', or the return value of EE_Addon::name() for an addon
997 997
 	 * @return array
998 998
 	 */
999
-	public function get_db_initialization_queue(){
1000
-		return get_option ( self::db_init_queue_option_name, array() );
999
+	public function get_db_initialization_queue() {
1000
+		return get_option(self::db_init_queue_option_name, array());
1001 1001
 	}
1002 1002
 }
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
 /**
3 5
  * EE_Encryption class
4 6
  *
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 3 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
 // 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 5
 if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) {
4 6
 	set_error_handler( array( 'EE_Error', 'error_handler' ));
Please login to merge, or discard this patch.
Indentation   +166 added lines, -166 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;
@@ -255,22 +255,22 @@  discard block
 block discarded – undo
255 255
 
256 256
 
257 257
 	/**
258
-	*	has_error
259
-	*	@access public
260
-	*	@return boolean
261
-	*/
262
-    public static function has_error(){
258
+	 *	has_error
259
+	 *	@access public
260
+	 *	@return boolean
261
+	 */
262
+	public static function has_error(){
263 263
 		return self::$_error_count ? TRUE : FALSE;
264 264
 	}
265 265
 
266 266
 
267 267
 
268 268
 	/**
269
-	*	display_errors
270
-	*	@access public
271
-	*	@echo string
272
-	*/
273
-    public function display_errors(){
269
+	 *	display_errors
270
+	 *	@access public
271
+	 *	@echo string
272
+	 */
273
+	public function display_errors(){
274 274
 
275 275
 		$trace_details = '';
276 276
 
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 			// process trace info
343 343
 			if ( empty( $ex['trace'] )) {
344 344
 
345
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
345
+				$trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
346 346
 
347 347
 			} else {
348 348
 
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
 					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
395 395
 					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
396 396
 
397
-		              $trace_details .= '
397
+					  $trace_details .= '
398 398
 					<tr>
399 399
 						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
400 400
 						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 
407 407
 				}
408 408
 
409
-	            $trace_details .= '
409
+				$trace_details .= '
410 410
 			 </table>
411 411
 			</div>';
412 412
 
@@ -486,12 +486,12 @@  discard block
 block discarded – undo
486 486
 
487 487
 
488 488
 	/**
489
-	*	generate string from exception trace args
490
-	*
491
-	*	@access private
492
-	*	@ param array $arguments
493
-	*	@ return string
494
-	*/
489
+	 *	generate string from exception trace args
490
+	 *
491
+	 *	@access private
492
+	 *	@ param array $arguments
493
+	 *	@ return string
494
+	 */
495 495
 	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
496 496
 
497 497
 		$arg_string = '';
@@ -535,15 +535,15 @@  discard block
 block discarded – undo
535 535
 
536 536
 
537 537
 	/**
538
-	* 	add error message
539
-	*
540
-	*	@access public
541
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
542
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
543
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
544
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
545
-	* 	@return 		void
546
-	*/
538
+	 * 	add error message
539
+	 *
540
+	 *	@access public
541
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
542
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
543
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
544
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
545
+	 * 	@return 		void
546
+	 */
547 547
 	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
548 548
 		self::_add_notice ( 'errors', $msg, $file, $func, $line );
549 549
 		self::$_error_count++;
@@ -554,15 +554,15 @@  discard block
 block discarded – undo
554 554
 
555 555
 
556 556
 	/**
557
-	* 	add success message
558
-	*
559
-	*	@access public
560
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
561
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
562
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
563
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
564
-	* 	@return 		void
565
-	*/
557
+	 * 	add success message
558
+	 *
559
+	 *	@access public
560
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
561
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
562
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
563
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
564
+	 * 	@return 		void
565
+	 */
566 566
 	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
567 567
 		self::_add_notice ( 'success', $msg, $file, $func, $line );
568 568
 	}
@@ -572,15 +572,15 @@  discard block
 block discarded – undo
572 572
 
573 573
 
574 574
 	/**
575
-	* 	add attention message
576
-	*
577
-	*	@access public
578
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
579
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
580
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
581
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
582
-	* 	@return 		void
583
-	*/
575
+	 * 	add attention message
576
+	 *
577
+	 *	@access public
578
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
579
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
580
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
581
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
582
+	 * 	@return 		void
583
+	 */
584 584
 	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
585 585
 		self::_add_notice ( 'attention', $msg, $file, $func, $line );
586 586
 	}
@@ -590,16 +590,16 @@  discard block
 block discarded – undo
590 590
 
591 591
 
592 592
 	/**
593
-	* 	add success message
594
-	*
595
-	*	@access public
596
-	* 	@param		string		$type	whether the message is for a success or error notification
597
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
598
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
599
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
600
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
601
-	* 	@return 		void
602
-	*/
593
+	 * 	add success message
594
+	 *
595
+	 *	@access public
596
+	 * 	@param		string		$type	whether the message is for a success or error notification
597
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
598
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
599
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
600
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
601
+	 * 	@return 		void
602
+	 */
603 603
 	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
604 604
 		if ( empty( $msg )) {
605 605
 			EE_Error::doing_it_wrong(
@@ -648,11 +648,11 @@  discard block
 block discarded – undo
648 648
 
649 649
 
650 650
 	/**
651
-	* 	in some case it may be necessary to overwrite the existing success messages
652
-	*
653
-	*	@access public
654
-	* 	@return 		void
655
-	*/
651
+	 * 	in some case it may be necessary to overwrite the existing success messages
652
+	 *
653
+	 *	@access public
654
+	 * 	@return 		void
655
+	 */
656 656
 	public static function overwrite_success() {
657 657
 		self::$_espresso_notices['success'] = FALSE;
658 658
 	}
@@ -662,11 +662,11 @@  discard block
 block discarded – undo
662 662
 
663 663
 
664 664
 	/**
665
-	* 	in some case it may be necessary to overwrite the existing attention messages
666
-	*
667
-	*	@access public
668
-	* 	@return 		void
669
-	*/
665
+	 * 	in some case it may be necessary to overwrite the existing attention messages
666
+	 *
667
+	 *	@access public
668
+	 * 	@return 		void
669
+	 */
670 670
 	public static function overwrite_attention() {
671 671
 		self::$_espresso_notices['attention'] = FALSE;
672 672
 	}
@@ -676,11 +676,11 @@  discard block
 block discarded – undo
676 676
 
677 677
 
678 678
 	/**
679
-	* 	in some case it may be necessary to overwrite the existing error messages
680
-	*
681
-	*	@access public
682
-	* 	@return 		void
683
-	*/
679
+	 * 	in some case it may be necessary to overwrite the existing error messages
680
+	 *
681
+	 *	@access public
682
+	 * 	@return 		void
683
+	 */
684 684
 	public static function overwrite_errors() {
685 685
 		self::$_espresso_notices['errors'] = FALSE;
686 686
 	}
@@ -688,24 +688,24 @@  discard block
 block discarded – undo
688 688
 
689 689
 
690 690
 	/**
691
-	*	reset_notices
692
-	*	@access private
693
-	*	@return void
694
-	*/
691
+	 *	reset_notices
692
+	 *	@access private
693
+	 *	@return void
694
+	 */
695 695
 	public static function reset_notices(){
696
-    	self::$_espresso_notices['success'] = FALSE;
697
-    	self::$_espresso_notices['attention'] = FALSE;
698
-    	self::$_espresso_notices['errors'] = FALSE;
699
-    }
696
+		self::$_espresso_notices['success'] = FALSE;
697
+		self::$_espresso_notices['attention'] = FALSE;
698
+		self::$_espresso_notices['errors'] = FALSE;
699
+	}
700 700
 
701 701
 
702 702
 
703 703
 	/**
704
-	*	has_errors
705
-	*	@access public
706
-	*	@return int
707
-	*/
708
-    public static function has_notices(){
704
+	 *	has_errors
705
+	 *	@access public
706
+	 *	@return int
707
+	 */
708
+	public static function has_notices(){
709 709
 		$has_notices = 0;
710 710
 		// check for success messages
711 711
 		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
@@ -719,15 +719,15 @@  discard block
 block discarded – undo
719 719
 
720 720
 
721 721
 	/**
722
-	* 	compile all error or success messages into one string
723
-	*	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
724
-	*
725
-	*	@access public
726
-	* 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
727
-	* 	@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
728
-	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
729
-	* 	@return 		array
730
-	*/
722
+	 * 	compile all error or success messages into one string
723
+	 *	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
724
+	 *
725
+	 *	@access public
726
+	 * 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
727
+	 * 	@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
728
+	 * 	@param		boolean		$remove_empty		whether or not to unset empty messages
729
+	 * 	@return 		array
730
+	 */
731 731
 	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
732 732
 		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
733 733
 
@@ -839,14 +839,14 @@  discard block
 block discarded – undo
839 839
 
840 840
 
841 841
 	/**
842
-	* 	add_persistent_admin_notice
843
-	*
844
-	*	@access 	public
845
-	* 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
846
-	* 	@param		string	$pan_message	the message to be stored persistently until dismissed
847
-	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
848
-	* 	@return 		void
849
-	*/
842
+	 * 	add_persistent_admin_notice
843
+	 *
844
+	 *	@access 	public
845
+	 * 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
846
+	 * 	@param		string	$pan_message	the message to be stored persistently until dismissed
847
+	 * 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
848
+	 * 	@return 		void
849
+	 */
850 850
 	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
851 851
 		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
852 852
 			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
@@ -910,9 +910,9 @@  discard block
 block discarded – undo
910 910
 	 * 	display_persistent_admin_notices
911 911
 	 *
912 912
 	 *  	@access 	public
913
-	* 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
914
-	* 	@param		string	$pan_name	the message to be stored persistently until dismissed
915
-	* 	@param		string	$return_url	URL to go back to aftger nag notice is dismissed
913
+	 * 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
914
+	 * 	@param		string	$pan_name	the message to be stored persistently until dismissed
915
+	 * 	@param		string	$return_url	URL to go back to aftger nag notice is dismissed
916 916
 	 *  	@return 		string
917 917
 	 */
918 918
 	public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) {
@@ -1008,11 +1008,11 @@  discard block
 block discarded – undo
1008 1008
 
1009 1009
 
1010 1010
 	/**
1011
-	* 	enqueue_error_scripts
1012
-	*
1013
-	*	@access public
1014
-	* 	@return 		void
1015
-	*/
1011
+	 * 	enqueue_error_scripts
1012
+	 *
1013
+	 *	@access public
1014
+	 * 	@return 		void
1015
+	 */
1016 1016
 	public static function enqueue_error_scripts() {
1017 1017
 		self::_print_scripts();
1018 1018
 	}
@@ -1020,15 +1020,15 @@  discard block
 block discarded – undo
1020 1020
 
1021 1021
 
1022 1022
 	/**
1023
-	*	create error code from filepath, function name,
1024
-	*	and line number where exception or error was thrown
1025
-	*
1026
-	*	@access public
1027
-	*	@ param string $file
1028
-	*	@ param string $func
1029
-	*	@ param string $line
1030
-	*	@ return string
1031
-	*/
1023
+	 *	create error code from filepath, function name,
1024
+	 *	and line number where exception or error was thrown
1025
+	 *
1026
+	 *	@access public
1027
+	 *	@ param string $file
1028
+	 *	@ param string $func
1029
+	 *	@ param string $line
1030
+	 *	@ return string
1031
+	 */
1032 1032
 	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1033 1033
 		$file = explode( '.', basename( $file ));
1034 1034
 		$error_code = ! empty( $file[0] ) ? $file[0] : '';
@@ -1042,13 +1042,13 @@  discard block
 block discarded – undo
1042 1042
 
1043 1043
 
1044 1044
 	/**
1045
-	*	write exception details to log file
1046
-	*
1047
-	*	@access public
1048
-	*	@ param timestamp $time
1049
-	*	@ param object $ex
1050
-	*	@ return void
1051
-	*/
1045
+	 *	write exception details to log file
1046
+	 *
1047
+	 *	@access public
1048
+	 *	@ param timestamp $time
1049
+	 *	@ param object $ex
1050
+	 *	@ return void
1051
+	 */
1052 1052
 	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1053 1053
 
1054 1054
 		if ( ! $ex ) {
Please login to merge, or discard this patch.
Spacing   +243 added lines, -243 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' ));
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 	*	@access public
260 260
 	*	@return boolean
261 261
 	*/
262
-    public static function has_error(){
262
+    public static function has_error() {
263 263
 		return self::$_error_count ? TRUE : FALSE;
264 264
 	}
265 265
 
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	*	@access public
271 271
 	*	@echo string
272 272
 	*/
273
-    public function display_errors(){
273
+    public function display_errors() {
274 274
 
275 275
 		$trace_details = '';
276 276
 
@@ -331,18 +331,18 @@  discard block
 block discarded – undo
331 331
 </style>
332 332
 <div id="ee-error-message" class="error">';
333 333
 
334
-		if ( ! WP_DEBUG ) {
334
+		if ( ! WP_DEBUG) {
335 335
 			$output .= '
336 336
 	<p>';
337 337
 		}
338 338
 
339 339
 		// cycle thru errors
340
-		foreach ( self::$_all_exceptions as $time => $ex ) {
340
+		foreach (self::$_all_exceptions as $time => $ex) {
341 341
 
342 342
 			// process trace info
343
-			if ( empty( $ex['trace'] )) {
343
+			if (empty($ex['trace'])) {
344 344
 
345
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
345
+	            $trace_details .= __('Sorry, but no trace information was available for this exception.', 'event_espresso');
346 346
 
347 347
 			} else {
348 348
 
@@ -357,50 +357,50 @@  discard block
 block discarded – undo
357 357
 					<th scope="col" align="left">Method( arguments )</th>
358 358
 				</tr>';
359 359
 
360
-				$last_on_stack = count( $ex['trace'] ) - 1;
360
+				$last_on_stack = count($ex['trace']) - 1;
361 361
 				// reverse array so that stack is in proper chronological order
362
-				$sorted_trace = array_reverse( $ex['trace'] );
362
+				$sorted_trace = array_reverse($ex['trace']);
363 363
 
364
-				foreach ( $sorted_trace as $nmbr => $trace ) {
364
+				foreach ($sorted_trace as $nmbr => $trace) {
365 365
 
366
-					$file = isset( $trace['file'] ) ? $trace['file'] : '' ;
367
-					$class = isset( $trace['class'] ) ? $trace['class'] : '';
368
-					$type = isset( $trace['type'] ) ? $trace['type'] : '';
369
-					$function = isset( $trace['function'] ) ? $trace['function'] : '';
370
-					$args = isset( $trace['args'] ) ? $this->_convert_args_to_string( $trace['args'] ) : '';
371
-					$line = isset( $trace['line'] ) ? $trace['line'] : '';
366
+					$file = isset($trace['file']) ? $trace['file'] : '';
367
+					$class = isset($trace['class']) ? $trace['class'] : '';
368
+					$type = isset($trace['type']) ? $trace['type'] : '';
369
+					$function = isset($trace['function']) ? $trace['function'] : '';
370
+					$args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : '';
371
+					$line = isset($trace['line']) ? $trace['line'] : '';
372 372
 					$zebra = $nmbr % 2 ? ' odd' : '';
373 373
 
374
-					if ( empty( $file ) && ! empty( $class )) {
375
-						$a = new ReflectionClass( $class );
374
+					if (empty($file) && ! empty($class)) {
375
+						$a = new ReflectionClass($class);
376 376
 						$file = $a->getFileName();
377
-						if ( empty( $line ) && ! empty( $function )) {
378
-							$b = new ReflectionMethod( $class, $function );
377
+						if (empty($line) && ! empty($function)) {
378
+							$b = new ReflectionMethod($class, $function);
379 379
 							$line = $b->getStartLine();
380 380
 						}
381 381
 					}
382 382
 
383
-					if ( $nmbr == $last_on_stack ) {
383
+					if ($nmbr == $last_on_stack) {
384 384
 						$file = $ex['file'] != '' ? $ex['file'] : $file;
385 385
 						$line = $ex['line'] != '' ? $ex['line'] : $line;
386
-						$error_code = self::generate_error_code ( $file, $trace['function'], $line );
386
+						$error_code = self::generate_error_code($file, $trace['function'], $line);
387 387
 					}
388 388
 
389
-					$nmbr_dsply = ! empty( $nmbr ) ? $nmbr : '&nbsp;';
390
-					$line_dsply = ! empty( $line ) ? $line : '&nbsp;';
391
-					$file_dsply = ! empty( $file ) ? $file : '&nbsp;';
392
-					$class_dsply = ! empty( $class ) ? $class : '&nbsp;';
393
-					$type_dsply = ! empty( $type ) ? $type : '&nbsp;';
394
-					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
395
-					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
389
+					$nmbr_dsply = ! empty($nmbr) ? $nmbr : '&nbsp;';
390
+					$line_dsply = ! empty($line) ? $line : '&nbsp;';
391
+					$file_dsply = ! empty($file) ? $file : '&nbsp;';
392
+					$class_dsply = ! empty($class) ? $class : '&nbsp;';
393
+					$type_dsply = ! empty($type) ? $type : '&nbsp;';
394
+					$function_dsply = ! empty($function) ? $function : '&nbsp;';
395
+					$args_dsply = ! empty($args) ? '( '.$args.' )' : '';
396 396
 
397 397
 		              $trace_details .= '
398 398
 					<tr>
399
-						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
400
-						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
401
-						<td align="left" class="' . $zebra . '">' . $file_dsply . '</td>
402
-						<td align="left" class="' . $zebra . '">' . $class_dsply . '</td>
403
-						<td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td>
399
+						<td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td>
400
+						<td align="right" class="' . $zebra.'">'.$line_dsply.'</td>
401
+						<td align="left" class="' . $zebra.'">'.$file_dsply.'</td>
402
+						<td align="left" class="' . $zebra.'">'.$class_dsply.'</td>
403
+						<td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td>
404 404
 					</tr>';
405 405
 
406 406
 
@@ -415,9 +415,9 @@  discard block
 block discarded – undo
415 415
 			$ex['code'] = $ex['code'] ? $ex['code'] : $error_code;
416 416
 
417 417
 			// add generic non-identifying messages for non-privileged uesrs
418
-			if ( ! WP_DEBUG ) {
418
+			if ( ! WP_DEBUG) {
419 419
 
420
-				$output .= '<span class="ee-error-user-msg-spn">' . trim( $ex['msg'] )  . '</span> &nbsp; <sup>' . $ex['code'] . '</sup><br />';
420
+				$output .= '<span class="ee-error-user-msg-spn">'.trim($ex['msg']).'</span> &nbsp; <sup>'.$ex['code'].'</sup><br />';
421 421
 
422 422
 			} else {
423 423
 
@@ -425,24 +425,24 @@  discard block
 block discarded – undo
425 425
 				$output .= '
426 426
 		<div class="ee-error-dev-msg-dv">
427 427
 			<p class="ee-error-dev-msg-pg">
428
-				<strong class="ee-error-dev-msg-str">An ' . $ex['name'] . ' exception was thrown!</strong>  &nbsp; <span>code: ' . $ex['code'] . '</span><br />
429
-				<span class="big-text">"' . trim( $ex['msg'] ) . '"</span><br/>
430
-				<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 . '">
431
-					' . __( 'click to view backtrace and class/method details', 'event_espresso' ) . '
428
+				<strong class="ee-error-dev-msg-str">An ' . $ex['name'].' exception was thrown!</strong>  &nbsp; <span>code: '.$ex['code'].'</span><br />
429
+				<span class="big-text">"' . trim($ex['msg']).'"</span><br/>
430
+				<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.'">
431
+					' . __('click to view backtrace and class/method details', 'event_espresso').'
432 432
 				</a><br />
433 433
 				<span class="small-text lt-grey-text">'.$ex['file'].' &nbsp; ( line no: '.$ex['line'].' )</span>
434 434
 			</p>
435
-			<div id="ee-error-trace-' . self::$_error_count . $time . '-dv" class="ee-error-trace-dv" style="display: none;">
435
+			<div id="ee-error-trace-' . self::$_error_count.$time.'-dv" class="ee-error-trace-dv" style="display: none;">
436 436
 				' . $trace_details;
437 437
 
438
-				if ( ! empty( $class )) {
438
+				if ( ! empty($class)) {
439 439
 					$output .= '
440 440
 				<div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;">
441 441
 					<div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;">
442 442
 						<h3>Class Details</h3>';
443
-						$a = new ReflectionClass( $class );
443
+						$a = new ReflectionClass($class);
444 444
 						$output .= '
445
-						<pre>' . $a . '</pre>
445
+						<pre>' . $a.'</pre>
446 446
 					</div>
447 447
 				</div>';
448 448
 				}
@@ -454,14 +454,14 @@  discard block
 block discarded – undo
454 454
 
455 455
 			}
456 456
 
457
-			$this->write_to_error_log( $time, $ex );
457
+			$this->write_to_error_log($time, $ex);
458 458
 
459 459
 		}
460 460
 
461 461
 		// remove last linebreak
462
-		$output = substr( $output, 0, ( count( $output ) - 7 ));
462
+		$output = substr($output, 0, (count($output) - 7));
463 463
 
464
-		if ( ! WP_DEBUG ) {
464
+		if ( ! WP_DEBUG) {
465 465
 			$output .= '
466 466
 	</p>';
467 467
 		}
@@ -469,10 +469,10 @@  discard block
 block discarded – undo
469 469
 		$output .= '
470 470
 </div>';
471 471
 
472
-		$output .= self::_print_scripts( TRUE );
472
+		$output .= self::_print_scripts(TRUE);
473 473
 
474
-		if ( defined( 'DOING_AJAX' )) {
475
-			echo json_encode( array( 'error' => $output ));
474
+		if (defined('DOING_AJAX')) {
475
+			echo json_encode(array('error' => $output));
476 476
 			exit();
477 477
 		}
478 478
 
@@ -492,29 +492,29 @@  discard block
 block discarded – undo
492 492
 	*	@ param array $arguments
493 493
 	*	@ return string
494 494
 	*/
495
-	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
495
+	private function _convert_args_to_string($arguments = array(), $array = FALSE) {
496 496
 
497 497
 		$arg_string = '';
498
-		if ( ! empty( $arguments )) {
498
+		if ( ! empty($arguments)) {
499 499
 
500 500
 			$args = array();
501 501
 
502
-			foreach ( $arguments as $arg ) {
502
+			foreach ($arguments as $arg) {
503 503
 
504
-				if ( ! empty( $arg )) {
504
+				if ( ! empty($arg)) {
505 505
 
506
-					if ( is_string( $arg )) {
507
-						$args[] = " '" . $arg . "'";
508
-					} elseif ( is_array( $arg )) {
509
-						$args[] = 'ARRAY(' . $this->_convert_args_to_string( $arg, TRUE );
510
-					} elseif ( is_null( $arg )) {
506
+					if (is_string($arg)) {
507
+						$args[] = " '".$arg."'";
508
+					} elseif (is_array($arg)) {
509
+						$args[] = 'ARRAY('.$this->_convert_args_to_string($arg, TRUE);
510
+					} elseif (is_null($arg)) {
511 511
 						$args[] = ' NULL';
512
-					} elseif ( is_bool( $arg )) {
513
-						$args[] = ( $arg ) ? ' TRUE' : ' FALSE';
514
-					} elseif ( is_object( $arg )) {
515
-						$args[] = ' OBJECT ' . get_class( $arg );
516
-					} elseif ( is_resource( $arg )) {
517
-						$args[] = get_resource_type( $arg );
512
+					} elseif (is_bool($arg)) {
513
+						$args[] = ($arg) ? ' TRUE' : ' FALSE';
514
+					} elseif (is_object($arg)) {
515
+						$args[] = ' OBJECT '.get_class($arg);
516
+					} elseif (is_resource($arg)) {
517
+						$args[] = get_resource_type($arg);
518 518
 					} else {
519 519
 						$args[] = $arg;
520 520
 					}
@@ -522,9 +522,9 @@  discard block
 block discarded – undo
522 522
 				}
523 523
 
524 524
 			}
525
-			$arg_string = implode( ', ', $args );
525
+			$arg_string = implode(', ', $args);
526 526
 		}
527
-		if ( $array ) {
527
+		if ($array) {
528 528
 			$arg_string .= ' )';
529 529
 		}
530 530
 		return $arg_string;
@@ -544,8 +544,8 @@  discard block
 block discarded – undo
544 544
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
545 545
 	* 	@return 		void
546 546
 	*/
547
-	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
548
-		self::_add_notice ( 'errors', $msg, $file, $func, $line );
547
+	public static function add_error($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
548
+		self::_add_notice('errors', $msg, $file, $func, $line);
549 549
 		self::$_error_count++;
550 550
 	}
551 551
 
@@ -558,11 +558,11 @@  discard block
 block discarded – undo
558 558
 	 * @param string $line
559 559
 	 * @throws EE_Error
560 560
 	 */
561
-	public static function throw_exception_if_debugging( $msg = null, $file = null, $func = null, $line = null ) {
562
-		if( WP_DEBUG ) {
563
-			throw new EE_Error( $msg );
564
-		} else  {
565
-			EE_Error::add_error( $msg, $file, $func, $line );
561
+	public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) {
562
+		if (WP_DEBUG) {
563
+			throw new EE_Error($msg);
564
+		} else {
565
+			EE_Error::add_error($msg, $file, $func, $line);
566 566
 		}
567 567
 	}
568 568
 
@@ -580,8 +580,8 @@  discard block
 block discarded – undo
580 580
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
581 581
 	* 	@return 		void
582 582
 	*/
583
-	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
584
-		self::_add_notice ( 'success', $msg, $file, $func, $line );
583
+	public static function add_success($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
584
+		self::_add_notice('success', $msg, $file, $func, $line);
585 585
 	}
586 586
 
587 587
 
@@ -598,8 +598,8 @@  discard block
 block discarded – undo
598 598
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
599 599
 	* 	@return 		void
600 600
 	*/
601
-	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
602
-		self::_add_notice ( 'attention', $msg, $file, $func, $line );
601
+	public static function add_attention($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
602
+		self::_add_notice('attention', $msg, $file, $func, $line);
603 603
 	}
604 604
 
605 605
 
@@ -617,12 +617,12 @@  discard block
 block discarded – undo
617 617
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
618 618
 	* 	@return 		void
619 619
 	*/
620
-	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
621
-		if ( empty( $msg )) {
620
+	private static function _add_notice($type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
621
+		if (empty($msg)) {
622 622
 			EE_Error::doing_it_wrong(
623
-				'EE_Error::add_' . $type . '()',
623
+				'EE_Error::add_'.$type.'()',
624 624
 				sprintf(
625
-					__( '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' ),
625
+					__('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'),
626 626
 					$type,
627 627
 					$file,
628 628
 					$line
@@ -630,17 +630,17 @@  discard block
 block discarded – undo
630 630
 				EVENT_ESPRESSO_VERSION
631 631
 			);
632 632
 		}
633
-		if ( $type == 'errors' && ( empty( $file ) || empty( $func ) || empty( $line ))) {
633
+		if ($type == 'errors' && (empty($file) || empty($func) || empty($line))) {
634 634
 			EE_Error::doing_it_wrong(
635 635
 				'EE_Error::add_error()',
636
-				__('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' ),
636
+				__('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'),
637 637
 				EVENT_ESPRESSO_VERSION
638 638
 			);
639 639
 		}
640 640
 		// get separate user and developer messages if they exist
641
-		$msg = explode( '||', $msg );
641
+		$msg = explode('||', $msg);
642 642
 		$user_msg = $msg[0];
643
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
643
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
644 644
 		/**
645 645
 		 * Do an action so other code can be triggered when a notice is created
646 646
 		 * @param string $type can be 'errors', 'attention', or 'success'
@@ -650,22 +650,22 @@  discard block
 block discarded – undo
650 650
 		 * @param string $func function where error was generated
651 651
 		 * @param string $line line where error was generated
652 652
 		 */
653
-		do_action( 'AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line );
653
+		do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line);
654 654
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
655 655
 		// add notice if message exists
656
-		if ( ! empty( $msg )) {
656
+		if ( ! empty($msg)) {
657 657
 			// get error code
658
-			$notice_code = EE_Error::generate_error_code( $file, $func, $line );
659
-			if ( WP_DEBUG && $type == 'errors' ) {
660
-				$msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>';
658
+			$notice_code = EE_Error::generate_error_code($file, $func, $line);
659
+			if (WP_DEBUG && $type == 'errors') {
660
+				$msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>';
661 661
 			}
662 662
 			// add notice. Index by code if it's not blank
663
-			if( $notice_code ) {
664
-				self::$_espresso_notices[ $type ][ $notice_code ] = $msg;
663
+			if ($notice_code) {
664
+				self::$_espresso_notices[$type][$notice_code] = $msg;
665 665
 			} else {
666
-				self::$_espresso_notices[ $type ][] = $msg;
666
+				self::$_espresso_notices[$type][] = $msg;
667 667
 			}
668
-			add_action( 'wp_footer', array( 'EE_Error', 'enqueue_error_scripts' ), 1 );
668
+			add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1);
669 669
 		}
670 670
 
671 671
 	}
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
 	*	@access private
720 720
 	*	@return void
721 721
 	*/
722
-	public static function reset_notices(){
722
+	public static function reset_notices() {
723 723
     	self::$_espresso_notices['success'] = FALSE;
724 724
     	self::$_espresso_notices['attention'] = FALSE;
725 725
     	self::$_espresso_notices['errors'] = FALSE;
@@ -732,14 +732,14 @@  discard block
 block discarded – undo
732 732
 	*	@access public
733 733
 	*	@return int
734 734
 	*/
735
-    public static function has_notices(){
735
+    public static function has_notices() {
736 736
 		$has_notices = 0;
737 737
 		// check for success messages
738
-		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
738
+		$has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) ? 3 : $has_notices;
739 739
 		// check for attention messages
740
-		$has_notices = self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ? 2 : $has_notices;
740
+		$has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) ? 2 : $has_notices;
741 741
 		// check for error messages
742
-		$has_notices = self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ? 1 : $has_notices;
742
+		$has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) ? 1 : $has_notices;
743 743
 		return $has_notices;
744 744
 	}
745 745
 
@@ -754,9 +754,9 @@  discard block
 block discarded – undo
754 754
 	 */
755 755
 	public static function get_vanilla_notices() {
756 756
 		return array(
757
-			'success' => isset( self::$_espresso_notices['success'] ) ? self::$_espresso_notices['success'] : array(),
758
-			'attention' => isset( self::$_espresso_notices['attention'] )  ? self::$_espresso_notices['attention'] : array(),
759
-			'errors' => isset( self::$_espresso_notices['errors'] ) ? self::$_espresso_notices['errors'] : array(),
757
+			'success' => isset(self::$_espresso_notices['success']) ? self::$_espresso_notices['success'] : array(),
758
+			'attention' => isset(self::$_espresso_notices['attention']) ? self::$_espresso_notices['attention'] : array(),
759
+			'errors' => isset(self::$_espresso_notices['errors']) ? self::$_espresso_notices['errors'] : array(),
760 760
 		);
761 761
 	}
762 762
 
@@ -772,8 +772,8 @@  discard block
 block discarded – undo
772 772
 	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
773 773
 	* 	@return 		array
774 774
 	*/
775
-	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
776
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
775
+	public static function get_notices($format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE) {
776
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
777 777
 
778 778
 		$success_messages = '';
779 779
 		$attention_messages = '';
@@ -783,44 +783,44 @@  discard block
 block discarded – undo
783 783
 		// 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' );
784 784
 
785 785
 		// either save notices to the db
786
-		if ( $save_to_transient ) {
787
-			update_option( 'ee_notices', self::$_espresso_notices );
786
+		if ($save_to_transient) {
787
+			update_option('ee_notices', self::$_espresso_notices);
788 788
 			return;
789 789
 		}
790 790
 		// grab any notices that have been previously saved
791
-		if ( $notices = get_option( 'ee_notices', FALSE )) {
792
-			foreach ( $notices as $type => $notice ) {
793
-				if ( is_array( $notice ) && ! empty( $notice )) {
791
+		if ($notices = get_option('ee_notices', FALSE)) {
792
+			foreach ($notices as $type => $notice) {
793
+				if (is_array($notice) && ! empty($notice)) {
794 794
 					// make sure that existsing notice type is an array
795
-					self::$_espresso_notices[ $type ] =  is_array( self::$_espresso_notices[ $type ] ) && ! empty( self::$_espresso_notices[ $type ] ) ? self::$_espresso_notices[ $type ] : array();
795
+					self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) && ! empty(self::$_espresso_notices[$type]) ? self::$_espresso_notices[$type] : array();
796 796
 					// merge stored notices with any newly created ones
797
-					self::$_espresso_notices[ $type ] = array_merge( self::$_espresso_notices[ $type ], $notice );
797
+					self::$_espresso_notices[$type] = array_merge(self::$_espresso_notices[$type], $notice);
798 798
 					$print_scripts = TRUE;
799 799
 				}
800 800
 			}
801 801
 			// now clear any stored notices
802
-			update_option( 'ee_notices', FALSE );
802
+			update_option('ee_notices', FALSE);
803 803
 		}
804 804
 
805 805
 		// check for success messages
806
-		if ( self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] )) {
806
+		if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) {
807 807
 			// combine messages
808
-			$success_messages .= implode( self::$_espresso_notices['success'], '<br />' );
808
+			$success_messages .= implode(self::$_espresso_notices['success'], '<br />');
809 809
 			$print_scripts = TRUE;
810 810
 		}
811 811
 
812 812
 		// check for attention messages
813
-		if ( self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ) {
813
+		if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) {
814 814
 			// combine messages
815
-			$attention_messages .= implode( self::$_espresso_notices['attention'], '<br />' );
815
+			$attention_messages .= implode(self::$_espresso_notices['attention'], '<br />');
816 816
 			$print_scripts = TRUE;
817 817
 		}
818 818
 
819 819
 		// check for error messages
820
-		if ( self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ) {
821
-			$error_messages .= count( self::$_espresso_notices['errors'] ) > 1 ? __( 'The following errors have occurred:<br />', 'event_espresso' ) : __( 'An error has occurred:<br />', 'event_espresso' );
820
+		if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) {
821
+			$error_messages .= count(self::$_espresso_notices['errors']) > 1 ? __('The following errors have occurred:<br />', 'event_espresso') : __('An error has occurred:<br />', 'event_espresso');
822 822
 			// combine messages
823
-			$error_messages .= implode( self::$_espresso_notices['errors'], '<br />' );
823
+			$error_messages .= implode(self::$_espresso_notices['errors'], '<br />');
824 824
 			$print_scripts = TRUE;
825 825
 		}
826 826
 
@@ -834,21 +834,21 @@  discard block
 block discarded – undo
834 834
 				$css_id = is_admin() ? 'message' : 'espresso-notices-success';
835 835
 				$css_class = is_admin() ? 'updated fade' : 'success fade-away';
836 836
 				//showMessage( $success_messages );
837
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $success_messages . '</p>' . $close . '</div>';
837
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$success_messages.'</p>'.$close.'</div>';
838 838
 			}
839 839
 
840 840
 			if ($attention_messages != '') {
841 841
 				$css_id = is_admin() ? 'message' : 'espresso-notices-attention';
842 842
 				$css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away';
843 843
 				//showMessage( $error_messages, TRUE );
844
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $attention_messages . '</p>' . $close . '</div>';
844
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$attention_messages.'</p>'.$close.'</div>';
845 845
 			}
846 846
 
847 847
 			if ($error_messages != '') {
848 848
 				$css_id = is_admin() ? 'message' : 'espresso-notices-error';
849 849
 				$css_class = is_admin() ? 'error' : 'error fade-away';
850 850
 				//showMessage( $error_messages, TRUE );
851
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $error_messages . '</p>' . $close . '</div>';
851
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$error_messages.'</p>'.$close.'</div>';
852 852
 			}
853 853
 
854 854
 			$notices .= '</div>';
@@ -861,7 +861,7 @@  discard block
 block discarded – undo
861 861
 					'errors' => $error_messages
862 862
 			);
863 863
 
864
-			if ( $remove_empty ) {
864
+			if ($remove_empty) {
865 865
 				// remove empty notices
866 866
 				foreach ($notices as $type => $notice) {
867 867
 					if (empty($notice)) {
@@ -871,7 +871,7 @@  discard block
 block discarded – undo
871 871
 			}
872 872
 		}
873 873
 
874
-		if ( $print_scripts ) {
874
+		if ($print_scripts) {
875 875
 			self::_print_scripts();
876 876
 		}
877 877
 
@@ -891,17 +891,17 @@  discard block
 block discarded – undo
891 891
 	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
892 892
 	* 	@return 		void
893 893
 	*/
894
-	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
895
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
896
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
894
+	public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = FALSE) {
895
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
896
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
897 897
 			//maybe initialize persistent_admin_notices
898
-			if ( empty( $persistent_admin_notices )) {
899
-				add_option( 'ee_pers_admin_notices', array(), '', 'no' );
898
+			if (empty($persistent_admin_notices)) {
899
+				add_option('ee_pers_admin_notices', array(), '', 'no');
900 900
 			}
901
-			$pan_name = sanitize_key( $pan_name );
902
-			if ( ! array_key_exists( $pan_name, $persistent_admin_notices ) || $force_update ) {
903
-				$persistent_admin_notices[ $pan_name ] = $pan_message;
904
-				update_option( 'ee_pers_admin_notices', $persistent_admin_notices );
901
+			$pan_name = sanitize_key($pan_name);
902
+			if ( ! array_key_exists($pan_name, $persistent_admin_notices) || $force_update) {
903
+				$persistent_admin_notices[$pan_name] = $pan_message;
904
+				update_option('ee_pers_admin_notices', $persistent_admin_notices);
905 905
 			}
906 906
 		}
907 907
 	}
@@ -917,34 +917,34 @@  discard block
 block discarded – undo
917 917
 	 * @param bool          $return_immediately
918 918
 	 * @return        void
919 919
 	 */
920
-	public static function dismiss_persistent_admin_notice( $pan_name = '', $purge = FALSE, $return_immediately = FALSE ) {
921
-		$pan_name = EE_Registry::instance()->REQ->is_set( 'ee_nag_notice' ) ? EE_Registry::instance()->REQ->get( 'ee_nag_notice' ) : $pan_name;
922
-		if ( ! empty( $pan_name )) {
923
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
920
+	public static function dismiss_persistent_admin_notice($pan_name = '', $purge = FALSE, $return_immediately = FALSE) {
921
+		$pan_name = EE_Registry::instance()->REQ->is_set('ee_nag_notice') ? EE_Registry::instance()->REQ->get('ee_nag_notice') : $pan_name;
922
+		if ( ! empty($pan_name)) {
923
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
924 924
 			// check if notice we wish to dismiss is actually in the $persistent_admin_notices array
925
-			if ( is_array( $persistent_admin_notices ) && isset( $persistent_admin_notices[ $pan_name ] )) {
925
+			if (is_array($persistent_admin_notices) && isset($persistent_admin_notices[$pan_name])) {
926 926
 				// completely delete nag notice, or just NULL message so that it can NOT be added again ?
927
-				if ( $purge ) {
928
-					unset( $persistent_admin_notices[ $pan_name ] );
927
+				if ($purge) {
928
+					unset($persistent_admin_notices[$pan_name]);
929 929
 				} else {
930
-					$persistent_admin_notices[ $pan_name ] = NULL;
930
+					$persistent_admin_notices[$pan_name] = NULL;
931 931
 				}
932
-				if ( update_option( 'ee_pers_admin_notices', $persistent_admin_notices ) === FALSE ) {
933
-					EE_Error::add_error( sprintf( __( 'The persistent admin notice for "%s" could not be deleted.', 'event_espresso' ), $pan_name ), __FILE__, __FUNCTION__, __LINE__ );
932
+				if (update_option('ee_pers_admin_notices', $persistent_admin_notices) === FALSE) {
933
+					EE_Error::add_error(sprintf(__('The persistent admin notice for "%s" could not be deleted.', 'event_espresso'), $pan_name), __FILE__, __FUNCTION__, __LINE__);
934 934
 				}
935 935
 			}
936 936
 		}
937
-		if ( $return_immediately ) {
937
+		if ($return_immediately) {
938 938
 			return;
939
-		} else if ( EE_Registry::instance()->REQ->ajax ) {
939
+		} else if (EE_Registry::instance()->REQ->ajax) {
940 940
 			// grab any notices and concatenate into string
941
-			echo json_encode( array( 'errors' => implode( '<br />', EE_Error::get_notices( FALSE ))));
941
+			echo json_encode(array('errors' => implode('<br />', EE_Error::get_notices(FALSE))));
942 942
 			exit();
943 943
 		} else {
944 944
 			// save errors to a transient to be displayed on next request (after redirect)
945
-			EE_Error::get_notices( FALSE, TRUE );
946
-			$return_url = EE_Registry::instance()->REQ->is_set( 'return_url' ) ? EE_Registry::instance()->REQ->get( 'return_url' ) : '';
947
-			wp_safe_redirect( urldecode( $return_url ));
945
+			EE_Error::get_notices(FALSE, TRUE);
946
+			$return_url = EE_Registry::instance()->REQ->is_set('return_url') ? EE_Registry::instance()->REQ->get('return_url') : '';
947
+			wp_safe_redirect(urldecode($return_url));
948 948
 		}
949 949
 	}
950 950
 
@@ -959,20 +959,20 @@  discard block
 block discarded – undo
959 959
 	* 	@param		string	$return_url	URL to go back to aftger nag notice is dismissed
960 960
 	 *  	@return 		string
961 961
 	 */
962
-	public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) {
963
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
962
+	public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') {
963
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
964 964
 			$args = array(
965 965
 				'nag_notice' => $pan_name,
966
-				'return_url' => urlencode( $return_url ),
966
+				'return_url' => urlencode($return_url),
967 967
 				'ajax_url' => WP_AJAX_URL,
968
-				'unknown_error' => __( 'An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso' )
968
+				'unknown_error' => __('An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso')
969 969
 			);
970
-			wp_localize_script( 'espresso_core', 'ee_dismiss', $args );
970
+			wp_localize_script('espresso_core', 'ee_dismiss', $args);
971 971
 			return '
972
-			<div id="' . $pan_name . '" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
973
-				<p>' . $pan_message . '</p>
974
-				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name . '">
975
-					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__( 'Dismiss', 'event_espresso' ) .'
972
+			<div id="' . $pan_name.'" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
973
+				<p>' . $pan_message.'</p>
974
+				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name.'">
975
+					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__('Dismiss', 'event_espresso').'
976 976
 				</a>
977 977
 				<div style="clear:both;"></div>
978 978
 			</div>';
@@ -988,24 +988,24 @@  discard block
 block discarded – undo
988 988
 	 * @param string $return_url
989 989
 	 * @return    array
990 990
 	 */
991
-	public static function get_persistent_admin_notices( $return_url = '' ) {
991
+	public static function get_persistent_admin_notices($return_url = '') {
992 992
 		$notices = '';
993 993
 		// check for persistent admin notices
994 994
 		//filter the list though so plugins can notify the admin in a different way if they want
995 995
 		$persistent_admin_notices = apply_filters(
996 996
 			'FHEE__EE_Error__get_persistent_admin_notices',
997
-			get_option( 'ee_pers_admin_notices', FALSE ),
997
+			get_option('ee_pers_admin_notices', FALSE),
998 998
 			'ee_pers_admin_notices',
999 999
 			$return_url
1000 1000
 		);
1001
-		if ( $persistent_admin_notices ) {
1001
+		if ($persistent_admin_notices) {
1002 1002
 			// load scripts
1003
-			wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
1004
-			wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE );
1005
-			wp_enqueue_script( 'ee_error_js' );
1003
+			wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
1004
+			wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE);
1005
+			wp_enqueue_script('ee_error_js');
1006 1006
 			// and display notices
1007
-			foreach( $persistent_admin_notices as $pan_name => $pan_message ) {
1008
-				$notices .= self::display_persistent_admin_notices( $pan_name, $pan_message, $return_url );
1007
+			foreach ($persistent_admin_notices as $pan_name => $pan_message) {
1008
+				$notices .= self::display_persistent_admin_notices($pan_name, $pan_message, $return_url);
1009 1009
 			}
1010 1010
 		}
1011 1011
 		return $notices;
@@ -1020,26 +1020,26 @@  discard block
 block discarded – undo
1020 1020
 	 * @param 	bool $force_print
1021 1021
 	 * @return 	void
1022 1022
 	 */
1023
-	private static function _print_scripts( $force_print = FALSE ) {
1024
-		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
1025
-			if ( wp_script_is( 'ee_error_js', 'enqueued' )) {
1023
+	private static function _print_scripts($force_print = FALSE) {
1024
+		if ((did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts')) && ! $force_print) {
1025
+			if (wp_script_is('ee_error_js', 'enqueued')) {
1026 1026
 				return;
1027
-			} else if ( wp_script_is( 'ee_error_js', 'registered' )) {
1028
-				add_filter( 'FHEE_load_css', '__return_true' );
1029
-				add_filter( 'FHEE_load_js', '__return_true' );
1030
-				wp_enqueue_script( 'ee_error_js' );
1031
-				wp_localize_script( 'ee_error_js','ee_settings', array( 'wp_debug'=>WP_DEBUG ));
1027
+			} else if (wp_script_is('ee_error_js', 'registered')) {
1028
+				add_filter('FHEE_load_css', '__return_true');
1029
+				add_filter('FHEE_load_js', '__return_true');
1030
+				wp_enqueue_script('ee_error_js');
1031
+				wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug'=>WP_DEBUG));
1032 1032
 			}
1033 1033
 		} else {
1034 1034
 			return '
1035 1035
 <script>
1036 1036
 /* <![CDATA[ */
1037
-var ee_settings = {"wp_debug":"' . WP_DEBUG . '"};
1037
+var ee_settings = {"wp_debug":"' . WP_DEBUG.'"};
1038 1038
 /* ]]> */
1039 1039
 </script>
1040
-<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script>
1041
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1042
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1040
+<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script>
1041
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1042
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1043 1043
 ';
1044 1044
 
1045 1045
 		}
@@ -1073,11 +1073,11 @@  discard block
 block discarded – undo
1073 1073
 	*	@ param string $line
1074 1074
 	*	@ return string
1075 1075
 	*/
1076
-	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1077
-		$file = explode( '.', basename( $file ));
1078
-		$error_code = ! empty( $file[0] ) ? $file[0] : '';
1079
-		$error_code .= ! empty( $func ) ? ' - ' . $func : '';
1080
-		$error_code .= ! empty( $line ) ? ' - ' . $line : '';
1076
+	public static function generate_error_code($file = '', $func = '', $line = '') {
1077
+		$file = explode('.', basename($file));
1078
+		$error_code = ! empty($file[0]) ? $file[0] : '';
1079
+		$error_code .= ! empty($func) ? ' - '.$func : '';
1080
+		$error_code .= ! empty($line) ? ' - '.$line : '';
1081 1081
 		return $error_code;
1082 1082
 	}
1083 1083
 
@@ -1093,36 +1093,36 @@  discard block
 block discarded – undo
1093 1093
 	*	@ param object $ex
1094 1094
 	*	@ return void
1095 1095
 	*/
1096
-	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1096
+	public function write_to_error_log($time = FALSE, $ex = FALSE, $clear = FALSE) {
1097 1097
 
1098
-		if ( ! $ex ) {
1098
+		if ( ! $ex) {
1099 1099
 			return;
1100 1100
 		}
1101 1101
 
1102
-		if ( ! $time ) {
1102
+		if ( ! $time) {
1103 1103
 			$time = time();
1104 1104
 		}
1105 1105
 
1106
-		$exception_log = '----------------------------------------------------------------------------------------' . PHP_EOL;
1107
-		$exception_log .= '[' . date( 'Y-m-d H:i:s', $time ) . ']  Exception Details' . PHP_EOL;
1108
-		$exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL;
1109
-		$exception_log .= 'Code: '. $ex['code'] . PHP_EOL;
1110
-		$exception_log .= 'File: '. $ex['file'] . PHP_EOL;
1111
-		$exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL;
1112
-		$exception_log .= 'Stack trace: ' . PHP_EOL;
1113
-		$exception_log .= $ex['string'] . PHP_EOL;
1114
-		$exception_log .= '----------------------------------------------------------------------------------------' . PHP_EOL;
1106
+		$exception_log = '----------------------------------------------------------------------------------------'.PHP_EOL;
1107
+		$exception_log .= '['.date('Y-m-d H:i:s', $time).']  Exception Details'.PHP_EOL;
1108
+		$exception_log .= 'Message: '.$ex['msg'].PHP_EOL;
1109
+		$exception_log .= 'Code: '.$ex['code'].PHP_EOL;
1110
+		$exception_log .= 'File: '.$ex['file'].PHP_EOL;
1111
+		$exception_log .= 'Line No: '.$ex['line'].PHP_EOL;
1112
+		$exception_log .= 'Stack trace: '.PHP_EOL;
1113
+		$exception_log .= $ex['string'].PHP_EOL;
1114
+		$exception_log .= '----------------------------------------------------------------------------------------'.PHP_EOL;
1115 1115
 
1116 1116
 		try {
1117
-			EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file );
1118
-			EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' );
1119
-			if ( ! $clear ) {
1117
+			EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file);
1118
+			EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs');
1119
+			if ( ! $clear) {
1120 1120
 				//get existing log file and append new log info
1121
-				$exception_log = EEH_File::get_file_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ) . $exception_log;
1121
+				$exception_log = EEH_File::get_file_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file).$exception_log;
1122 1122
 			}
1123
-			EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file, $exception_log );
1124
-		} catch( EE_Error $e ){
1125
-			EE_Error::add_error( sprintf( __(  'Event Espresso error logging could not be setup because: %s', 'event_espresso' ), $e->getMessage() ));
1123
+			EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file, $exception_log);
1124
+		} catch (EE_Error $e) {
1125
+			EE_Error::add_error(sprintf(__('Event Espresso error logging could not be setup because: %s', 'event_espresso'), $e->getMessage()));
1126 1126
 			return;
1127 1127
 		}
1128 1128
 
@@ -1158,8 +1158,8 @@  discard block
 block discarded – undo
1158 1158
 		$applies_when = '',
1159 1159
 		$error_type = null
1160 1160
 	) {
1161
-		if ( defined('WP_DEBUG') && WP_DEBUG ) {
1162
-			EEH_Debug_Tools::instance()->doing_it_wrong( $function, $message, $version, $applies_when, $error_type );
1161
+		if (defined('WP_DEBUG') && WP_DEBUG) {
1162
+			EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type);
1163 1163
 		}
1164 1164
 	}
1165 1165
 
@@ -1193,13 +1193,13 @@  discard block
 block discarded – undo
1193 1193
  */
1194 1194
 function espresso_error_enqueue_scripts() {
1195 1195
 	// js for error handling
1196
-	wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE );
1197
-	wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE );
1196
+	wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE);
1197
+	wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE);
1198 1198
 }
1199
-if ( is_admin() ) {
1200
-	add_action( 'admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1199
+if (is_admin()) {
1200
+	add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1201 1201
 } else {
1202
-	add_action( 'wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1202
+	add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1203 1203
 }
1204 1204
 
1205 1205
 
Please login to merge, or discard this patch.