Completed
Branch FET-9998-unit-test-bootstrappi... (db3cac)
by
unknown
108:00 queued 97:50
created
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 4 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 // 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.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 *    error_handler
90 90
 	 * @access public
91
-	 * @param $code
91
+	 * @param integer $code
92 92
 	 * @param $message
93 93
 	 * @param $file
94 94
 	 * @param $line
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	/**
190 190
 	 *    _format_error
191 191
 	 * @access private
192
-	 * @param $code
192
+	 * @param string $code
193 193
 	 * @param $message
194 194
 	 * @param $file
195 195
 	 * @param $line
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
 	 *
943 943
 	 * @access    public
944 944
 	 * @param string $return_url
945
-	 * @return    array
945
+	 * @return    string
946 946
 	 */
947 947
 	public static function get_persistent_admin_notices( $return_url = '' ) {
948 948
 		$notices = '';
@@ -967,7 +967,7 @@  discard block
 block discarded – undo
967 967
 	 *
968 968
 	 * @access 	public
969 969
 	 * @param 	bool $force_print
970
-	 * @return 	void
970
+	 * @return 	null|string
971 971
 	 */
972 972
 	private static function _print_scripts( $force_print = FALSE ) {
973 973
 		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
@@ -1105,7 +1105,7 @@  discard block
 block discarded – undo
1105 1105
 	
1106 1106
 	/**
1107 1107
 	 * Like get_notices, but returns an array of all the notices of the given type.
1108
-	 * @return array {
1108
+	 * @return boolean {
1109 1109
 	 *	@type array $success all the success messages
1110 1110
 	 *	@type array $errors all the error messages
1111 1111
 	 *	@type array $attention all the attention messages
Please login to merge, or discard this patch.
Indentation   +170 added lines, -170 removed lines patch added patch discarded remove patch
@@ -18,52 +18,52 @@  discard block
 block discarded – undo
18 18
 
19 19
 
20 20
 	/**
21
-	* 	name of the file to log exceptions to
22
-	* 	@access	private
23
-    *	@var string
24
-	*/
21
+	 * 	name of the file to log exceptions to
22
+	 * 	@access	private
23
+	 *	@var string
24
+	 */
25 25
 	private static $_exception_log_file = 'espresso_error_log.txt';
26 26
 
27 27
 	/**
28
-	* 	the exception
29
-	* 	@access	private
30
-    *	@var object
31
-	*/
28
+	 * 	the exception
29
+	 * 	@access	private
30
+	 *	@var object
31
+	 */
32 32
 	private $_exception;
33 33
 
34 34
 	/**
35
-	* 	stores details for all exception
36
-	* 	@access	private
37
-    *	@var array
38
-	*/
35
+	 * 	stores details for all exception
36
+	 * 	@access	private
37
+	 *	@var array
38
+	 */
39 39
 	private static $_all_exceptions = array();
40 40
 
41 41
 	/**
42
-	* 	tracks number of errors
43
-	* 	@access	private
44
-    *	@var int
45
-	*/
42
+	 * 	tracks number of errors
43
+	 * 	@access	private
44
+	 *	@var int
45
+	 */
46 46
 	private static $_error_count = 0;
47 47
 
48 48
 	/**
49
-	* 	has JS been loaded ?
50
-	* 	@access	private
51
-    *	@var boolean
52
-	*/
49
+	 * 	has JS been loaded ?
50
+	 * 	@access	private
51
+	 *	@var boolean
52
+	 */
53 53
 	private static $_js_loaded = FALSE;
54 54
 
55 55
 	/**
56
-	* 	has shutdown action been added ?
57
-	* 	@access	private
58
-    *	@var boolean
59
-	*/
56
+	 * 	has shutdown action been added ?
57
+	 * 	@access	private
58
+	 *	@var boolean
59
+	 */
60 60
 	private static $_action_added = FALSE;
61 61
 
62 62
 	/**
63
-	* 	has shutdown action been added ?
64
-	* 	@access	private
65
-    *	@var boolean
66
-	*/
63
+	 * 	has shutdown action been added ?
64
+	 * 	@access	private
65
+	 *	@var boolean
66
+	 */
67 67
 	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
68 68
 
69 69
 
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
 
72 72
 
73 73
 	/**
74
-	*	@override default exception handling
75
-	*	@access public
76
-	*	@echo string
77
-	*/
74
+	 *	@override default exception handling
75
+	 *	@access public
76
+	 *	@echo string
77
+	 */
78 78
 	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79 79
 		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80 80
 			parent::__construct( $message, $code );
@@ -173,10 +173,10 @@  discard block
 block discarded – undo
173 173
 
174 174
 
175 175
 	/**
176
-	*	fatal_error_handler
177
-	*	@access public
178
-	*	@return void
179
-	*/
176
+	 *	fatal_error_handler
177
+	 *	@access public
178
+	 *	@return void
179
+	 */
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182 182
 		if ( $last_error['type'] === E_ERROR ) {
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
 
222 222
 
223 223
 	/**
224
-	*	_add_actions
225
-	*	@access public
226
-	*	@return void
227
-	*/
228
-    public function get_error() {
224
+	 *	_add_actions
225
+	 *	@access public
226
+	 *	@return void
227
+	 */
228
+	public function get_error() {
229 229
 
230 230
 		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
231 231
 			throw $this;
@@ -261,27 +261,27 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
265
-	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
270
-				    return true;
271
-			    }
272
-		    }
273
-	    }
274
-	    return $has_error;
275
-    }
264
+	public static function has_error( $check_stored = false ){
265
+		$has_error = self::$_error_count ? true : false;
266
+		if ( $check_stored && ! $has_error ) {
267
+			$notices = (array) get_option( 'ee_notices', array() );
268
+			foreach ( $notices as $type => $notice ) {
269
+				if ( $type === 'errors' && $notice ) {
270
+					return true;
271
+				}
272
+			}
273
+		}
274
+		return $has_error;
275
+	}
276 276
 
277 277
 
278 278
 
279 279
 	/**
280
-	*	display_errors
281
-	*	@access public
282
-	*	@echo string
283
-	*/
284
-    public function display_errors(){
280
+	 *	display_errors
281
+	 *	@access public
282
+	 *	@echo string
283
+	 */
284
+	public function display_errors(){
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
 			// process trace info
354 354
 			if ( empty( $ex['trace'] )) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+				$trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
357 357
 
358 358
 			} else {
359 359
 
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406 406
 					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
407 407
 
408
-		              $trace_details .= '
408
+					  $trace_details .= '
409 409
 					<tr>
410 410
 						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411 411
 						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 
418 418
 				}
419 419
 
420
-	            $trace_details .= '
420
+				$trace_details .= '
421 421
 			 </table>
422 422
 			</div>';
423 423
 
@@ -497,12 +497,12 @@  discard block
 block discarded – undo
497 497
 
498 498
 
499 499
 	/**
500
-	*	generate string from exception trace args
501
-	*
502
-	*	@access private
503
-	*	@ param array $arguments
504
-	*	@ return string
505
-	*/
500
+	 *	generate string from exception trace args
501
+	 *
502
+	 *	@access private
503
+	 *	@ param array $arguments
504
+	 *	@ return string
505
+	 */
506 506
 	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
507 507
 
508 508
 		$arg_string = '';
@@ -546,15 +546,15 @@  discard block
 block discarded – undo
546 546
 
547 547
 
548 548
 	/**
549
-	* 	add error message
550
-	*
551
-	*	@access public
552
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
-	* 	@return 		void
557
-	*/
549
+	 * 	add error message
550
+	 *
551
+	 *	@access public
552
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
+	 * 	@return 		void
557
+	 */
558 558
 	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559 559
 		self::_add_notice ( 'errors', $msg, $file, $func, $line );
560 560
 		self::$_error_count++;
@@ -582,15 +582,15 @@  discard block
 block discarded – undo
582 582
 
583 583
 
584 584
 	/**
585
-	* 	add success message
586
-	*
587
-	*	@access public
588
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
-	* 	@return 		void
593
-	*/
585
+	 * 	add success message
586
+	 *
587
+	 *	@access public
588
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
+	 * 	@return 		void
593
+	 */
594 594
 	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595 595
 		self::_add_notice ( 'success', $msg, $file, $func, $line );
596 596
 	}
@@ -600,15 +600,15 @@  discard block
 block discarded – undo
600 600
 
601 601
 
602 602
 	/**
603
-	* 	add attention message
604
-	*
605
-	*	@access public
606
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
-	* 	@return 		void
611
-	*/
603
+	 * 	add attention message
604
+	 *
605
+	 *	@access public
606
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
+	 * 	@return 		void
611
+	 */
612 612
 	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613 613
 		self::_add_notice ( 'attention', $msg, $file, $func, $line );
614 614
 	}
@@ -618,16 +618,16 @@  discard block
 block discarded – undo
618 618
 
619 619
 
620 620
 	/**
621
-	* 	add success message
622
-	*
623
-	*	@access public
624
-	* 	@param		string		$type	whether the message is for a success or error notification
625
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
-	* 	@return 		void
630
-	*/
621
+	 * 	add success message
622
+	 *
623
+	 *	@access public
624
+	 * 	@param		string		$type	whether the message is for a success or error notification
625
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
+	 * 	@return 		void
630
+	 */
631 631
 	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632 632
 		if ( empty( $msg )) {
633 633
 			EE_Error::doing_it_wrong(
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
 
687 687
 
688 688
 	/**
689
-	* 	in some case it may be necessary to overwrite the existing success messages
690
-	*
691
-	*	@access public
692
-	* 	@return 		void
693
-	*/
689
+	 * 	in some case it may be necessary to overwrite the existing success messages
690
+	 *
691
+	 *	@access public
692
+	 * 	@return 		void
693
+	 */
694 694
 	public static function overwrite_success() {
695 695
 		self::$_espresso_notices['success'] = FALSE;
696 696
 	}
@@ -700,11 +700,11 @@  discard block
 block discarded – undo
700 700
 
701 701
 
702 702
 	/**
703
-	* 	in some case it may be necessary to overwrite the existing attention messages
704
-	*
705
-	*	@access public
706
-	* 	@return 		void
707
-	*/
703
+	 * 	in some case it may be necessary to overwrite the existing attention messages
704
+	 *
705
+	 *	@access public
706
+	 * 	@return 		void
707
+	 */
708 708
 	public static function overwrite_attention() {
709 709
 		self::$_espresso_notices['attention'] = FALSE;
710 710
 	}
@@ -714,11 +714,11 @@  discard block
 block discarded – undo
714 714
 
715 715
 
716 716
 	/**
717
-	* 	in some case it may be necessary to overwrite the existing error messages
718
-	*
719
-	*	@access public
720
-	* 	@return 		void
721
-	*/
717
+	 * 	in some case it may be necessary to overwrite the existing error messages
718
+	 *
719
+	 *	@access public
720
+	 * 	@return 		void
721
+	 */
722 722
 	public static function overwrite_errors() {
723 723
 		self::$_espresso_notices['errors'] = FALSE;
724 724
 	}
@@ -726,24 +726,24 @@  discard block
 block discarded – undo
726 726
 
727 727
 
728 728
 	/**
729
-	*	reset_notices
730
-	*	@access private
731
-	*	@return void
732
-	*/
729
+	 *	reset_notices
730
+	 *	@access private
731
+	 *	@return void
732
+	 */
733 733
 	public static function reset_notices(){
734
-    	self::$_espresso_notices['success'] = FALSE;
735
-    	self::$_espresso_notices['attention'] = FALSE;
736
-    	self::$_espresso_notices['errors'] = FALSE;
737
-    }
734
+		self::$_espresso_notices['success'] = FALSE;
735
+		self::$_espresso_notices['attention'] = FALSE;
736
+		self::$_espresso_notices['errors'] = FALSE;
737
+	}
738 738
 
739 739
 
740 740
 
741 741
 	/**
742
-	*	has_errors
743
-	*	@access public
744
-	*	@return int
745
-	*/
746
-    public static function has_notices(){
742
+	 *	has_errors
743
+	 *	@access public
744
+	 *	@return int
745
+	 */
746
+	public static function has_notices(){
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749 749
 		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
@@ -774,15 +774,15 @@  discard block
 block discarded – undo
774 774
 
775 775
 
776 776
 	/**
777
-	* 	compile all error or success messages into one string
778
-	*	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
-	*
780
-	*	@access public
781
-	* 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
-	* 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
-	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
-	* 	@return 		array
785
-	*/
777
+	 * 	compile all error or success messages into one string
778
+	 *	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
+	 *
780
+	 *	@access public
781
+	 * 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
+	 * 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
+	 * 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
+	 * 	@return 		array
785
+	 */
786 786
 	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787 787
 		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
788 788
 
@@ -894,14 +894,14 @@  discard block
 block discarded – undo
894 894
 
895 895
 
896 896
 	/**
897
-	* 	add_persistent_admin_notice
898
-	*
899
-	*	@access 	public
900
-	* 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
-	* 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
-	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
-	* 	@return 		void
904
-	*/
897
+	 * 	add_persistent_admin_notice
898
+	 *
899
+	 *	@access 	public
900
+	 * 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
+	 * 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
+	 * 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
+	 * 	@return 		void
904
+	 */
905 905
 	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906 906
 		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907 907
 			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
@@ -1064,11 +1064,11 @@  discard block
 block discarded – undo
1064 1064
 
1065 1065
 
1066 1066
 	/**
1067
-	* 	enqueue_error_scripts
1068
-	*
1069
-	*	@access public
1070
-	* 	@return 		void
1071
-	*/
1067
+	 * 	enqueue_error_scripts
1068
+	 *
1069
+	 *	@access public
1070
+	 * 	@return 		void
1071
+	 */
1072 1072
 	public static function enqueue_error_scripts() {
1073 1073
 		self::_print_scripts();
1074 1074
 	}
@@ -1076,15 +1076,15 @@  discard block
 block discarded – undo
1076 1076
 
1077 1077
 
1078 1078
 	/**
1079
-	*	create error code from filepath, function name,
1080
-	*	and line number where exception or error was thrown
1081
-	*
1082
-	*	@access public
1083
-	*	@param string $file
1084
-	*	@param string $func
1085
-	*	@param string $line
1086
-	*	@return string
1087
-	*/
1079
+	 *	create error code from filepath, function name,
1080
+	 *	and line number where exception or error was thrown
1081
+	 *
1082
+	 *	@access public
1083
+	 *	@param string $file
1084
+	 *	@param string $func
1085
+	 *	@param string $line
1086
+	 *	@return string
1087
+	 */
1088 1088
 	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089 1089
 		$file = explode( '.', basename( $file ));
1090 1090
 		$error_code = ! empty( $file[0] ) ? $file[0] : '';
@@ -1098,13 +1098,13 @@  discard block
 block discarded – undo
1098 1098
 
1099 1099
 
1100 1100
 	/**
1101
-	*	write exception details to log file
1102
-	*
1103
-	*	@access public
1104
-	*	@ param timestamp $time
1105
-	*	@ param object $ex
1106
-	*	@ return void
1107
-	*/
1101
+	 *	write exception details to log file
1102
+	 *
1103
+	 *	@access public
1104
+	 *	@ param timestamp $time
1105
+	 *	@ param object $ex
1106
+	 *	@ return void
1107
+	 */
1108 1108
 	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1109 1109
 
1110 1110
 		if ( ! $ex ) {
Please login to merge, or discard this patch.
Spacing   +247 added lines, -247 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 // if you're a dev and want to receive all errors via email add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE );
3
-if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) {
4
-	set_error_handler( array( 'EE_Error', 'error_handler' ));
5
-	register_shutdown_function( array( 'EE_Error', 'fatal_error_handler' ));
3
+if (defined('WP_DEBUG') && WP_DEBUG === TRUE && defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS === TRUE) {
4
+	set_error_handler(array('EE_Error', 'error_handler'));
5
+	register_shutdown_function(array('EE_Error', 'fatal_error_handler'));
6 6
 }
7 7
 /**
8 8
  *
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	* 	@access	private
65 65
     *	@var boolean
66 66
 	*/
67
-	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
67
+	private static $_espresso_notices = array('success' => FALSE, 'errors' => FALSE, 'attention' => FALSE);
68 68
 
69 69
 
70 70
 
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
 	*	@access public
76 76
 	*	@echo string
77 77
 	*/
78
-	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79
-		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80
-			parent::__construct( $message, $code );
78
+	function __construct($message, $code = 0, Exception $previous = NULL) {
79
+		if (version_compare(phpversion(), '5.3.0', '<')) {
80
+			parent::__construct($message, $code);
81 81
 		} else {
82
-			parent::__construct( $message, $code, $previous );
82
+			parent::__construct($message, $code, $previous);
83 83
 		}
84 84
 	}
85 85
 
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
 	 * @param $line
95 95
 	 * @return void
96 96
 	 */
97
-	public static function error_handler( $code, $message, $file, $line ) {
98
-		$type = EE_Error::error_type( $code );
97
+	public static function error_handler($code, $message, $file, $line) {
98
+		$type = EE_Error::error_type($code);
99 99
 		$site = site_url();
100
-		switch ( $site ) {
100
+		switch ($site) {
101 101
 			case 'http://ee4.eventespresso.com/' :
102 102
 			case 'http://ee4decaf.eventespresso.com/' :
103 103
 			case 'http://ee4hf.eventespresso.com/' :
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 				$to = '[email protected]';
111 111
 				break;
112 112
 			default :
113
-				$to = get_option( 'admin_email' );
113
+				$to = get_option('admin_email');
114 114
 		}
115
-		$subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url();
116
-		$msg = EE_Error::_format_error( $type, $message, $file, $line );
117
-		if ( function_exists( 'wp_mail' )) {
118
-			add_filter( 'wp_mail_content_type', array( 'EE_Error', 'set_content_type' ));
119
-			wp_mail( $to, $subject, $msg );
115
+		$subject = $type.' '.$message.' in '.EVENT_ESPRESSO_VERSION.' on '.site_url();
116
+		$msg = EE_Error::_format_error($type, $message, $file, $line);
117
+		if (function_exists('wp_mail')) {
118
+			add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type'));
119
+			wp_mail($to, $subject, $msg);
120 120
 		}
121 121
 		echo '<div id="message" class="espresso-notices error"><p>';
122
-		echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line;
122
+		echo $type.': '.$message.'<br />'.$file.' line '.$line;
123 123
 		echo '<br /></p></div>';
124 124
 	}
125 125
 
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 	 * @param $code
133 133
 	 * @return string
134 134
 	 */
135
-	public static function error_type( $code ) {
136
-		switch( $code ) {
135
+	public static function error_type($code) {
136
+		switch ($code) {
137 137
 			case E_ERROR: // 1 //
138 138
 			return 'E_ERROR';
139 139
 			case E_WARNING: // 2 //
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
 	*/
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182
-		if ( $last_error['type'] === E_ERROR ) {
183
-			EE_Error::error_handler( E_ERROR, $last_error['message'], $last_error['file'], $last_error['line'] );
182
+		if ($last_error['type'] === E_ERROR) {
183
+			EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']);
184 184
 		}
185 185
 	}
186 186
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @param $line
196 196
 	 * @return string
197 197
 	 */
198
-	private static function _format_error( $code, $message, $file, $line ) {
198
+	private static function _format_error($code, $message, $file, $line) {
199 199
 		$html  = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>";
200 200
 		$html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>";
201 201
 		$html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>";
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 	 * @param $content_type
214 214
 	 * @return string
215 215
 	 */
216
-	public static function set_content_type( $content_type ) {
216
+	public static function set_content_type($content_type) {
217 217
 		return 'text/html';
218 218
 	}
219 219
 
@@ -227,24 +227,24 @@  discard block
 block discarded – undo
227 227
 	*/
228 228
     public function get_error() {
229 229
 
230
-		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
230
+		if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', FALSE)) {
231 231
 			throw $this;
232 232
 		}
233 233
 		// get separate user and developer messages if they exist
234
-		$msg = explode( '||', $this->getMessage() );
234
+		$msg = explode('||', $this->getMessage());
235 235
 		$user_msg = $msg[0];
236
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
236
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
237 237
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
238 238
 
239 239
 		// add details to _all_exceptions array
240 240
 		$x_time = time();
241
-		self::$_all_exceptions[ $x_time ]['name'] 	= get_class( $this );
242
-		self::$_all_exceptions[ $x_time ]['file'] 		= $this->getFile();
243
-		self::$_all_exceptions[ $x_time ]['line'] 		= $this->getLine();
244
-		self::$_all_exceptions[ $x_time ]['msg'] 	= $msg;
245
-		self::$_all_exceptions[ $x_time ]['code'] 	= $this->getCode();
246
-		self::$_all_exceptions[ $x_time ]['trace'] 	= $this->getTrace();
247
-		self::$_all_exceptions[ $x_time ]['string'] 	= $this->getTraceAsString();
241
+		self::$_all_exceptions[$x_time]['name'] = get_class($this);
242
+		self::$_all_exceptions[$x_time]['file'] 		= $this->getFile();
243
+		self::$_all_exceptions[$x_time]['line'] 		= $this->getLine();
244
+		self::$_all_exceptions[$x_time]['msg'] = $msg;
245
+		self::$_all_exceptions[$x_time]['code'] = $this->getCode();
246
+		self::$_all_exceptions[$x_time]['trace'] 	= $this->getTrace();
247
+		self::$_all_exceptions[$x_time]['string'] = $this->getTraceAsString();
248 248
 		self::$_error_count++;
249 249
 
250 250
 		//add_action( 'shutdown', array( $this, 'display_errors' ));
@@ -261,12 +261,12 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
264
+    public static function has_error($check_stored = false) {
265 265
 	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
266
+	    if ($check_stored && ! $has_error) {
267
+		    $notices = (array) get_option('ee_notices', array());
268
+		    foreach ($notices as $type => $notice) {
269
+			    if ($type === 'errors' && $notice) {
270 270
 				    return true;
271 271
 			    }
272 272
 		    }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 	*	@access public
282 282
 	*	@echo string
283 283
 	*/
284
-    public function display_errors(){
284
+    public function display_errors() {
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -342,18 +342,18 @@  discard block
 block discarded – undo
342 342
 </style>
343 343
 <div id="ee-error-message" class="error">';
344 344
 
345
-		if ( ! WP_DEBUG ) {
345
+		if ( ! WP_DEBUG) {
346 346
 			$output .= '
347 347
 	<p>';
348 348
 		}
349 349
 
350 350
 		// cycle thru errors
351
-		foreach ( self::$_all_exceptions as $time => $ex ) {
351
+		foreach (self::$_all_exceptions as $time => $ex) {
352 352
 
353 353
 			// process trace info
354
-			if ( empty( $ex['trace'] )) {
354
+			if (empty($ex['trace'])) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+	            $trace_details .= __('Sorry, but no trace information was available for this exception.', 'event_espresso');
357 357
 
358 358
 			} else {
359 359
 
@@ -368,50 +368,50 @@  discard block
 block discarded – undo
368 368
 					<th scope="col" align="left">Method( arguments )</th>
369 369
 				</tr>';
370 370
 
371
-				$last_on_stack = count( $ex['trace'] ) - 1;
371
+				$last_on_stack = count($ex['trace']) - 1;
372 372
 				// reverse array so that stack is in proper chronological order
373
-				$sorted_trace = array_reverse( $ex['trace'] );
373
+				$sorted_trace = array_reverse($ex['trace']);
374 374
 
375
-				foreach ( $sorted_trace as $nmbr => $trace ) {
375
+				foreach ($sorted_trace as $nmbr => $trace) {
376 376
 
377
-					$file = isset( $trace['file'] ) ? $trace['file'] : '' ;
378
-					$class = isset( $trace['class'] ) ? $trace['class'] : '';
379
-					$type = isset( $trace['type'] ) ? $trace['type'] : '';
380
-					$function = isset( $trace['function'] ) ? $trace['function'] : '';
381
-					$args = isset( $trace['args'] ) ? $this->_convert_args_to_string( $trace['args'] ) : '';
382
-					$line = isset( $trace['line'] ) ? $trace['line'] : '';
377
+					$file = isset($trace['file']) ? $trace['file'] : '';
378
+					$class = isset($trace['class']) ? $trace['class'] : '';
379
+					$type = isset($trace['type']) ? $trace['type'] : '';
380
+					$function = isset($trace['function']) ? $trace['function'] : '';
381
+					$args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : '';
382
+					$line = isset($trace['line']) ? $trace['line'] : '';
383 383
 					$zebra = $nmbr % 2 ? ' odd' : '';
384 384
 
385
-					if ( empty( $file ) && ! empty( $class )) {
386
-						$a = new ReflectionClass( $class );
385
+					if (empty($file) && ! empty($class)) {
386
+						$a = new ReflectionClass($class);
387 387
 						$file = $a->getFileName();
388
-						if ( empty( $line ) && ! empty( $function )) {
389
-							$b = new ReflectionMethod( $class, $function );
388
+						if (empty($line) && ! empty($function)) {
389
+							$b = new ReflectionMethod($class, $function);
390 390
 							$line = $b->getStartLine();
391 391
 						}
392 392
 					}
393 393
 
394
-					if ( $nmbr == $last_on_stack ) {
394
+					if ($nmbr == $last_on_stack) {
395 395
 						$file = $ex['file'] != '' ? $ex['file'] : $file;
396 396
 						$line = $ex['line'] != '' ? $ex['line'] : $line;
397
-						$error_code = self::generate_error_code ( $file, $trace['function'], $line );
397
+						$error_code = self::generate_error_code($file, $trace['function'], $line);
398 398
 					}
399 399
 
400
-					$nmbr_dsply = ! empty( $nmbr ) ? $nmbr : '&nbsp;';
401
-					$line_dsply = ! empty( $line ) ? $line : '&nbsp;';
402
-					$file_dsply = ! empty( $file ) ? $file : '&nbsp;';
403
-					$class_dsply = ! empty( $class ) ? $class : '&nbsp;';
404
-					$type_dsply = ! empty( $type ) ? $type : '&nbsp;';
405
-					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406
-					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
400
+					$nmbr_dsply = ! empty($nmbr) ? $nmbr : '&nbsp;';
401
+					$line_dsply = ! empty($line) ? $line : '&nbsp;';
402
+					$file_dsply = ! empty($file) ? $file : '&nbsp;';
403
+					$class_dsply = ! empty($class) ? $class : '&nbsp;';
404
+					$type_dsply = ! empty($type) ? $type : '&nbsp;';
405
+					$function_dsply = ! empty($function) ? $function : '&nbsp;';
406
+					$args_dsply = ! empty($args) ? '( '.$args.' )' : '';
407 407
 
408 408
 		              $trace_details .= '
409 409
 					<tr>
410
-						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411
-						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
412
-						<td align="left" class="' . $zebra . '">' . $file_dsply . '</td>
413
-						<td align="left" class="' . $zebra . '">' . $class_dsply . '</td>
414
-						<td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td>
410
+						<td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td>
411
+						<td align="right" class="' . $zebra.'">'.$line_dsply.'</td>
412
+						<td align="left" class="' . $zebra.'">'.$file_dsply.'</td>
413
+						<td align="left" class="' . $zebra.'">'.$class_dsply.'</td>
414
+						<td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td>
415 415
 					</tr>';
416 416
 
417 417
 
@@ -426,9 +426,9 @@  discard block
 block discarded – undo
426 426
 			$ex['code'] = $ex['code'] ? $ex['code'] : $error_code;
427 427
 
428 428
 			// add generic non-identifying messages for non-privileged uesrs
429
-			if ( ! WP_DEBUG ) {
429
+			if ( ! WP_DEBUG) {
430 430
 
431
-				$output .= '<span class="ee-error-user-msg-spn">' . trim( $ex['msg'] )  . '</span> &nbsp; <sup>' . $ex['code'] . '</sup><br />';
431
+				$output .= '<span class="ee-error-user-msg-spn">'.trim($ex['msg']).'</span> &nbsp; <sup>'.$ex['code'].'</sup><br />';
432 432
 
433 433
 			} else {
434 434
 
@@ -436,24 +436,24 @@  discard block
 block discarded – undo
436 436
 				$output .= '
437 437
 		<div class="ee-error-dev-msg-dv">
438 438
 			<p class="ee-error-dev-msg-pg">
439
-				<strong class="ee-error-dev-msg-str">An ' . $ex['name'] . ' exception was thrown!</strong>  &nbsp; <span>code: ' . $ex['code'] . '</span><br />
440
-				<span class="big-text">"' . trim( $ex['msg'] ) . '"</span><br/>
441
-				<a id="display-ee-error-trace-' . self::$_error_count . $time . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' . self::$_error_count . $time . '">
442
-					' . __( 'click to view backtrace and class/method details', 'event_espresso' ) . '
439
+				<strong class="ee-error-dev-msg-str">An ' . $ex['name'].' exception was thrown!</strong>  &nbsp; <span>code: '.$ex['code'].'</span><br />
440
+				<span class="big-text">"' . trim($ex['msg']).'"</span><br/>
441
+				<a id="display-ee-error-trace-' . self::$_error_count.$time.'" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-'.self::$_error_count.$time.'">
442
+					' . __('click to view backtrace and class/method details', 'event_espresso').'
443 443
 				</a><br />
444 444
 				<span class="small-text lt-grey-text">'.$ex['file'].' &nbsp; ( line no: '.$ex['line'].' )</span>
445 445
 			</p>
446
-			<div id="ee-error-trace-' . self::$_error_count . $time . '-dv" class="ee-error-trace-dv" style="display: none;">
446
+			<div id="ee-error-trace-' . self::$_error_count.$time.'-dv" class="ee-error-trace-dv" style="display: none;">
447 447
 				' . $trace_details;
448 448
 
449
-				if ( ! empty( $class )) {
449
+				if ( ! empty($class)) {
450 450
 					$output .= '
451 451
 				<div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;">
452 452
 					<div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;">
453 453
 						<h3>Class Details</h3>';
454
-						$a = new ReflectionClass( $class );
454
+						$a = new ReflectionClass($class);
455 455
 						$output .= '
456
-						<pre>' . $a . '</pre>
456
+						<pre>' . $a.'</pre>
457 457
 					</div>
458 458
 				</div>';
459 459
 				}
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
 
466 466
 			}
467 467
 
468
-			$this->write_to_error_log( $time, $ex );
468
+			$this->write_to_error_log($time, $ex);
469 469
 
470 470
 		}
471 471
 
472 472
 		// remove last linebreak
473
-		$output = substr( $output, 0, ( count( $output ) - 7 ));
473
+		$output = substr($output, 0, (count($output) - 7));
474 474
 
475
-		if ( ! WP_DEBUG ) {
475
+		if ( ! WP_DEBUG) {
476 476
 			$output .= '
477 477
 	</p>';
478 478
 		}
@@ -480,10 +480,10 @@  discard block
 block discarded – undo
480 480
 		$output .= '
481 481
 </div>';
482 482
 
483
-		$output .= self::_print_scripts( TRUE );
483
+		$output .= self::_print_scripts(TRUE);
484 484
 
485
-		if ( defined( 'DOING_AJAX' )) {
486
-			echo json_encode( array( 'error' => $output ));
485
+		if (defined('DOING_AJAX')) {
486
+			echo json_encode(array('error' => $output));
487 487
 			exit();
488 488
 		}
489 489
 
@@ -503,29 +503,29 @@  discard block
 block discarded – undo
503 503
 	*	@ param array $arguments
504 504
 	*	@ return string
505 505
 	*/
506
-	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
506
+	private function _convert_args_to_string($arguments = array(), $array = FALSE) {
507 507
 
508 508
 		$arg_string = '';
509
-		if ( ! empty( $arguments )) {
509
+		if ( ! empty($arguments)) {
510 510
 
511 511
 			$args = array();
512 512
 
513
-			foreach ( $arguments as $arg ) {
513
+			foreach ($arguments as $arg) {
514 514
 
515
-				if ( ! empty( $arg )) {
515
+				if ( ! empty($arg)) {
516 516
 
517
-					if ( is_string( $arg )) {
518
-						$args[] = " '" . $arg . "'";
519
-					} elseif ( is_array( $arg )) {
520
-						$args[] = 'ARRAY(' . $this->_convert_args_to_string( $arg, TRUE );
521
-					} elseif ( is_null( $arg )) {
517
+					if (is_string($arg)) {
518
+						$args[] = " '".$arg."'";
519
+					} elseif (is_array($arg)) {
520
+						$args[] = 'ARRAY('.$this->_convert_args_to_string($arg, TRUE);
521
+					} elseif (is_null($arg)) {
522 522
 						$args[] = ' NULL';
523
-					} elseif ( is_bool( $arg )) {
524
-						$args[] = ( $arg ) ? ' TRUE' : ' FALSE';
525
-					} elseif ( is_object( $arg )) {
526
-						$args[] = ' OBJECT ' . get_class( $arg );
527
-					} elseif ( is_resource( $arg )) {
528
-						$args[] = get_resource_type( $arg );
523
+					} elseif (is_bool($arg)) {
524
+						$args[] = ($arg) ? ' TRUE' : ' FALSE';
525
+					} elseif (is_object($arg)) {
526
+						$args[] = ' OBJECT '.get_class($arg);
527
+					} elseif (is_resource($arg)) {
528
+						$args[] = get_resource_type($arg);
529 529
 					} else {
530 530
 						$args[] = $arg;
531 531
 					}
@@ -533,9 +533,9 @@  discard block
 block discarded – undo
533 533
 				}
534 534
 
535 535
 			}
536
-			$arg_string = implode( ', ', $args );
536
+			$arg_string = implode(', ', $args);
537 537
 		}
538
-		if ( $array ) {
538
+		if ($array) {
539 539
 			$arg_string .= ' )';
540 540
 		}
541 541
 		return $arg_string;
@@ -555,8 +555,8 @@  discard block
 block discarded – undo
555 555
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556 556
 	* 	@return 		void
557 557
 	*/
558
-	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559
-		self::_add_notice ( 'errors', $msg, $file, $func, $line );
558
+	public static function add_error($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
559
+		self::_add_notice('errors', $msg, $file, $func, $line);
560 560
 		self::$_error_count++;
561 561
 	}
562 562
 
@@ -569,11 +569,11 @@  discard block
 block discarded – undo
569 569
 	 * @param string $line
570 570
 	 * @throws EE_Error
571 571
 	 */
572
-	public static function throw_exception_if_debugging( $msg = null, $file = null, $func = null, $line = null ) {
573
-		if( WP_DEBUG ) {
574
-			throw new EE_Error( $msg );
575
-		} else  {
576
-			EE_Error::add_error( $msg, $file, $func, $line );
572
+	public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) {
573
+		if (WP_DEBUG) {
574
+			throw new EE_Error($msg);
575
+		} else {
576
+			EE_Error::add_error($msg, $file, $func, $line);
577 577
 		}
578 578
 	}
579 579
 
@@ -591,8 +591,8 @@  discard block
 block discarded – undo
591 591
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592 592
 	* 	@return 		void
593 593
 	*/
594
-	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595
-		self::_add_notice ( 'success', $msg, $file, $func, $line );
594
+	public static function add_success($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
595
+		self::_add_notice('success', $msg, $file, $func, $line);
596 596
 	}
597 597
 
598 598
 
@@ -609,8 +609,8 @@  discard block
 block discarded – undo
609 609
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610 610
 	* 	@return 		void
611 611
 	*/
612
-	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613
-		self::_add_notice ( 'attention', $msg, $file, $func, $line );
612
+	public static function add_attention($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
613
+		self::_add_notice('attention', $msg, $file, $func, $line);
614 614
 	}
615 615
 
616 616
 
@@ -628,12 +628,12 @@  discard block
 block discarded – undo
628 628
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629 629
 	* 	@return 		void
630 630
 	*/
631
-	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632
-		if ( empty( $msg )) {
631
+	private static function _add_notice($type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
632
+		if (empty($msg)) {
633 633
 			EE_Error::doing_it_wrong(
634
-				'EE_Error::add_' . $type . '()',
634
+				'EE_Error::add_'.$type.'()',
635 635
 				sprintf(
636
-					__( 'Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso' ),
636
+					__('Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso'),
637 637
 					$type,
638 638
 					$file,
639 639
 					$line
@@ -641,17 +641,17 @@  discard block
 block discarded – undo
641 641
 				EVENT_ESPRESSO_VERSION
642 642
 			);
643 643
 		}
644
-		if ( $type == 'errors' && ( empty( $file ) || empty( $func ) || empty( $line ))) {
644
+		if ($type == 'errors' && (empty($file) || empty($func) || empty($line))) {
645 645
 			EE_Error::doing_it_wrong(
646 646
 				'EE_Error::add_error()',
647
-				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso' ),
647
+				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso'),
648 648
 				EVENT_ESPRESSO_VERSION
649 649
 			);
650 650
 		}
651 651
 		// get separate user and developer messages if they exist
652
-		$msg = explode( '||', $msg );
652
+		$msg = explode('||', $msg);
653 653
 		$user_msg = $msg[0];
654
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
654
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
655 655
 		/**
656 656
 		 * Do an action so other code can be triggered when a notice is created
657 657
 		 * @param string $type can be 'errors', 'attention', or 'success'
@@ -661,22 +661,22 @@  discard block
 block discarded – undo
661 661
 		 * @param string $func function where error was generated
662 662
 		 * @param string $line line where error was generated
663 663
 		 */
664
-		do_action( 'AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line );
664
+		do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line);
665 665
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
666 666
 		// add notice if message exists
667
-		if ( ! empty( $msg )) {
667
+		if ( ! empty($msg)) {
668 668
 			// get error code
669
-			$notice_code = EE_Error::generate_error_code( $file, $func, $line );
670
-			if ( WP_DEBUG && $type == 'errors' ) {
671
-				$msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>';
669
+			$notice_code = EE_Error::generate_error_code($file, $func, $line);
670
+			if (WP_DEBUG && $type == 'errors') {
671
+				$msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>';
672 672
 			}
673 673
 			// add notice. Index by code if it's not blank
674
-			if( $notice_code ) {
675
-				self::$_espresso_notices[ $type ][ $notice_code ] = $msg;
674
+			if ($notice_code) {
675
+				self::$_espresso_notices[$type][$notice_code] = $msg;
676 676
 			} else {
677
-				self::$_espresso_notices[ $type ][] = $msg;
677
+				self::$_espresso_notices[$type][] = $msg;
678 678
 			}
679
-			add_action( 'wp_footer', array( 'EE_Error', 'enqueue_error_scripts' ), 1 );
679
+			add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1);
680 680
 		}
681 681
 
682 682
 	}
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
 	*	@access private
731 731
 	*	@return void
732 732
 	*/
733
-	public static function reset_notices(){
733
+	public static function reset_notices() {
734 734
     	self::$_espresso_notices['success'] = FALSE;
735 735
     	self::$_espresso_notices['attention'] = FALSE;
736 736
     	self::$_espresso_notices['errors'] = FALSE;
@@ -743,14 +743,14 @@  discard block
 block discarded – undo
743 743
 	*	@access public
744 744
 	*	@return int
745 745
 	*/
746
-    public static function has_notices(){
746
+    public static function has_notices() {
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749
-		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
749
+		$has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) ? 3 : $has_notices;
750 750
 		// check for attention messages
751
-		$has_notices = self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ? 2 : $has_notices;
751
+		$has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) ? 2 : $has_notices;
752 752
 		// check for error messages
753
-		$has_notices = self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ? 1 : $has_notices;
753
+		$has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) ? 1 : $has_notices;
754 754
 		return $has_notices;
755 755
 	}
756 756
 
@@ -765,9 +765,9 @@  discard block
 block discarded – undo
765 765
 	 */
766 766
 	public static function get_vanilla_notices() {
767 767
 		return array(
768
-			'success' => isset( self::$_espresso_notices['success'] ) ? self::$_espresso_notices['success'] : array(),
769
-			'attention' => isset( self::$_espresso_notices['attention'] )  ? self::$_espresso_notices['attention'] : array(),
770
-			'errors' => isset( self::$_espresso_notices['errors'] ) ? self::$_espresso_notices['errors'] : array(),
768
+			'success' => isset(self::$_espresso_notices['success']) ? self::$_espresso_notices['success'] : array(),
769
+			'attention' => isset(self::$_espresso_notices['attention']) ? self::$_espresso_notices['attention'] : array(),
770
+			'errors' => isset(self::$_espresso_notices['errors']) ? self::$_espresso_notices['errors'] : array(),
771 771
 		);
772 772
 	}
773 773
 
@@ -783,8 +783,8 @@  discard block
 block discarded – undo
783 783
 	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784 784
 	* 	@return 		array
785 785
 	*/
786
-	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
786
+	public static function get_notices($format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE) {
787
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
788 788
 
789 789
 		$success_messages = '';
790 790
 		$attention_messages = '';
@@ -794,44 +794,44 @@  discard block
 block discarded – undo
794 794
 		// EEH_Debug_Tools::printr( self::$_espresso_notices, 'espresso_notices  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
795 795
 
796 796
 		// either save notices to the db
797
-		if ( $save_to_transient ) {
798
-			update_option( 'ee_notices', self::$_espresso_notices );
797
+		if ($save_to_transient) {
798
+			update_option('ee_notices', self::$_espresso_notices);
799 799
 			return;
800 800
 		}
801 801
 		// grab any notices that have been previously saved
802
-		if ( $notices = get_option( 'ee_notices', FALSE )) {
803
-			foreach ( $notices as $type => $notice ) {
804
-				if ( is_array( $notice ) && ! empty( $notice )) {
802
+		if ($notices = get_option('ee_notices', FALSE)) {
803
+			foreach ($notices as $type => $notice) {
804
+				if (is_array($notice) && ! empty($notice)) {
805 805
 					// make sure that existing notice type is an array
806
-					self::$_espresso_notices[ $type ] =  is_array( self::$_espresso_notices[ $type ] ) && ! empty( self::$_espresso_notices[ $type ] ) ? self::$_espresso_notices[ $type ] : array();
806
+					self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) && ! empty(self::$_espresso_notices[$type]) ? self::$_espresso_notices[$type] : array();
807 807
 					// merge stored notices with any newly created ones
808
-					self::$_espresso_notices[ $type ] = array_merge( self::$_espresso_notices[ $type ], $notice );
808
+					self::$_espresso_notices[$type] = array_merge(self::$_espresso_notices[$type], $notice);
809 809
 					$print_scripts = TRUE;
810 810
 				}
811 811
 			}
812 812
 			// now clear any stored notices
813
-			update_option( 'ee_notices', FALSE );
813
+			update_option('ee_notices', FALSE);
814 814
 		}
815 815
 
816 816
 		// check for success messages
817
-		if ( self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] )) {
817
+		if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) {
818 818
 			// combine messages
819
-			$success_messages .= implode( self::$_espresso_notices['success'], '<br />' );
819
+			$success_messages .= implode(self::$_espresso_notices['success'], '<br />');
820 820
 			$print_scripts = TRUE;
821 821
 		}
822 822
 
823 823
 		// check for attention messages
824
-		if ( self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ) {
824
+		if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) {
825 825
 			// combine messages
826
-			$attention_messages .= implode( self::$_espresso_notices['attention'], '<br />' );
826
+			$attention_messages .= implode(self::$_espresso_notices['attention'], '<br />');
827 827
 			$print_scripts = TRUE;
828 828
 		}
829 829
 
830 830
 		// check for error messages
831
-		if ( self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ) {
832
-			$error_messages .= count( self::$_espresso_notices['errors'] ) > 1 ? __( 'The following errors have occurred:<br />', 'event_espresso' ) : __( 'An error has occurred:<br />', 'event_espresso' );
831
+		if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) {
832
+			$error_messages .= count(self::$_espresso_notices['errors']) > 1 ? __('The following errors have occurred:<br />', 'event_espresso') : __('An error has occurred:<br />', 'event_espresso');
833 833
 			// combine messages
834
-			$error_messages .= implode( self::$_espresso_notices['errors'], '<br />' );
834
+			$error_messages .= implode(self::$_espresso_notices['errors'], '<br />');
835 835
 			$print_scripts = TRUE;
836 836
 		}
837 837
 
@@ -845,21 +845,21 @@  discard block
 block discarded – undo
845 845
 				$css_id = is_admin() ? 'message' : 'espresso-notices-success';
846 846
 				$css_class = is_admin() ? 'updated fade' : 'success fade-away';
847 847
 				//showMessage( $success_messages );
848
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $success_messages . '</p>' . $close . '</div>';
848
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$success_messages.'</p>'.$close.'</div>';
849 849
 			}
850 850
 
851 851
 			if ($attention_messages != '') {
852 852
 				$css_id = is_admin() ? 'message' : 'espresso-notices-attention';
853 853
 				$css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away';
854 854
 				//showMessage( $error_messages, TRUE );
855
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $attention_messages . '</p>' . $close . '</div>';
855
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$attention_messages.'</p>'.$close.'</div>';
856 856
 			}
857 857
 
858 858
 			if ($error_messages != '') {
859 859
 				$css_id = is_admin() ? 'message' : 'espresso-notices-error';
860 860
 				$css_class = is_admin() ? 'error' : 'error fade-away';
861 861
 				//showMessage( $error_messages, TRUE );
862
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $error_messages . '</p>' . $close . '</div>';
862
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$error_messages.'</p>'.$close.'</div>';
863 863
 			}
864 864
 
865 865
 			$notices .= '</div>';
@@ -872,7 +872,7 @@  discard block
 block discarded – undo
872 872
 					'errors' => $error_messages
873 873
 			);
874 874
 
875
-			if ( $remove_empty ) {
875
+			if ($remove_empty) {
876 876
 				// remove empty notices
877 877
 				foreach ($notices as $type => $notice) {
878 878
 					if (empty($notice)) {
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
 			}
883 883
 		}
884 884
 
885
-		if ( $print_scripts ) {
885
+		if ($print_scripts) {
886 886
 			self::_print_scripts();
887 887
 		}
888 888
 
@@ -902,17 +902,17 @@  discard block
 block discarded – undo
902 902
 	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903 903
 	* 	@return 		void
904 904
 	*/
905
-	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
905
+	public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = FALSE) {
906
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
907
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
908 908
 			//maybe initialize persistent_admin_notices
909
-			if ( empty( $persistent_admin_notices )) {
910
-				add_option( 'ee_pers_admin_notices', array(), '', 'no' );
909
+			if (empty($persistent_admin_notices)) {
910
+				add_option('ee_pers_admin_notices', array(), '', 'no');
911 911
 			}
912
-			$pan_name = sanitize_key( $pan_name );
913
-			if ( ! array_key_exists( $pan_name, $persistent_admin_notices ) || $force_update ) {
914
-				$persistent_admin_notices[ $pan_name ] = $pan_message;
915
-				update_option( 'ee_pers_admin_notices', $persistent_admin_notices );
912
+			$pan_name = sanitize_key($pan_name);
913
+			if ( ! array_key_exists($pan_name, $persistent_admin_notices) || $force_update) {
914
+				$persistent_admin_notices[$pan_name] = $pan_message;
915
+				update_option('ee_pers_admin_notices', $persistent_admin_notices);
916 916
 			}
917 917
 		}
918 918
 	}
@@ -928,34 +928,34 @@  discard block
 block discarded – undo
928 928
 	 * @param bool          $return_immediately
929 929
 	 * @return        void
930 930
 	 */
931
-	public static function dismiss_persistent_admin_notice( $pan_name = '', $purge = FALSE, $return_immediately = FALSE ) {
932
-		$pan_name = EE_Registry::instance()->REQ->is_set( 'ee_nag_notice' ) ? EE_Registry::instance()->REQ->get( 'ee_nag_notice' ) : $pan_name;
933
-		if ( ! empty( $pan_name )) {
934
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
931
+	public static function dismiss_persistent_admin_notice($pan_name = '', $purge = FALSE, $return_immediately = FALSE) {
932
+		$pan_name = EE_Registry::instance()->REQ->is_set('ee_nag_notice') ? EE_Registry::instance()->REQ->get('ee_nag_notice') : $pan_name;
933
+		if ( ! empty($pan_name)) {
934
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
935 935
 			// check if notice we wish to dismiss is actually in the $persistent_admin_notices array
936
-			if ( is_array( $persistent_admin_notices ) && isset( $persistent_admin_notices[ $pan_name ] )) {
936
+			if (is_array($persistent_admin_notices) && isset($persistent_admin_notices[$pan_name])) {
937 937
 				// completely delete nag notice, or just NULL message so that it can NOT be added again ?
938
-				if ( $purge ) {
939
-					unset( $persistent_admin_notices[ $pan_name ] );
938
+				if ($purge) {
939
+					unset($persistent_admin_notices[$pan_name]);
940 940
 				} else {
941
-					$persistent_admin_notices[ $pan_name ] = NULL;
941
+					$persistent_admin_notices[$pan_name] = NULL;
942 942
 				}
943
-				if ( update_option( 'ee_pers_admin_notices', $persistent_admin_notices ) === FALSE ) {
944
-					EE_Error::add_error( sprintf( __( 'The persistent admin notice for "%s" could not be deleted.', 'event_espresso' ), $pan_name ), __FILE__, __FUNCTION__, __LINE__ );
943
+				if (update_option('ee_pers_admin_notices', $persistent_admin_notices) === FALSE) {
944
+					EE_Error::add_error(sprintf(__('The persistent admin notice for "%s" could not be deleted.', 'event_espresso'), $pan_name), __FILE__, __FUNCTION__, __LINE__);
945 945
 				}
946 946
 			}
947 947
 		}
948
-		if ( $return_immediately ) {
948
+		if ($return_immediately) {
949 949
 			return;
950
-		} else if ( EE_Registry::instance()->REQ->ajax ) {
950
+		} else if (EE_Registry::instance()->REQ->ajax) {
951 951
 			// grab any notices and concatenate into string
952
-			echo json_encode( array( 'errors' => implode( '<br />', EE_Error::get_notices( FALSE ))));
952
+			echo json_encode(array('errors' => implode('<br />', EE_Error::get_notices(FALSE))));
953 953
 			exit();
954 954
 		} else {
955 955
 			// save errors to a transient to be displayed on next request (after redirect)
956
-			EE_Error::get_notices( FALSE, TRUE );
957
-			$return_url = EE_Registry::instance()->REQ->is_set( 'return_url' ) ? EE_Registry::instance()->REQ->get( 'return_url' ) : '';
958
-			wp_safe_redirect( urldecode( $return_url ));
956
+			EE_Error::get_notices(FALSE, TRUE);
957
+			$return_url = EE_Registry::instance()->REQ->is_set('return_url') ? EE_Registry::instance()->REQ->get('return_url') : '';
958
+			wp_safe_redirect(urldecode($return_url));
959 959
 		}
960 960
 	}
961 961
 
@@ -970,20 +970,20 @@  discard block
 block discarded – undo
970 970
 	 * @param  string $return_url  URL to go back to after nag notice is dismissed
971 971
 	 * @return string
972 972
 	 */
973
-	public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) {
974
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
973
+	public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') {
974
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
975 975
 			$args = array(
976 976
 				'nag_notice' => $pan_name,
977
-				'return_url' => urlencode( $return_url ),
977
+				'return_url' => urlencode($return_url),
978 978
 				'ajax_url' => WP_AJAX_URL,
979
-				'unknown_error' => __( 'An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso' )
979
+				'unknown_error' => __('An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso')
980 980
 			);
981
-			wp_localize_script( 'espresso_core', 'ee_dismiss', $args );
981
+			wp_localize_script('espresso_core', 'ee_dismiss', $args);
982 982
 			return '
983
-			<div id="' . $pan_name . '" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
-				<p>' . $pan_message . '</p>
985
-				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name . '">
986
-					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__( 'Dismiss', 'event_espresso' ) .'
983
+			<div id="' . $pan_name.'" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
+				<p>' . $pan_message.'</p>
985
+				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name.'">
986
+					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__('Dismiss', 'event_espresso').'
987 987
 				</a>
988 988
 				<div style="clear:both;"></div>
989 989
 			</div>';
@@ -1000,24 +1000,24 @@  discard block
 block discarded – undo
1000 1000
 	 * @param string $return_url
1001 1001
 	 * @return    array
1002 1002
 	 */
1003
-	public static function get_persistent_admin_notices( $return_url = '' ) {
1003
+	public static function get_persistent_admin_notices($return_url = '') {
1004 1004
 		$notices = '';
1005 1005
 		// check for persistent admin notices
1006 1006
 		//filter the list though so plugins can notify the admin in a different way if they want
1007 1007
 		$persistent_admin_notices = apply_filters(
1008 1008
 			'FHEE__EE_Error__get_persistent_admin_notices',
1009
-			get_option( 'ee_pers_admin_notices', FALSE ),
1009
+			get_option('ee_pers_admin_notices', FALSE),
1010 1010
 			'ee_pers_admin_notices',
1011 1011
 			$return_url
1012 1012
 		);
1013
-		if ( $persistent_admin_notices ) {
1013
+		if ($persistent_admin_notices) {
1014 1014
 			// load scripts
1015
-			wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
1016
-			wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE );
1017
-			wp_enqueue_script( 'ee_error_js' );
1015
+			wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
1016
+			wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE);
1017
+			wp_enqueue_script('ee_error_js');
1018 1018
 			// and display notices
1019
-			foreach( $persistent_admin_notices as $pan_name => $pan_message ) {
1020
-				$notices .= self::display_persistent_admin_notices( $pan_name, $pan_message, $return_url );
1019
+			foreach ($persistent_admin_notices as $pan_name => $pan_message) {
1020
+				$notices .= self::display_persistent_admin_notices($pan_name, $pan_message, $return_url);
1021 1021
 			}
1022 1022
 		}
1023 1023
 		return $notices;
@@ -1032,26 +1032,26 @@  discard block
 block discarded – undo
1032 1032
 	 * @param 	bool $force_print
1033 1033
 	 * @return 	void
1034 1034
 	 */
1035
-	private static function _print_scripts( $force_print = FALSE ) {
1036
-		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
1037
-			if ( wp_script_is( 'ee_error_js', 'enqueued' )) {
1035
+	private static function _print_scripts($force_print = FALSE) {
1036
+		if ((did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts')) && ! $force_print) {
1037
+			if (wp_script_is('ee_error_js', 'enqueued')) {
1038 1038
 				return;
1039
-			} else if ( wp_script_is( 'ee_error_js', 'registered' )) {
1040
-				add_filter( 'FHEE_load_css', '__return_true' );
1041
-				add_filter( 'FHEE_load_js', '__return_true' );
1042
-				wp_enqueue_script( 'ee_error_js' );
1043
-				wp_localize_script( 'ee_error_js','ee_settings', array( 'wp_debug'=>WP_DEBUG ));
1039
+			} else if (wp_script_is('ee_error_js', 'registered')) {
1040
+				add_filter('FHEE_load_css', '__return_true');
1041
+				add_filter('FHEE_load_js', '__return_true');
1042
+				wp_enqueue_script('ee_error_js');
1043
+				wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug'=>WP_DEBUG));
1044 1044
 			}
1045 1045
 		} else {
1046 1046
 			return '
1047 1047
 <script>
1048 1048
 /* <![CDATA[ */
1049
-var ee_settings = {"wp_debug":"' . WP_DEBUG . '"};
1049
+var ee_settings = {"wp_debug":"' . WP_DEBUG.'"};
1050 1050
 /* ]]> */
1051 1051
 </script>
1052
-<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script>
1053
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1054
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1052
+<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script>
1053
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1054
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1055 1055
 ';
1056 1056
 
1057 1057
 		}
@@ -1085,11 +1085,11 @@  discard block
 block discarded – undo
1085 1085
 	*	@param string $line
1086 1086
 	*	@return string
1087 1087
 	*/
1088
-	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089
-		$file = explode( '.', basename( $file ));
1090
-		$error_code = ! empty( $file[0] ) ? $file[0] : '';
1091
-		$error_code .= ! empty( $func ) ? ' - ' . $func : '';
1092
-		$error_code .= ! empty( $line ) ? ' - ' . $line : '';
1088
+	public static function generate_error_code($file = '', $func = '', $line = '') {
1089
+		$file = explode('.', basename($file));
1090
+		$error_code = ! empty($file[0]) ? $file[0] : '';
1091
+		$error_code .= ! empty($func) ? ' - '.$func : '';
1092
+		$error_code .= ! empty($line) ? ' - '.$line : '';
1093 1093
 		return $error_code;
1094 1094
 	}
1095 1095
 
@@ -1105,36 +1105,36 @@  discard block
 block discarded – undo
1105 1105
 	*	@ param object $ex
1106 1106
 	*	@ return void
1107 1107
 	*/
1108
-	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1108
+	public function write_to_error_log($time = FALSE, $ex = FALSE, $clear = FALSE) {
1109 1109
 
1110
-		if ( ! $ex ) {
1110
+		if ( ! $ex) {
1111 1111
 			return;
1112 1112
 		}
1113 1113
 
1114
-		if ( ! $time ) {
1114
+		if ( ! $time) {
1115 1115
 			$time = time();
1116 1116
 		}
1117 1117
 
1118
-		$exception_log = '----------------------------------------------------------------------------------------' . PHP_EOL;
1119
-		$exception_log .= '[' . date( 'Y-m-d H:i:s', $time ) . ']  Exception Details' . PHP_EOL;
1120
-		$exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL;
1121
-		$exception_log .= 'Code: '. $ex['code'] . PHP_EOL;
1122
-		$exception_log .= 'File: '. $ex['file'] . PHP_EOL;
1123
-		$exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL;
1124
-		$exception_log .= 'Stack trace: ' . PHP_EOL;
1125
-		$exception_log .= $ex['string'] . PHP_EOL;
1126
-		$exception_log .= '----------------------------------------------------------------------------------------' . PHP_EOL;
1118
+		$exception_log = '----------------------------------------------------------------------------------------'.PHP_EOL;
1119
+		$exception_log .= '['.date('Y-m-d H:i:s', $time).']  Exception Details'.PHP_EOL;
1120
+		$exception_log .= 'Message: '.$ex['msg'].PHP_EOL;
1121
+		$exception_log .= 'Code: '.$ex['code'].PHP_EOL;
1122
+		$exception_log .= 'File: '.$ex['file'].PHP_EOL;
1123
+		$exception_log .= 'Line No: '.$ex['line'].PHP_EOL;
1124
+		$exception_log .= 'Stack trace: '.PHP_EOL;
1125
+		$exception_log .= $ex['string'].PHP_EOL;
1126
+		$exception_log .= '----------------------------------------------------------------------------------------'.PHP_EOL;
1127 1127
 
1128 1128
 		try {
1129
-			EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file );
1130
-			EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' );
1131
-			if ( ! $clear ) {
1129
+			EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file);
1130
+			EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs');
1131
+			if ( ! $clear) {
1132 1132
 				//get existing log file and append new log info
1133
-				$exception_log = EEH_File::get_file_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ) . $exception_log;
1133
+				$exception_log = EEH_File::get_file_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file).$exception_log;
1134 1134
 			}
1135
-			EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file, $exception_log );
1136
-		} catch( EE_Error $e ){
1137
-			EE_Error::add_error( sprintf( __(  'Event Espresso error logging could not be setup because: %s', 'event_espresso' ), $e->getMessage() ));
1135
+			EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file, $exception_log);
1136
+		} catch (EE_Error $e) {
1137
+			EE_Error::add_error(sprintf(__('Event Espresso error logging could not be setup because: %s', 'event_espresso'), $e->getMessage()));
1138 1138
 			return;
1139 1139
 		}
1140 1140
 
@@ -1170,8 +1170,8 @@  discard block
 block discarded – undo
1170 1170
 		$applies_when = '',
1171 1171
 		$error_type = null
1172 1172
 	) {
1173
-		if ( defined('WP_DEBUG') && WP_DEBUG ) {
1174
-			EEH_Debug_Tools::instance()->doing_it_wrong( $function, $message, $version, $applies_when, $error_type );
1173
+		if (defined('WP_DEBUG') && WP_DEBUG) {
1174
+			EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type);
1175 1175
 		}
1176 1176
 	}
1177 1177
 
@@ -1205,13 +1205,13 @@  discard block
 block discarded – undo
1205 1205
  */
1206 1206
 function espresso_error_enqueue_scripts() {
1207 1207
 	// js for error handling
1208
-	wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE );
1209
-	wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE );
1208
+	wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE);
1209
+	wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE);
1210 1210
 }
1211
-if ( is_admin() ) {
1212
-	add_action( 'admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1211
+if (is_admin()) {
1212
+	add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1213 1213
 } else {
1214
-	add_action( 'wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1214
+	add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1215 1215
 }
1216 1216
 
1217 1217
 
Please login to merge, or discard this patch.
core/EE_Load_Textdomain.core.php 2 patches
Braces   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -60,12 +62,14 @@  discard block
 block discarded – undo
60 62
 	 */
61 63
 	private static function _maybe_get_langfile() {
62 64
 		self::$_lang = get_locale();
63
-		if ( $has_check = get_option( 'ee_lang_check_' . self::$_lang . '_' . EVENT_ESPRESSO_VERSION ) || empty( self::$_lang ) )
64
-			return;
65
+		if ( $has_check = get_option( 'ee_lang_check_' . self::$_lang . '_' . EVENT_ESPRESSO_VERSION ) || empty( self::$_lang ) ) {
66
+					return;
67
+		}
65 68
 
66 69
 		//if lang is en_US or empty then lets just get out.  (Event Espresso core is en_US)
67
-		if ( empty( self::$_lang ) || self::$_lang == 'en_US' )
68
-			return;
70
+		if ( empty( self::$_lang ) || self::$_lang == 'en_US' ) {
71
+					return;
72
+		}
69 73
 
70 74
 		//made it here so let's get the file from the github repo
71 75
 		$sideloader_args = array(
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
 	public static function load_textdomain() {
40 40
 		self::_maybe_get_langfile();
41 41
 		//now load the textdomain
42
-		if ( ! empty( self::$_lang ) && is_readable( EE_LANGUAGES_SAFE_DIR . 'event_espresso-' . self::$_lang . '.mo' ) ) {
42
+		if ( ! empty(self::$_lang) && is_readable(EE_LANGUAGES_SAFE_DIR.'event_espresso-'.self::$_lang.'.mo')) {
43 43
 			load_plugin_textdomain('event_espresso', FALSE, EE_LANGUAGES_SAFE_LOC);
44
-		} else if ( ! empty( self::$_lang ) && is_readable( EE_LANGUAGES_SAFE_DIR . 'event-espresso-4-' . self::$_lang . '.mo' ) ) {
45
-			load_textdomain( 'event_espresso', EE_LANGUAGES_SAFE_DIR . 'event-espresso-4-' . self::$_lang . '.mo'  );
44
+		} else if ( ! empty(self::$_lang) && is_readable(EE_LANGUAGES_SAFE_DIR.'event-espresso-4-'.self::$_lang.'.mo')) {
45
+			load_textdomain('event_espresso', EE_LANGUAGES_SAFE_DIR.'event-espresso-4-'.self::$_lang.'.mo');
46 46
 		} else {
47
-			load_plugin_textdomain( 'event_espresso', FALSE, dirname( EE_PLUGIN_BASENAME ) . '/languages/');
47
+			load_plugin_textdomain('event_espresso', FALSE, dirname(EE_PLUGIN_BASENAME).'/languages/');
48 48
 		}
49 49
 	}
50 50
 
@@ -59,24 +59,24 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	private static function _maybe_get_langfile() {
61 61
 		self::$_lang = get_locale();
62
-		if ( $has_check = get_option( 'ee_lang_check_' . self::$_lang . '_' . EVENT_ESPRESSO_VERSION ) || empty( self::$_lang ) )
62
+		if ($has_check = get_option('ee_lang_check_'.self::$_lang.'_'.EVENT_ESPRESSO_VERSION) || empty(self::$_lang))
63 63
 			return;
64 64
 
65 65
 		//if lang is en_US or empty then lets just get out.  (Event Espresso core is en_US)
66
-		if ( empty( self::$_lang ) || self::$_lang == 'en_US' )
66
+		if (empty(self::$_lang) || self::$_lang == 'en_US')
67 67
 			return;
68 68
 
69 69
 		//made it here so let's get the file from the github repo
70 70
 		$sideloader_args = array(
71
-			'_upload_to' => EE_PLUGIN_DIR_PATH . 'languages/',
72
-			'_upload_from' => 'https://github.com/eventespresso/languages-ee4/blob/master/event_espresso-' . self::$_lang . '.mo?raw=true',
73
-			'_new_file_name' => 'event_espresso-' . self::$_lang . '.mo'
71
+			'_upload_to' => EE_PLUGIN_DIR_PATH.'languages/',
72
+			'_upload_from' => 'https://github.com/eventespresso/languages-ee4/blob/master/event_espresso-'.self::$_lang.'.mo?raw=true',
73
+			'_new_file_name' => 'event_espresso-'.self::$_lang.'.mo'
74 74
 			);
75 75
 
76 76
 
77
-		$sideloader = EE_Registry::instance()->load_helper('Sideloader', $sideloader_args, FALSE );
77
+		$sideloader = EE_Registry::instance()->load_helper('Sideloader', $sideloader_args, FALSE);
78 78
 
79 79
 		$sideloader->sideload();
80
-		update_option( 'ee_lang_check_' . self::$_lang . '_' . EVENT_ESPRESSO_VERSION, 1 );
80
+		update_option('ee_lang_check_'.self::$_lang.'_'.EVENT_ESPRESSO_VERSION, 1);
81 81
 	}
82 82
 } //end EE_Load_Textdomain
Please login to merge, or discard this patch.
core/EE_Log.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  *
4 6
  * Class EE_Log
Please login to merge, or discard this patch.
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  *
4 4
  * Class EE_Log
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @return EE_Log
63 63
 	 */
64 64
 	public static function instance() {
65
-		if ( ! self::$_instance instanceof EE_Log ) {
65
+		if ( ! self::$_instance instanceof EE_Log) {
66 66
 			self::$_instance = new self();
67 67
 		}
68 68
 		return self::$_instance;
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	private function __construct() {
76 76
 
77
-		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging ) {
77
+		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging) {
78 78
 			return;
79 79
 		}
80 80
 
81
-		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS;
81
+		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS;
82 82
 		$this->_log_file = EE_Registry::instance()->CFG->admin->log_file_name();
83 83
 		$this->_log = '';
84 84
 		$this->_debug_file = EE_Registry::instance()->CFG->admin->debug_file_name();
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 		$this->_remote_logging_url = EE_Registry::instance()->CFG->admin->remote_logging_url;
87 87
 		$this->_remote_log = '';
88 88
 
89
-		add_action( 'admin_init', array( $this, 'verify_filesystem' ), -10 );
90
-		add_action( 'AHEE_log', array( $this, 'log' ), 10, 4 );
91
-		if ( EE_Registry::instance()->CFG->admin->use_full_logging ) {
92
-			add_action( 'shutdown', array( $this, 'write_log' ), 9999 );
89
+		add_action('admin_init', array($this, 'verify_filesystem'), -10);
90
+		add_action('AHEE_log', array($this, 'log'), 10, 4);
91
+		if (EE_Registry::instance()->CFG->admin->use_full_logging) {
92
+			add_action('shutdown', array($this, 'write_log'), 9999);
93 93
 			// if WP_DEBUG
94
-			add_action( 'shutdown', array( $this, 'write_debug' ), 9999 );
94
+			add_action('shutdown', array($this, 'write_debug'), 9999);
95 95
 		}
96
-		if ( EE_Registry::instance()->CFG->admin->use_remote_logging ) {
97
-			add_action( 'shutdown', array( $this, 'send_log' ), 9999 );
96
+		if (EE_Registry::instance()->CFG->admin->use_remote_logging) {
97
+			add_action('shutdown', array($this, 'send_log'), 9999);
98 98
 		}
99 99
 
100 100
 	}
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function verify_filesystem() {
110 110
 		try {
111
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_log_file );
112
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_debug_file );
113
-			EEH_File::add_htaccess_deny_from_all( $this->_logs_folder );
114
-		} catch( EE_Error $e ){
115
-			EE_Error::add_error( sprintf( __(  'Event Espresso logging could not be setup because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
111
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_log_file);
112
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_debug_file);
113
+			EEH_File::add_htaccess_deny_from_all($this->_logs_folder);
114
+		} catch (EE_Error $e) {
115
+			EE_Error::add_error(sprintf(__('Event Espresso logging could not be setup because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
116 116
 			return;
117 117
 		}
118 118
 	}
@@ -129,15 +129,15 @@  discard block
 block discarded – undo
129 129
 	 * @param string $type
130 130
 	 * @return string
131 131
 	 */
132
-	private function _format_message( $file = '', $function = '', $message = '', $type = '' ) {
133
-		$msg = '----------------------------------------------------------------------------------------' . PHP_EOL;
134
-		$msg .= '[' . current_time( 'mysql' ) . '] ';
135
-		$msg .= ! empty( $file ) ? basename( $file ) : '';
136
-		$msg .= ! empty( $file ) && ! empty( $function ) ? ' -> ' : '';
137
-		$msg .= ! empty( $function ) ? $function . '()' : '';
132
+	private function _format_message($file = '', $function = '', $message = '', $type = '') {
133
+		$msg = '----------------------------------------------------------------------------------------'.PHP_EOL;
134
+		$msg .= '['.current_time('mysql').'] ';
135
+		$msg .= ! empty($file) ? basename($file) : '';
136
+		$msg .= ! empty($file) && ! empty($function) ? ' -> ' : '';
137
+		$msg .= ! empty($function) ? $function.'()' : '';
138 138
 		$msg .= PHP_EOL;
139
-		$type = ! empty( $type ) ? $type : 'log message';
140
-		$msg .= ! empty( $message ) ? "\t" . '[' . $type . '] ' . $message . PHP_EOL : '';
139
+		$type = ! empty($type) ? $type : 'log message';
140
+		$msg .= ! empty($message) ? "\t".'['.$type.'] '.$message.PHP_EOL : '';
141 141
 		return $msg;
142 142
 	}
143 143
 
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @param string $message
153 153
 	 * @param string $type
154 154
 	 */
155
-	public function log( $file = '', $function = '', $message = '', $type = '' ) {
156
-		$this->_log .= $this->_format_message( $file, $function, $message, $type );
155
+	public function log($file = '', $function = '', $message = '', $type = '') {
156
+		$this->_log .= $this->_format_message($file, $function, $message, $type);
157 157
 	}
158 158
 
159 159
 
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
 	public function write_log() {
166 166
 		try {
167 167
 			//get existing log file and append new log info
168
-			$this->_log = EEH_File::get_file_contents( $this->_logs_folder . $this->_log_file ) . $this->_log;
169
-			EEH_File::write_to_file( $this->_logs_folder . $this->_log_file, $this->_log, 'Event Espresso Log' );
170
-		} catch( EE_Error $e ){
171
-			EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
168
+			$this->_log = EEH_File::get_file_contents($this->_logs_folder.$this->_log_file).$this->_log;
169
+			EEH_File::write_to_file($this->_logs_folder.$this->_log_file, $this->_log, 'Event Espresso Log');
170
+		} catch (EE_Error $e) {
171
+			EE_Error::add_error(sprintf(__('Could not write to the Event Espresso log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
172 172
 			return;
173 173
 		}
174 174
 	}
@@ -181,31 +181,31 @@  discard block
 block discarded – undo
181 181
 	 */
182 182
 	public function send_log() {
183 183
 
184
-		if ( empty( $this->_remote_logging_url )) {
184
+		if (empty($this->_remote_logging_url)) {
185 185
 			return;
186 186
 		}
187 187
 
188
-		$data = 'domain=' . $_SERVER['HTTP_HOST'];
189
-		$data .= '&ip=' . $_SERVER['SERVER_ADDR'];
190
-		$data .= '&server_type=' . $_SERVER['SERVER_SOFTWARE'];
191
-		$data .= '&time=' . time();
192
-		$data .= '&remote_log=' . $this->_log;
193
-		$data .= '&request_array=' . json_encode( $_REQUEST );
188
+		$data = 'domain='.$_SERVER['HTTP_HOST'];
189
+		$data .= '&ip='.$_SERVER['SERVER_ADDR'];
190
+		$data .= '&server_type='.$_SERVER['SERVER_SOFTWARE'];
191
+		$data .= '&time='.time();
192
+		$data .= '&remote_log='.$this->_log;
193
+		$data .= '&request_array='.json_encode($_REQUEST);
194 194
 		$data .= '&action=save';
195 195
 
196
-		if ( defined( 'EELOGGING_PASS' )) {
197
-			$data .= '&pass=' . EELOGGING_PASS;
196
+		if (defined('EELOGGING_PASS')) {
197
+			$data .= '&pass='.EELOGGING_PASS;
198 198
 		}
199
-		if ( defined( 'EELOGGING_KEY' )) {
200
-			$data .= '&key=' . EELOGGING_KEY;
199
+		if (defined('EELOGGING_KEY')) {
200
+			$data .= '&key='.EELOGGING_KEY;
201 201
 		}
202 202
 
203
-		$c = curl_init( $this->_remote_logging_url );
204
-		curl_setopt( $c, CURLOPT_POST, TRUE );
205
-		curl_setopt( $c, CURLOPT_POSTFIELDS, $data );
206
-		curl_setopt( $c, CURLOPT_RETURNTRANSFER, TRUE );
207
-		curl_exec( $c );
208
-		curl_close( $c );
203
+		$c = curl_init($this->_remote_logging_url);
204
+		curl_setopt($c, CURLOPT_POST, TRUE);
205
+		curl_setopt($c, CURLOPT_POSTFIELDS, $data);
206
+		curl_setopt($c, CURLOPT_RETURNTRANSFER, TRUE);
207
+		curl_exec($c);
208
+		curl_close($c);
209 209
 	}
210 210
 
211 211
 
@@ -216,18 +216,18 @@  discard block
 block discarded – undo
216 216
 	 * previous entries are overwritten
217 217
 	 */
218 218
 	public function write_debug() {
219
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
219
+		if (defined('WP_DEBUG') && WP_DEBUG) {
220 220
 			$this->_debug_log = '';
221
-			foreach ( $_GET as $key => $value ) {
222
-				$this->_debug_log .= '$_GET["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
221
+			foreach ($_GET as $key => $value) {
222
+				$this->_debug_log .= '$_GET["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
223 223
 			}
224
-			foreach ( $_POST as $key => $value ) {
225
-				$this->_debug_log .= '$_POST["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
224
+			foreach ($_POST as $key => $value) {
225
+				$this->_debug_log .= '$_POST["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
226 226
 			}
227 227
 			try {
228
-				EEH_File::write_to_file( $this->_logs_folder . $this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log' );
229
-			} catch( EE_Error $e ){
230
-				EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso debug log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
228
+				EEH_File::write_to_file($this->_logs_folder.$this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log');
229
+			} catch (EE_Error $e) {
230
+				EE_Error::add_error(sprintf(__('Could not write to the Event Espresso debug log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
231 231
 				return;
232 232
 			}
233 233
 		}
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	 * __clone
240 240
 	 */
241 241
 	public function __clone() {
242
-		trigger_error( __( 'Clone is not allowed.', 'event_espresso' ), E_USER_ERROR );
242
+		trigger_error(__('Clone is not allowed.', 'event_espresso'), E_USER_ERROR);
243 243
 	}
244 244
 
245 245
 
Please login to merge, or discard this patch.
core/EE_Module_Request_Router.core.php 4 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 
122 122
 	/**
123 123
 	 * 	resolve_route
124
-	*
124
+	 *
125 125
 	 * 	this method simply takes a valid route, and resolves what module class method the route points to
126 126
 	 *
127 127
 	 *  @access 	public
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -61,31 +61,31 @@  discard block
 block discarded – undo
61 61
 	 * @param WP_Query $WP_Query
62 62
 	 * @return    string | NULL
63 63
 	 */
64
-	public function get_route( WP_Query $WP_Query ) {
64
+	public function get_route(WP_Query $WP_Query) {
65 65
 		$this->WP_Query = $WP_Query;
66 66
 		// assume this if first route being called
67 67
 		$previous_route = FALSE;
68 68
 		// but is it really ???
69
-		if ( ! empty( self::$_previous_routes )) {
69
+		if ( ! empty(self::$_previous_routes)) {
70 70
 			// get last run route
71
-			$previous_routes = array_values( self::$_previous_routes );
72
-			$previous_route = array_pop( $previous_routes );
71
+			$previous_routes = array_values(self::$_previous_routes);
72
+			$previous_route = array_pop($previous_routes);
73 73
 		}
74 74
 		//  has another route already been run ?
75
-		if ( $previous_route ) {
75
+		if ($previous_route) {
76 76
 			// check if  forwarding has been set
77
-			$current_route = $this->get_forward( $previous_route );
77
+			$current_route = $this->get_forward($previous_route);
78 78
 			try {
79 79
 				//check for recursive forwarding
80
-				if ( isset( self::$_previous_routes[ $current_route ] )) {
80
+				if (isset(self::$_previous_routes[$current_route])) {
81 81
 					throw new EE_Error(
82 82
 						sprintf(
83
-							__('An error occurred. The %s route has already been called, and therefore can not be forwarded to, because an infinite loop would be created and break the interweb.','event_espresso'),
83
+							__('An error occurred. The %s route has already been called, and therefore can not be forwarded to, because an infinite loop would be created and break the interweb.', 'event_espresso'),
84 84
 							$current_route
85 85
 						)
86 86
 					);
87 87
 				}
88
-			} catch ( EE_Error $e ) {
88
+			} catch (EE_Error $e) {
89 89
 				$e->get_error();
90 90
 				return NULL;
91 91
 			}
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
 			// grab all routes
96 96
 			$routes = EE_Registry::instance()->CFG->get_routes();
97 97
 			//d( $routes );
98
-			foreach( $routes as $key => $route ) {
98
+			foreach ($routes as $key => $route) {
99 99
 				// check request for module route
100
-				if ( EE_Registry::instance()->REQ->is_set( $key )) {
100
+				if (EE_Registry::instance()->REQ->is_set($key)) {
101 101
 					//echo '<b style="color:#2EA2CC;">key : <span style="color:#E76700">' . $key . '</span></b><br />';
102
-					$current_route = sanitize_text_field( EE_Registry::instance()->REQ->get( $key ));
103
-					if ( $current_route ) {
104
-						$current_route = array( $key, $current_route );
102
+					$current_route = sanitize_text_field(EE_Registry::instance()->REQ->get($key));
103
+					if ($current_route) {
104
+						$current_route = array($key, $current_route);
105 105
 						//echo '<b style="color:#2EA2CC;">current_route : <span style="color:#E76700">' . $current_route . '</span></b><br />';
106 106
 						break;
107 107
 					}
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 			}
110 110
 		}
111 111
 		// sorry, but I can't read what you route !
112
-		if ( empty( $current_route )) {
112
+		if (empty($current_route)) {
113 113
 			return NULL;
114 114
 		}
115 115
 		//add route to previous routes array
@@ -129,46 +129,46 @@  discard block
 block discarded – undo
129 129
 	 *  @param 	string		$current_route
130 130
 	 *  @return 	mixed		EED_Module | boolean
131 131
 	 */
132
-	public function resolve_route( $key, $current_route ) {
132
+	public function resolve_route($key, $current_route) {
133 133
 		// get module method that route has been mapped to
134
-		$module_method = EE_Config::get_route( $current_route, $key );
134
+		$module_method = EE_Config::get_route($current_route, $key);
135 135
 		//EEH_Debug_Tools::printr( $module_method, '$module_method  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
136 136
 		// verify result was returned
137
-		if ( empty( $module_method )) {
138
-			$msg = sprintf( __( 'The requested route %s could not be mapped to any registered modules.', 'event_espresso' ), $current_route );
139
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
137
+		if (empty($module_method)) {
138
+			$msg = sprintf(__('The requested route %s could not be mapped to any registered modules.', 'event_espresso'), $current_route);
139
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
140 140
 			return FALSE;
141 141
 		}
142 142
 		// verify that result is an array
143
-		if ( ! is_array( $module_method )) {
144
-			$msg = sprintf( __( 'The %s  route has not been properly registered.', 'event_espresso' ), $current_route );
145
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
143
+		if ( ! is_array($module_method)) {
144
+			$msg = sprintf(__('The %s  route has not been properly registered.', 'event_espresso'), $current_route);
145
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
146 146
 			return FALSE;
147 147
 		}
148 148
 		// grab module name
149 149
 		$module_name = $module_method[0];
150 150
 		// verify that a class method was registered properly
151
-		if ( ! isset( $module_method[1] )) {
152
-			$msg = sprintf( __( 'A class method for the %s  route has not been properly registered.', 'event_espresso' ), $current_route );
153
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
151
+		if ( ! isset($module_method[1])) {
152
+			$msg = sprintf(__('A class method for the %s  route has not been properly registered.', 'event_espresso'), $current_route);
153
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
154 154
 			return FALSE;
155 155
 		}
156 156
 		// grab method
157 157
 		$method = $module_method[1];
158 158
 		// verify that class exists
159
-		if ( ! class_exists( $module_name )) {
160
-			$msg = sprintf( __( 'The requested %s class could not be found.', 'event_espresso' ), $module_name );
161
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
159
+		if ( ! class_exists($module_name)) {
160
+			$msg = sprintf(__('The requested %s class could not be found.', 'event_espresso'), $module_name);
161
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
162 162
 			return FALSE;
163 163
 		}
164 164
 		// verify that method exists
165
-		if ( ! method_exists( $module_name, $method )) {
166
-			$msg = sprintf( __( 'The class method %s for the %s route is in invalid.', 'event_espresso' ), $method, $current_route );
167
-			EE_Error::add_error( $msg . '||' . $msg, __FILE__, __FUNCTION__, __LINE__ );
165
+		if ( ! method_exists($module_name, $method)) {
166
+			$msg = sprintf(__('The class method %s for the %s route is in invalid.', 'event_espresso'), $method, $current_route);
167
+			EE_Error::add_error($msg.'||'.$msg, __FILE__, __FUNCTION__, __LINE__);
168 168
 			return FALSE;
169 169
 		}
170 170
 		// instantiate module and call route method
171
-		return $this->_module_router( $module_name, $method );
171
+		return $this->_module_router($module_name, $method);
172 172
 	}
173 173
 
174 174
 
@@ -182,16 +182,16 @@  discard block
 block discarded – undo
182 182
 	 * @param   string  $module_name
183 183
 	 * @return    EED_Module | NULL
184 184
 	 */
185
-	public static function module_factory( $module_name ) {
186
-		if ( $module_name == 'EED_Module' ) {
187
-			EE_Error::add_error( sprintf( __( 'EED_Module is an abstract parent class an can not be instantiated. Please provide a proper module name.', 'event_espresso' ), $module_name ), __FILE__, __FUNCTION__, __LINE__ );
185
+	public static function module_factory($module_name) {
186
+		if ($module_name == 'EED_Module') {
187
+			EE_Error::add_error(sprintf(__('EED_Module is an abstract parent class an can not be instantiated. Please provide a proper module name.', 'event_espresso'), $module_name), __FILE__, __FUNCTION__, __LINE__);
188 188
 			return NULL;
189 189
 		}
190 190
 		// let's pause to reflect on this...
191
-		$mod_reflector = new ReflectionClass( $module_name );
191
+		$mod_reflector = new ReflectionClass($module_name);
192 192
 		// ensure that class is actually a module
193
-		if ( ! $mod_reflector->isSubclassOf( 'EED_Module' )) {
194
-			EE_Error::add_error( sprintf( __( 'The requested %s module is not of the class EED_Module.', 'event_espresso' ), $module_name ), __FILE__, __FUNCTION__, __LINE__ );
193
+		if ( ! $mod_reflector->isSubclassOf('EED_Module')) {
194
+			EE_Error::add_error(sprintf(__('The requested %s module is not of the class EED_Module.', 'event_espresso'), $module_name), __FILE__, __FUNCTION__, __LINE__);
195 195
 			return NULL;
196 196
 		}
197 197
 		// instantiate and return module class
@@ -209,14 +209,14 @@  discard block
 block discarded – undo
209 209
 	 * @param   string  $method
210 210
 	 * @return    EED_Module | NULL
211 211
 	 */
212
-	private function _module_router( $module_name, $method ) {
212
+	private function _module_router($module_name, $method) {
213 213
 		// instantiate module class
214
-		$module = EE_Module_Request_Router::module_factory( $module_name );
215
-		if ( $module instanceof EED_Module ) {
214
+		$module = EE_Module_Request_Router::module_factory($module_name);
215
+		if ($module instanceof EED_Module) {
216 216
 			// and call whatever action the route was for
217 217
 			try {
218
-				call_user_func( array( $module, $method ), $this->WP_Query );
219
-			} catch ( EE_Error $e ) {
218
+				call_user_func(array($module, $method), $this->WP_Query);
219
+			} catch (EE_Error $e) {
220 220
 				$e->get_error();
221 221
 				return NULL;
222 222
 			}
@@ -233,8 +233,8 @@  discard block
 block discarded – undo
233 233
 	 * @param $current_route
234 234
 	 * @return    string
235 235
 	 */
236
-	public function get_forward( $current_route ) {
237
-		return EE_Config::get_forward( $current_route );
236
+	public function get_forward($current_route) {
237
+		return EE_Config::get_forward($current_route);
238 238
 	}
239 239
 
240 240
 
@@ -246,8 +246,8 @@  discard block
 block discarded – undo
246 246
 	 * @param $current_route
247 247
 	 * @return    string
248 248
 	 */
249
-	public function get_view( $current_route ) {
250
-		return EE_Config::get_view( $current_route );
249
+	public function get_view($current_route) {
250
+		return EE_Config::get_view($current_route);
251 251
 	}
252 252
 
253 253
 
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 	 * @param $b
258 258
 	 * @return bool
259 259
 	 */
260
-	public function __set($a,$b) { return FALSE; }
260
+	public function __set($a, $b) { return FALSE; }
261 261
 
262 262
 
263 263
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
 	 *    get_view
244 244
 	 *
245 245
 	 * @access    public
246
-	 * @param $current_route
246
+	 * @param string $current_route
247 247
 	 * @return    string
248 248
 	 */
249 249
 	public function get_view( $current_route ) {
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_Object_Repository.core.php 1 patch
Spacing   +15 added lines, -15 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_Object_Repository
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param array $arguments	arrays of arguments that will be passed to the object's callback method
39 39
 	 * @return bool | int
40 40
 	 */
41
-	protected function _call_user_func_array_on_current( $callback = '', $arguments = array() ) {
42
-		if ( $callback !== '' && method_exists( $this->current(), $callback ) ) {
43
-			return call_user_func_array( array( $this->current(), $callback ), $arguments );
41
+	protected function _call_user_func_array_on_current($callback = '', $arguments = array()) {
42
+		if ($callback !== '' && method_exists($this->current(), $callback)) {
43
+			return call_user_func_array(array($this->current(), $callback), $arguments);
44 44
 		}
45 45
 		return false;
46 46
 	}
@@ -56,13 +56,13 @@  discard block
 block discarded – undo
56 56
 	 * @param string $callback  name of method found on repository objects to be called
57 57
 	 * @return bool | int
58 58
 	 */
59
-	protected function _call_user_func_on_all( $callback = '' ) {
59
+	protected function _call_user_func_on_all($callback = '') {
60 60
 		$success = true;
61
-		if ( $this->valid() ) {
61
+		if ($this->valid()) {
62 62
 			$this->rewind();
63
-			while ( $this->valid() ) {
63
+			while ($this->valid()) {
64 64
 				// any negative result will toggle success to false
65
-				$success = $this->_call_user_func_array_on_current( $callback ) ? $success : false;
65
+				$success = $this->_call_user_func_array_on_current($callback) ? $success : false;
66 66
 				$this->next();
67 67
 			}
68 68
 			$this->rewind();
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
 	 * @param array 	$persistence_arguments	arrays of arguments that will be passed to the object's persistence method
87 87
 	 * @return bool | int
88 88
 	 */
89
-	public function persist( $persistence_callback = '', $persistence_arguments = array() ) {
90
-		$persistence_callback = ! empty( $persistence_callback ) ? $persistence_callback : $this->persist_method;
91
-		return $this->_call_user_func_array_on_current( $persistence_callback, $persistence_arguments );
89
+	public function persist($persistence_callback = '', $persistence_arguments = array()) {
90
+		$persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method;
91
+		return $this->_call_user_func_array_on_current($persistence_callback, $persistence_arguments);
92 92
 	}
93 93
 
94 94
 
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
 	 * @param string 	$persistence_callback 		name of method found on object that can be used for persisting the object
103 103
 	 * @return bool | int
104 104
 	 */
105
-	public function persist_all( $persistence_callback = '' ) {
106
-		$persistence_callback = ! empty( $persistence_callback ) ? $persistence_callback : $this->persist_method;
107
-		return $this->_call_user_func_on_all( $persistence_callback );
105
+	public function persist_all($persistence_callback = '') {
106
+		$persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method;
107
+		return $this->_call_user_func_on_all($persistence_callback);
108 108
 	}
109 109
 
110 110
 
Please login to merge, or discard this patch.
core/EE_PUE.core.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
 	/**
34 34
 	 * This property is used to hold an array of EE_default_term objects assigned to a custom post type when the post for that post type is published with no terms set for the taxonomy.
35
-	  *
35
+	 *
36 36
 	 * @var array of EE_Default_Term objects
37 37
 	 */
38 38
 	protected $_default_terms = array();
Please login to merge, or discard this patch.
Spacing   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
 	public function __construct() {
50 50
 //		throw new EE_Error('error');
51 51
 
52
-		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
52
+		do_action('AHEE_log', __CLASS__, __FUNCTION__);
53 53
 
54 54
 		//wp have no MONTH_IN_SECONDS constant.  So we approximate our own assuming all months are 4 weeks long.
55
-		if ( !defined('MONTH_IN_SECONDS' ) )
56
-			define( 'MONTH_IN_SECONDS', WEEK_IN_SECONDS * 4 );
55
+		if ( ! defined('MONTH_IN_SECONDS'))
56
+			define('MONTH_IN_SECONDS', WEEK_IN_SECONDS * 4);
57 57
 
58
-		if(EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance){
58
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
59 59
 			$this->_uxip_hooks();
60 60
 		}
61 61
 
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
 		$ueip_has_notified = EE_Registry::instance()->CFG->core->ee_ueip_has_notified;
65 65
 
66 66
 		//has optin been selected for data collection?
67
-		$espresso_data_optin = !empty($ueip_optin) ? $ueip_optin : NULL;
67
+		$espresso_data_optin = ! empty($ueip_optin) ? $ueip_optin : NULL;
68 68
 
69
-		if ( empty($ueip_has_notified) && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_mode::level_2_complete_maintenance ) {
70
-			add_action('admin_notices', array( $this, 'espresso_data_collection_optin_notice' ), 10 );
71
-			add_action('admin_enqueue_scripts', array( $this, 'espresso_data_collection_enqueue_scripts' ), 10 );
72
-			add_action('wp_ajax_espresso_data_optin', array( $this, 'espresso_data_optin_ajax_handler' ), 10 );
69
+		if (empty($ueip_has_notified) && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_mode::level_2_complete_maintenance) {
70
+			add_action('admin_notices', array($this, 'espresso_data_collection_optin_notice'), 10);
71
+			add_action('admin_enqueue_scripts', array($this, 'espresso_data_collection_enqueue_scripts'), 10);
72
+			add_action('wp_ajax_espresso_data_optin', array($this, 'espresso_data_optin_ajax_handler'), 10);
73 73
 			update_option('ee_ueip_optin', 'yes');
74 74
 			$espresso_data_optin = 'yes';
75 75
 		}
@@ -78,80 +78,80 @@  discard block
 block discarded – undo
78 78
 		$extra_stats = array();
79 79
 
80 80
 		//only collect extra stats if the plugin user has opted in.
81
-		if ( !empty($espresso_data_optin) && $espresso_data_optin == 'yes' ) {
81
+		if ( ! empty($espresso_data_optin) && $espresso_data_optin == 'yes') {
82 82
 			//let's only setup extra data if transient has expired
83
-			if ( false === ( $transient = get_transient('ee_extra_data') ) && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ) {
83
+			if (false === ($transient = get_transient('ee_extra_data')) && EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
84 84
 
85 85
 				$current_site = is_multisite() ? get_current_site() : NULL;
86
-				$site_pre = ! is_main_site() && ! empty($current_site) ? trim( preg_replace('/\b\w\S\w\b/', '', $current_site->domain ), '.' ) . '_' : '';
86
+				$site_pre = ! is_main_site() && ! empty($current_site) ? trim(preg_replace('/\b\w\S\w\b/', '', $current_site->domain), '.').'_' : '';
87 87
 
88 88
 
89 89
 				//active gateways
90 90
 				$active_gateways = get_option('event_espresso_active_gateways');
91
-				if ( !empty($active_gateways ) ) {
92
-					foreach ( (array) $active_gateways as $gateway => $ignore ) {
93
-						$extra_stats[$site_pre . $gateway . '_gateway_active'] = 1;
91
+				if ( ! empty($active_gateways)) {
92
+					foreach ((array) $active_gateways as $gateway => $ignore) {
93
+						$extra_stats[$site_pre.$gateway.'_gateway_active'] = 1;
94 94
 					}
95 95
 				}
96 96
 
97
-				if ( is_multisite() && is_main_site() ) {
97
+				if (is_multisite() && is_main_site()) {
98 98
 					$extra_stats['is_multisite'] = true;
99 99
 				}
100 100
 
101 101
 				//what is the current active theme?
102 102
 				$active_theme = get_option('uxip_ee_active_theme');
103
-				if ( !empty( $active_theme ) )
104
-					$extra_stats[$site_pre . 'active_theme'] = $active_theme;
103
+				if ( ! empty($active_theme))
104
+					$extra_stats[$site_pre.'active_theme'] = $active_theme;
105 105
 
106 106
 				//event info regarding an all event count and all "active" event count
107 107
 				$all_events_count = get_option('uxip_ee4_all_events_count');
108
-				if ( !empty( $all_events_count ) )
109
-					$extra_stats[$site_pre . 'ee4_all_events_count'] = $all_events_count;
108
+				if ( ! empty($all_events_count))
109
+					$extra_stats[$site_pre.'ee4_all_events_count'] = $all_events_count;
110 110
 				$active_events_count = get_option('uxip_ee4_active_events_count');
111
-				if ( !empty( $active_events_count ) )
112
-					$extra_stats[$site_pre . 'ee4_active_events_count'] = $active_events_count;
111
+				if ( ! empty($active_events_count))
112
+					$extra_stats[$site_pre.'ee4_active_events_count'] = $active_events_count;
113 113
 
114 114
 				//datetime stuff
115 115
 				$dtt_count = get_option('uxip_ee_all_dtts_count');
116
-				if ( !empty( $dtt_count ) )
117
-					$extra_stats[$site_pre . 'all_dtts_count'] = $dtt_count;
116
+				if ( ! empty($dtt_count))
117
+					$extra_stats[$site_pre.'all_dtts_count'] = $dtt_count;
118 118
 
119 119
 				$dtt_sold = get_option('uxip_ee_dtt_sold');
120
-				if ( !empty( $dtt_sold ) )
121
-					$extra_stats[$site_pre . 'dtt_sold'] = $dtt_sold;
120
+				if ( ! empty($dtt_sold))
121
+					$extra_stats[$site_pre.'dtt_sold'] = $dtt_sold;
122 122
 
123 123
 				//ticket stuff
124 124
 				$all_tkt_count = get_option('uxip_ee_all_tkt_count');
125
-				if ( !empty( $all_tkt_count ) )
126
-					$extra_stats[$site_pre . 'all_tkt_count'] = $all_tkt_count;
125
+				if ( ! empty($all_tkt_count))
126
+					$extra_stats[$site_pre.'all_tkt_count'] = $all_tkt_count;
127 127
 
128 128
 				$free_tkt_count = get_option('uxip_ee_free_tkt_count');
129
-				if ( !empty( $free_tkt_count ) )
130
-					$extra_stats[$site_pre . 'free_tkt_count'] = $free_tkt_count;
129
+				if ( ! empty($free_tkt_count))
130
+					$extra_stats[$site_pre.'free_tkt_count'] = $free_tkt_count;
131 131
 
132 132
 				$paid_tkt_count = get_option('uxip_ee_paid_tkt_count');
133
-				if ( !empty( $paid_tkt_count ) )
134
-					$extra_stats[$site_pre . 'paid_tkt_count'] = $paid_tkt_count;
133
+				if ( ! empty($paid_tkt_count))
134
+					$extra_stats[$site_pre.'paid_tkt_count'] = $paid_tkt_count;
135 135
 
136
-				$tkt_sold = get_option('uxip_ee_tkt_sold' );
137
-				if ( !empty($tkt_sold) )
138
-					$extra_stats[$site_pre . 'tkt_sold'] = $tkt_sold;
136
+				$tkt_sold = get_option('uxip_ee_tkt_sold');
137
+				if ( ! empty($tkt_sold))
138
+					$extra_stats[$site_pre.'tkt_sold'] = $tkt_sold;
139 139
 
140 140
 				//phpversion checking
141 141
 				$extra_stats['phpversion'] = function_exists('phpversion') ? phpversion() : 'unknown';
142 142
 
143 143
 				//set transient
144
-				set_transient( 'ee_extra_data', $extra_stats, WEEK_IN_SECONDS );
144
+				set_transient('ee_extra_data', $extra_stats, WEEK_IN_SECONDS);
145 145
 			}
146 146
 		}
147 147
 
148 148
 
149 149
 
150 150
 		// PUE Auto Upgrades stuff
151
-		if (is_readable(EE_THIRD_PARTY . 'pue/pue-client.php')) { //include the file
152
-			require_once(EE_THIRD_PARTY . 'pue/pue-client.php' );
151
+		if (is_readable(EE_THIRD_PARTY.'pue/pue-client.php')) { //include the file
152
+			require_once(EE_THIRD_PARTY.'pue/pue-client.php');
153 153
 
154
-			$api_key = isset( EE_Registry::instance()->NET_CFG->core->site_license_key ) ? EE_Registry::instance()->NET_CFG->core->site_license_key : '';
154
+			$api_key = isset(EE_Registry::instance()->NET_CFG->core->site_license_key) ? EE_Registry::instance()->NET_CFG->core->site_license_key : '';
155 155
 			$host_server_url = 'https://eventespresso.com'; //this needs to be the host server where plugin update engine is installed. Note, if you leave this blank then it is assumed the WordPress repo will be used and we'll just check there.
156 156
 
157 157
 			//Note: PUE uses a simple preg_match to determine what type is currently installed based on version number.  So it's important that you use a key for the version type that is unique and not found in another key.
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
 			//$plugin_slug['prerelease']['b'] = 'some-pre-release-slug';
164 164
 			//..WOULD work!
165 165
 			$plugin_slug = array(
166
-				'free' => array( 'decaf' => 'event-espresso-core-decaf' ),
167
-				'premium' => array( 'p' => 'event-espresso-core-reg' ),
168
-				'prerelease' => array( 'beta' => 'event-espresso-core-pr' )
166
+				'free' => array('decaf' => 'event-espresso-core-decaf'),
167
+				'premium' => array('p' => 'event-espresso-core-reg'),
168
+				'prerelease' => array('beta' => 'event-espresso-core-pr')
169 169
 				);
170 170
 
171 171
 
@@ -192,14 +192,14 @@  discard block
 block discarded – undo
192 192
 	 * The purpose of this function is to display information about Event Espresso data collection and a optin selection for extra data collecting by users.
193 193
 	 * @return string html.
194 194
 	 */
195
-	 public static function espresso_data_collection_optin_text( $extra = TRUE ) {
196
-	 	if ( ! $extra ) {
197
-			 echo '<h2 class="ee-admin-settings-hdr" '. (!$extra ? 'id="UXIP_settings"' : '').'>'.__('User eXperience Improvement Program (UXIP)', 'event_espresso').EEH_Template::get_help_tab_link('organization_logo_info').'</h2>';
198
-			 echo sprintf( __('%sPlease help us make Event Espresso better and vote for your favorite features.%s The %sUser eXperience Improvement Program (UXIP)%s, has been created so when you use Event Espresso you are voting for the features and settings that are important to you. The UXIP helps us understand how you use our products and services, track problems and in what context. If you opt-out of the UXIP you essentially elect for us to disregard how you use Event Espresso as we build new features and make changes. Participation in the program is completely voluntary but it is enabled by default. The end results of the UXIP are software improvements to better meet your needs. The data we collect will never be sold, traded, or misused in any way. %sPlease see our %sPrivacy Policy%s for more information.', 'event_espresso'), '<p><em>', '</em></p>','<a href="http://eventespresso.com/about/user-experience-improvement-program-uxip/" target="_blank">','</a>','<br><br>','<a href="http://eventespresso.com/about/privacy-policy/" target="_blank">','</a>' );
195
+	 public static function espresso_data_collection_optin_text($extra = TRUE) {
196
+	 	if ( ! $extra) {
197
+			 echo '<h2 class="ee-admin-settings-hdr" '.( ! $extra ? 'id="UXIP_settings"' : '').'>'.__('User eXperience Improvement Program (UXIP)', 'event_espresso').EEH_Template::get_help_tab_link('organization_logo_info').'</h2>';
198
+			 echo sprintf(__('%sPlease help us make Event Espresso better and vote for your favorite features.%s The %sUser eXperience Improvement Program (UXIP)%s, has been created so when you use Event Espresso you are voting for the features and settings that are important to you. The UXIP helps us understand how you use our products and services, track problems and in what context. If you opt-out of the UXIP you essentially elect for us to disregard how you use Event Espresso as we build new features and make changes. Participation in the program is completely voluntary but it is enabled by default. The end results of the UXIP are software improvements to better meet your needs. The data we collect will never be sold, traded, or misused in any way. %sPlease see our %sPrivacy Policy%s for more information.', 'event_espresso'), '<p><em>', '</em></p>', '<a href="http://eventespresso.com/about/user-experience-improvement-program-uxip/" target="_blank">', '</a>', '<br><br>', '<a href="http://eventespresso.com/about/privacy-policy/" target="_blank">', '</a>');
199 199
 		} else {
200
-			$settings_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default'), admin_url( 'admin.php?page=espresso_general_settings') );
200
+			$settings_url = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default'), admin_url('admin.php?page=espresso_general_settings'));
201 201
 			$settings_url .= '#UXIP_settings';
202
-			echo sprintf( __( 'The Event Espresso UXIP feature is active on your site. For %smore info%s and to opt-out %sclick here%s.', 'event_espresso' ), '<a href="http://eventespresso.com/about/user-experience-improvement-program-uxip/" traget="_blank">', '</a>', '<a href="' . $settings_url . '" target="_blank">', '</a>' );
202
+			echo sprintf(__('The Event Espresso UXIP feature is active on your site. For %smore info%s and to opt-out %sclick here%s.', 'event_espresso'), '<a href="http://eventespresso.com/about/user-experience-improvement-program-uxip/" traget="_blank">', '</a>', '<a href="'.$settings_url.'" target="_blank">', '</a>');
203 203
 		}
204 204
 	}
205 205
 
@@ -208,9 +208,9 @@  discard block
 block discarded – undo
208 208
 
209 209
 	function espresso_data_collection_optin_notice() {
210 210
 		$ueip_has_notified = EE_Registry::instance()->CFG->core->ee_ueip_has_notified;
211
-		if ( $ueip_has_notified ) return;
212
-		$settings_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default'), admin_url( 'admin.php?page=espresso_general_settings') );
213
-		$settings_url = $settings_url . '#UXIP_settings';
211
+		if ($ueip_has_notified) return;
212
+		$settings_url = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default'), admin_url('admin.php?page=espresso_general_settings'));
213
+		$settings_url = $settings_url.'#UXIP_settings';
214 214
 		?>
215 215
 		<div class="updated data-collect-optin" id="espresso-data-collect-optin-container">
216 216
 			<div id="data-collect-optin-options-container">
@@ -232,8 +232,8 @@  discard block
 block discarded – undo
232 232
 	 * @return void
233 233
 	 */
234 234
 	function espresso_data_collection_enqueue_scripts() {
235
-		wp_register_script( 'ee-data-optin-js', EE_GLOBAL_ASSETS_URL . 'scripts/ee-data-optin.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
236
-		wp_register_style( 'ee-data-optin-css', EE_GLOBAL_ASSETS_URL . 'css/ee-data-optin.css', array(), EVENT_ESPRESSO_VERSION );
235
+		wp_register_script('ee-data-optin-js', EE_GLOBAL_ASSETS_URL.'scripts/ee-data-optin.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
236
+		wp_register_style('ee-data-optin-css', EE_GLOBAL_ASSETS_URL.'css/ee-data-optin.css', array(), EVENT_ESPRESSO_VERSION);
237 237
 
238 238
 		wp_enqueue_script('ee-data-optin-js');
239 239
 		wp_enqueue_style('ee-data-optin-css');
@@ -248,14 +248,14 @@  discard block
 block discarded – undo
248 248
 	function espresso_data_optin_ajax_handler() {
249 249
 
250 250
 		//verify nonce
251
-		if ( isset($_POST['nonce']) && !wp_verify_nonce($_POST['nonce'], 'ee-data-optin') ) exit();
251
+		if (isset($_POST['nonce']) && ! wp_verify_nonce($_POST['nonce'], 'ee-data-optin')) exit();
252 252
 
253 253
 		//made it here so let's save the selection
254
-		$ueip_optin = isset( $_POST['selection'] ) ? $_POST['selection'] : 'no';
254
+		$ueip_optin = isset($_POST['selection']) ? $_POST['selection'] : 'no';
255 255
 
256 256
 		//update_option('ee_ueip_optin', $ueip_optin);
257 257
 		EE_Registry::instance()->CFG->core->ee_ueip_has_notified = 1;
258
-		EE_Registry::instance()->CFG->update_espresso_config( FALSE, FALSE );
258
+		EE_Registry::instance()->CFG->update_espresso_config(FALSE, FALSE);
259 259
 		exit();
260 260
 	}
261 261
 
@@ -268,22 +268,22 @@  discard block
 block discarded – undo
268 268
 	 */
269 269
 	public static function is_update_available($basename = '') {
270 270
 
271
-		$basename = ! empty( $basename ) ? $basename : EE_PLUGIN_BASENAME;
271
+		$basename = ! empty($basename) ? $basename : EE_PLUGIN_BASENAME;
272 272
 
273 273
 		$update = false;
274 274
 
275
-		$folder = DS . dirname($basename); // should take "event-espresso-core/espresso.php" and change to "/event-espresso-core"
275
+		$folder = DS.dirname($basename); // should take "event-espresso-core/espresso.php" and change to "/event-espresso-core"
276 276
 
277 277
 		$plugins = get_plugins($folder);
278
-		$current = get_site_transient( 'update_plugins' );
278
+		$current = get_site_transient('update_plugins');
279 279
 
280
-		foreach ( (array) $plugins as $plugin_file => $plugin_data ) {
281
-			if ( isset( $current->response['plugin_file'] ) )
280
+		foreach ((array) $plugins as $plugin_file => $plugin_data) {
281
+			if (isset($current->response['plugin_file']))
282 282
 				$update = true;
283 283
 		}
284 284
 
285 285
 		//it's possible that there is an update but an invalid site-license-key is in use
286
-		if ( get_site_option('pue_json_error_' . $basename ) )
286
+		if (get_site_option('pue_json_error_'.$basename))
287 287
 			$update = true;
288 288
 
289 289
 		return $update;
@@ -301,9 +301,9 @@  discard block
 block discarded – undo
301 301
 	 * @return void
302 302
 	 */
303 303
 	public function _uxip_hooks() {
304
-		if ( EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ) {
305
-			add_action('admin_init', array( $this, 'track_active_theme' ) );
306
-			add_action('admin_init', array( $this, 'track_event_info' ) );
304
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
305
+			add_action('admin_init', array($this, 'track_active_theme'));
306
+			add_action('admin_init', array($this, 'track_event_info'));
307 307
 		}
308 308
 	}
309 309
 
@@ -312,65 +312,65 @@  discard block
 block discarded – undo
312 312
 
313 313
 	public function track_active_theme() {
314 314
 		//we only check this once a month.
315
-		if ( false === ( $transient = get_transient( 'ee_active_theme_check' ) ) ) {
315
+		if (false === ($transient = get_transient('ee_active_theme_check'))) {
316 316
 			$theme = wp_get_theme();
317
-			update_option('uxip_ee_active_theme', $theme->get('Name') );
318
-			set_transient('ee_active_theme_check', 1, MONTH_IN_SECONDS );
317
+			update_option('uxip_ee_active_theme', $theme->get('Name'));
318
+			set_transient('ee_active_theme_check', 1, MONTH_IN_SECONDS);
319 319
 		}
320 320
 	}
321 321
 
322 322
 
323 323
 	public function track_event_info() {
324 324
 		//we only check this once every couple weeks.
325
-		if ( false === ( $transient = get_transient( 'ee4_event_info_check') ) ) {
325
+		if (false === ($transient = get_transient('ee4_event_info_check'))) {
326 326
 			//first let's get the number for ALL events
327 327
 			$EVT = EE_Registry::instance()->load_model('Event');
328 328
 			$DTT = EE_Registry::instance()->load_model('Datetime');
329 329
 			$TKT = EE_Registry::instance()->load_model('Ticket');
330 330
 			$count = $EVT->count();
331
-			if ( $count > 0 )
331
+			if ($count > 0)
332 332
 				update_option('uxip_ee4_all_events_count', $count);
333 333
 
334 334
 			//next let's just get the number of ACTIVE events
335 335
 			$count_active = $EVT->get_active_events(array(), TRUE);
336
-			if ( $count_active > 0 )
336
+			if ($count_active > 0)
337 337
 				update_option('uxip_ee4_active_events_count', $count_active);
338 338
 
339 339
 			//datetimes!
340 340
 			$dtt_count = $DTT->count();
341
-			if ( $dtt_count > 0 )
342
-				update_option( 'uxip_ee_all_dtts_count', $dtt_count );
341
+			if ($dtt_count > 0)
342
+				update_option('uxip_ee_all_dtts_count', $dtt_count);
343 343
 
344 344
 
345 345
 			//dttsold
346 346
 			$dtt_sold = $DTT->sum(array(), 'DTT_sold');
347
-			if ( $dtt_sold > 0 )
348
-				update_option( 'uxip_ee_dtt_sold', $dtt_sold );
347
+			if ($dtt_sold > 0)
348
+				update_option('uxip_ee_dtt_sold', $dtt_sold);
349 349
 
350 350
 			//allticketcount
351 351
 			$all_tkt_count = $TKT->count();
352
-			if ( $all_tkt_count > 0 )
353
-				update_option( 'uxip_ee_all_tkt_count', $all_tkt_count );
352
+			if ($all_tkt_count > 0)
353
+				update_option('uxip_ee_all_tkt_count', $all_tkt_count);
354 354
 
355 355
 			//freetktcount
356
-			$_where = array( 'TKT_price' => 0 );
356
+			$_where = array('TKT_price' => 0);
357 357
 			$free_tkt_count = $TKT->count(array($_where));
358
-			if ( $free_tkt_count > 0 )
359
-				update_option( 'uxip_ee_free_tkt_count', $free_tkt_count );
358
+			if ($free_tkt_count > 0)
359
+				update_option('uxip_ee_free_tkt_count', $free_tkt_count);
360 360
 
361 361
 			//paidtktcount
362
-			$_where = array( 'TKT_price' => array('>', 0) );
363
-			$paid_tkt_count = $TKT->count( array( $_where ) );
364
-			if ( $paid_tkt_count > 0 )
365
-				update_option( 'uxip_ee_paid_tkt_count', $paid_tkt_count );
362
+			$_where = array('TKT_price' => array('>', 0));
363
+			$paid_tkt_count = $TKT->count(array($_where));
364
+			if ($paid_tkt_count > 0)
365
+				update_option('uxip_ee_paid_tkt_count', $paid_tkt_count);
366 366
 
367 367
 			//tktsold
368
-			$tkt_sold = $TKT->sum( array(), 'TKT_sold' );
369
-			if( $tkt_sold > 0 )
370
-				update_option( 'uxip_ee_tkt_sold', $tkt_sold );
368
+			$tkt_sold = $TKT->sum(array(), 'TKT_sold');
369
+			if ($tkt_sold > 0)
370
+				update_option('uxip_ee_tkt_sold', $tkt_sold);
371 371
 
372 372
 
373
-			set_transient( 'ee4_event_info_check', 1, WEEK_IN_SECONDS * 2 );
373
+			set_transient('ee4_event_info_check', 1, WEEK_IN_SECONDS * 2);
374 374
 		}
375 375
 	}
376 376
 
Please login to merge, or discard this patch.
Braces   +69 added lines, -43 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -52,8 +54,9 @@  discard block
 block discarded – undo
52 54
 		do_action( 'AHEE_log', __CLASS__, __FUNCTION__ );
53 55
 
54 56
 		//wp have no MONTH_IN_SECONDS constant.  So we approximate our own assuming all months are 4 weeks long.
55
-		if ( !defined('MONTH_IN_SECONDS' ) )
56
-			define( 'MONTH_IN_SECONDS', WEEK_IN_SECONDS * 4 );
57
+		if ( !defined('MONTH_IN_SECONDS' ) ) {
58
+					define( 'MONTH_IN_SECONDS', WEEK_IN_SECONDS * 4 );
59
+		}
57 60
 
58 61
 		if(EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance){
59 62
 			$this->_uxip_hooks();
@@ -100,42 +103,51 @@  discard block
 block discarded – undo
100 103
 
101 104
 				//what is the current active theme?
102 105
 				$active_theme = get_option('uxip_ee_active_theme');
103
-				if ( !empty( $active_theme ) )
104
-					$extra_stats[$site_pre . 'active_theme'] = $active_theme;
106
+				if ( !empty( $active_theme ) ) {
107
+									$extra_stats[$site_pre . 'active_theme'] = $active_theme;
108
+				}
105 109
 
106 110
 				//event info regarding an all event count and all "active" event count
107 111
 				$all_events_count = get_option('uxip_ee4_all_events_count');
108
-				if ( !empty( $all_events_count ) )
109
-					$extra_stats[$site_pre . 'ee4_all_events_count'] = $all_events_count;
112
+				if ( !empty( $all_events_count ) ) {
113
+									$extra_stats[$site_pre . 'ee4_all_events_count'] = $all_events_count;
114
+				}
110 115
 				$active_events_count = get_option('uxip_ee4_active_events_count');
111
-				if ( !empty( $active_events_count ) )
112
-					$extra_stats[$site_pre . 'ee4_active_events_count'] = $active_events_count;
116
+				if ( !empty( $active_events_count ) ) {
117
+									$extra_stats[$site_pre . 'ee4_active_events_count'] = $active_events_count;
118
+				}
113 119
 
114 120
 				//datetime stuff
115 121
 				$dtt_count = get_option('uxip_ee_all_dtts_count');
116
-				if ( !empty( $dtt_count ) )
117
-					$extra_stats[$site_pre . 'all_dtts_count'] = $dtt_count;
122
+				if ( !empty( $dtt_count ) ) {
123
+									$extra_stats[$site_pre . 'all_dtts_count'] = $dtt_count;
124
+				}
118 125
 
119 126
 				$dtt_sold = get_option('uxip_ee_dtt_sold');
120
-				if ( !empty( $dtt_sold ) )
121
-					$extra_stats[$site_pre . 'dtt_sold'] = $dtt_sold;
127
+				if ( !empty( $dtt_sold ) ) {
128
+									$extra_stats[$site_pre . 'dtt_sold'] = $dtt_sold;
129
+				}
122 130
 
123 131
 				//ticket stuff
124 132
 				$all_tkt_count = get_option('uxip_ee_all_tkt_count');
125
-				if ( !empty( $all_tkt_count ) )
126
-					$extra_stats[$site_pre . 'all_tkt_count'] = $all_tkt_count;
133
+				if ( !empty( $all_tkt_count ) ) {
134
+									$extra_stats[$site_pre . 'all_tkt_count'] = $all_tkt_count;
135
+				}
127 136
 
128 137
 				$free_tkt_count = get_option('uxip_ee_free_tkt_count');
129
-				if ( !empty( $free_tkt_count ) )
130
-					$extra_stats[$site_pre . 'free_tkt_count'] = $free_tkt_count;
138
+				if ( !empty( $free_tkt_count ) ) {
139
+									$extra_stats[$site_pre . 'free_tkt_count'] = $free_tkt_count;
140
+				}
131 141
 
132 142
 				$paid_tkt_count = get_option('uxip_ee_paid_tkt_count');
133
-				if ( !empty( $paid_tkt_count ) )
134
-					$extra_stats[$site_pre . 'paid_tkt_count'] = $paid_tkt_count;
143
+				if ( !empty( $paid_tkt_count ) ) {
144
+									$extra_stats[$site_pre . 'paid_tkt_count'] = $paid_tkt_count;
145
+				}
135 146
 
136 147
 				$tkt_sold = get_option('uxip_ee_tkt_sold' );
137
-				if ( !empty($tkt_sold) )
138
-					$extra_stats[$site_pre . 'tkt_sold'] = $tkt_sold;
148
+				if ( !empty($tkt_sold) ) {
149
+									$extra_stats[$site_pre . 'tkt_sold'] = $tkt_sold;
150
+				}
139 151
 
140 152
 				//phpversion checking
141 153
 				$extra_stats['phpversion'] = function_exists('phpversion') ? phpversion() : 'unknown';
@@ -208,7 +220,9 @@  discard block
 block discarded – undo
208 220
 
209 221
 	function espresso_data_collection_optin_notice() {
210 222
 		$ueip_has_notified = EE_Registry::instance()->CFG->core->ee_ueip_has_notified;
211
-		if ( $ueip_has_notified ) return;
223
+		if ( $ueip_has_notified ) {
224
+			return;
225
+		}
212 226
 		$settings_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default'), admin_url( 'admin.php?page=espresso_general_settings') );
213 227
 		$settings_url = $settings_url . '#UXIP_settings';
214 228
 		?>
@@ -248,7 +262,9 @@  discard block
 block discarded – undo
248 262
 	function espresso_data_optin_ajax_handler() {
249 263
 
250 264
 		//verify nonce
251
-		if ( isset($_POST['nonce']) && !wp_verify_nonce($_POST['nonce'], 'ee-data-optin') ) exit();
265
+		if ( isset($_POST['nonce']) && !wp_verify_nonce($_POST['nonce'], 'ee-data-optin') ) {
266
+			exit();
267
+		}
252 268
 
253 269
 		//made it here so let's save the selection
254 270
 		$ueip_optin = isset( $_POST['selection'] ) ? $_POST['selection'] : 'no';
@@ -278,13 +294,15 @@  discard block
 block discarded – undo
278 294
 		$current = get_site_transient( 'update_plugins' );
279 295
 
280 296
 		foreach ( (array) $plugins as $plugin_file => $plugin_data ) {
281
-			if ( isset( $current->response['plugin_file'] ) )
282
-				$update = true;
297
+			if ( isset( $current->response['plugin_file'] ) ) {
298
+							$update = true;
299
+			}
283 300
 		}
284 301
 
285 302
 		//it's possible that there is an update but an invalid site-license-key is in use
286
-		if ( get_site_option('pue_json_error_' . $basename ) )
287
-			$update = true;
303
+		if ( get_site_option('pue_json_error_' . $basename ) ) {
304
+					$update = true;
305
+		}
288 306
 
289 307
 		return $update;
290 308
 	}
@@ -328,46 +346,54 @@  discard block
 block discarded – undo
328 346
 			$DTT = EE_Registry::instance()->load_model('Datetime');
329 347
 			$TKT = EE_Registry::instance()->load_model('Ticket');
330 348
 			$count = $EVT->count();
331
-			if ( $count > 0 )
332
-				update_option('uxip_ee4_all_events_count', $count);
349
+			if ( $count > 0 ) {
350
+							update_option('uxip_ee4_all_events_count', $count);
351
+			}
333 352
 
334 353
 			//next let's just get the number of ACTIVE events
335 354
 			$count_active = $EVT->get_active_events(array(), TRUE);
336
-			if ( $count_active > 0 )
337
-				update_option('uxip_ee4_active_events_count', $count_active);
355
+			if ( $count_active > 0 ) {
356
+							update_option('uxip_ee4_active_events_count', $count_active);
357
+			}
338 358
 
339 359
 			//datetimes!
340 360
 			$dtt_count = $DTT->count();
341
-			if ( $dtt_count > 0 )
342
-				update_option( 'uxip_ee_all_dtts_count', $dtt_count );
361
+			if ( $dtt_count > 0 ) {
362
+							update_option( 'uxip_ee_all_dtts_count', $dtt_count );
363
+			}
343 364
 
344 365
 
345 366
 			//dttsold
346 367
 			$dtt_sold = $DTT->sum(array(), 'DTT_sold');
347
-			if ( $dtt_sold > 0 )
348
-				update_option( 'uxip_ee_dtt_sold', $dtt_sold );
368
+			if ( $dtt_sold > 0 ) {
369
+							update_option( 'uxip_ee_dtt_sold', $dtt_sold );
370
+			}
349 371
 
350 372
 			//allticketcount
351 373
 			$all_tkt_count = $TKT->count();
352
-			if ( $all_tkt_count > 0 )
353
-				update_option( 'uxip_ee_all_tkt_count', $all_tkt_count );
374
+			if ( $all_tkt_count > 0 ) {
375
+							update_option( 'uxip_ee_all_tkt_count', $all_tkt_count );
376
+			}
354 377
 
355 378
 			//freetktcount
356 379
 			$_where = array( 'TKT_price' => 0 );
357 380
 			$free_tkt_count = $TKT->count(array($_where));
358
-			if ( $free_tkt_count > 0 )
359
-				update_option( 'uxip_ee_free_tkt_count', $free_tkt_count );
381
+			if ( $free_tkt_count > 0 ) {
382
+							update_option( 'uxip_ee_free_tkt_count', $free_tkt_count );
383
+			}
360 384
 
361 385
 			//paidtktcount
362 386
 			$_where = array( 'TKT_price' => array('>', 0) );
363 387
 			$paid_tkt_count = $TKT->count( array( $_where ) );
364
-			if ( $paid_tkt_count > 0 )
365
-				update_option( 'uxip_ee_paid_tkt_count', $paid_tkt_count );
388
+			if ( $paid_tkt_count > 0 ) {
389
+							update_option( 'uxip_ee_paid_tkt_count', $paid_tkt_count );
390
+			}
366 391
 
367 392
 			//tktsold
368 393
 			$tkt_sold = $TKT->sum( array(), 'TKT_sold' );
369
-			if( $tkt_sold > 0 )
370
-				update_option( 'uxip_ee_tkt_sold', $tkt_sold );
394
+			if( $tkt_sold > 0 ) {
395
+							update_option( 'uxip_ee_tkt_sold', $tkt_sold );
396
+			}
371 397
 
372 398
 
373 399
 			set_transient( 'ee4_event_info_check', 1, WEEK_IN_SECONDS * 2 );
Please login to merge, or discard this patch.
core/admin/EE_Admin_Page_CPT_Init.core.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	public function do_initial_loads() {
33 33
 		//we want to use the corresponding admin page object (but not route it!).  To do this we just set _routing to false.  That way this page object is being loaded on all pages to make sure we hook into admin properly.  But note... we are ONLY doing this if the given page is NOT pages we WANT to load ;)
34 34
 		//This is important because we have hooks that help redirect custom post type saves
35
-		if ( !isset( $_REQUEST['page'] ) || ( isset( $_REQUEST['page'] ) && $_REQUEST['page'] != $this->_menu_map->menu_slug ) ) {
35
+		if ( ! isset($_REQUEST['page']) || (isset($_REQUEST['page']) && $_REQUEST['page'] != $this->_menu_map->menu_slug)) {
36 36
 			$this->_routing = FALSE;
37 37
 			$this->_initialize_admin_page();
38 38
 		} else {
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
 			$this->_initialize_admin_page();
41 41
 			//added for 4.1 to completely disable autosave for our pages. This can be removed once we fully enable autosave functionality
42 42
 			remove_filter('wp_print_scripts', 'wp_just_in_time_script_localization');
43
-			add_filter('wp_print_scripts', array($this, 'wp_just_in_time_script_localization'), 100 );
43
+			add_filter('wp_print_scripts', array($this, 'wp_just_in_time_script_localization'), 100);
44 44
 			//end removal of autosave functionality.
45 45
 		}
46 46
 	}
47 47
 
48 48
 	public function wp_just_in_time_script_localization() {
49
-		wp_localize_script( 'autosave', 'autosaveL10n', array(
49
+		wp_localize_script('autosave', 'autosaveL10n', array(
50 50
 			'autosaveInterval' => 172800,
51 51
 			'savingText' => __('Saving Draft&#8230;'),
52 52
 			'saveAlert' => __('The changes you made will be lost if you navigate away from this page.')
53
-		) );
53
+		));
54 54
 	}
55 55
 
56 56
 
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.