Completed
Branch BUG-10008-migration-stalling (f3f3da)
by
unknown
15:47
created
core/EE_Base.core.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	 *		@ override magic methods
34 34
 	 *		@ return void
35 35
 	 */	
36
-	public function __set($a,$b) { return FALSE; }
36
+	public function __set($a, $b) { return FALSE; }
37 37
 	public function __get($a) { return FALSE; }
38 38
 	public function __isset($a) { return FALSE; }
39 39
 	public function __unset($a) { return FALSE; }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/EE_Encryption.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
3 5
 /**
4 6
  * Event Espresso
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  * EE_Encryption class
4 4
  *
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 * @return \EE_Encryption
30 30
 	 */
31 31
   private function __construct() {
32
-		define( 'ESPRESSO_ENCRYPT', true );
33
-		if ( ! function_exists( 'mcrypt_encrypt' ) ) {
32
+		define('ESPRESSO_ENCRYPT', true);
33
+		if ( ! function_exists('mcrypt_encrypt')) {
34 34
 			$this->_use_mcrypt = false;
35 35
 		}
36 36
 	}
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 	 *	@access public
43 43
 	 * @return \EE_Encryption
44 44
 	 */
45
-	public static function instance ( ) {
45
+	public static function instance( ) {
46 46
 		// check if class object is instantiated
47
-		if ( ! self::$_instance instanceof EE_Encryption ) {
47
+		if ( ! self::$_instance instanceof EE_Encryption) {
48 48
 			self::$_instance = new self();
49 49
 		}
50 50
 		return self::$_instance;
@@ -59,15 +59,15 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public  function get_encryption_key() {
61 61
 		// if encryption key has not been set
62
-		if ( empty( $this->_encryption_key )) {
62
+		if (empty($this->_encryption_key)) {
63 63
 			// retrieve encryption_key from db
64
-			$this->_encryption_key = get_option( 'ee_encryption_key', '' );
64
+			$this->_encryption_key = get_option('ee_encryption_key', '');
65 65
 			// WHAT?? No encryption_key in the db ??
66
-			if ( $this->_encryption_key == '' ) {
66
+			if ($this->_encryption_key == '') {
67 67
 				// let's make one. And md5 it to make it just the right size for a key
68
-				$new_key =  md5( self::generate_random_string() );
68
+				$new_key = md5(self::generate_random_string());
69 69
 				// now save it to the db for later
70
-				add_option( 'ee_encryption_key', $new_key );
70
+				add_option('ee_encryption_key', $new_key);
71 71
 				// here's the key - FINALLY !
72 72
 				$this->_encryption_key = $new_key;
73 73
 			}
@@ -83,15 +83,15 @@  discard block
 block discarded – undo
83 83
 	 * @param string $text_string  - the text to be encrypted
84 84
 	 * @return string
85 85
 	 */
86
-	public function encrypt ( $text_string = '' ) {
86
+	public function encrypt($text_string = '') {
87 87
 		// you give me nothing??? GET OUT !
88
-		if  ( empty( $text_string ))  {
88
+		if (empty($text_string)) {
89 89
 			return $text_string;
90 90
 		}
91
-		if ( $this->_use_mcrypt ) {
92
-			$encrypted_text = $this->m_encrypt( $text_string );
91
+		if ($this->_use_mcrypt) {
92
+			$encrypted_text = $this->m_encrypt($text_string);
93 93
 		} else {
94
-			$encrypted_text = $this->acme_encrypt( $text_string );
94
+			$encrypted_text = $this->acme_encrypt($text_string);
95 95
 		}
96 96
 		return $encrypted_text;
97 97
 	}
@@ -104,16 +104,16 @@  discard block
 block discarded – undo
104 104
 	 * @param string $encrypted_text - the text to be decrypted
105 105
 	 * @return string
106 106
 	 */
107
-	public function decrypt  ( $encrypted_text = '' )  {
107
+	public function decrypt($encrypted_text = '') {
108 108
 		// you give me nothing??? GET OUT !
109
-		if  ( empty( $encrypted_text ))  {
109
+		if (empty($encrypted_text)) {
110 110
 			return $encrypted_text;
111 111
 		}
112 112
 		// if PHP's mcrypt functions are installed then we'll use them
113
-		if ( $this->_use_mcrypt ) {
114
-			$decrypted_text = $this->m_decrypt( $encrypted_text );
113
+		if ($this->_use_mcrypt) {
114
+			$decrypted_text = $this->m_decrypt($encrypted_text);
115 115
 		} else {
116
-			$decrypted_text = $this->acme_decrypt( $encrypted_text );
116
+			$decrypted_text = $this->acme_decrypt($encrypted_text);
117 117
 		}
118 118
 		return $decrypted_text;
119 119
  	}
@@ -128,15 +128,15 @@  discard block
 block discarded – undo
128 128
 	 * @internal param $string - the text to be encoded
129 129
 	 * @return string
130 130
 	 */
131
-	public function base64_url_encode ( $text_string = '' ) {
131
+	public function base64_url_encode($text_string = '') {
132 132
 		// you give me nothing??? GET OUT !
133
-		if  ( ! $text_string )  {
133
+		if ( ! $text_string) {
134 134
 			return $text_string;
135 135
 		}
136 136
 		// encode
137
-		$encoded_string = base64_encode ( $text_string );
137
+		$encoded_string = base64_encode($text_string);
138 138
 		// remove chars to make encoding more URL friendly
139
-		$encoded_string = strtr ( $encoded_string, '+/=', '-_,' );
139
+		$encoded_string = strtr($encoded_string, '+/=', '-_,');
140 140
 		return $encoded_string;
141 141
 	}
142 142
 
@@ -150,15 +150,15 @@  discard block
 block discarded – undo
150 150
 	 * @internal param $string - the text to be decoded
151 151
 	 * @return string
152 152
 	 */
153
-	public function base64_url_decode ( $encoded_string = '' ) {
153
+	public function base64_url_decode($encoded_string = '') {
154 154
 		// you give me nothing??? GET OUT !
155
-		if  ( ! $encoded_string )  {
155
+		if ( ! $encoded_string) {
156 156
 			return $encoded_string;
157 157
 		}
158 158
 		// replace previously removed characters
159
-		$encoded_string = strtr ( $encoded_string, '-_,', '+/=' );
159
+		$encoded_string = strtr($encoded_string, '-_,', '+/=');
160 160
 		// decode
161
-		$decoded_string = base64_decode ( $encoded_string );
161
+		$decoded_string = base64_decode($encoded_string);
162 162
 		return $decoded_string;
163 163
 	}
164 164
 
@@ -171,19 +171,19 @@  discard block
 block discarded – undo
171 171
 	 * @internal param $string - the text to be encrypted
172 172
 	 * @return string
173 173
 	 */
174
-	private function m_encrypt  ( $text_string = '' ) {
174
+	private function m_encrypt($text_string = '') {
175 175
 		// you give me nothing??? GET OUT !
176
-		if  ( ! $text_string )  {
176
+		if ( ! $text_string) {
177 177
 			return $text_string;
178 178
 		}
179 179
 		// get the initialization vector size
180
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
180
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
181 181
 		// initialization vector
182
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
182
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
183 183
 		// encrypt it
184
-		$encrypted_text = mcrypt_encrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv );
184
+		$encrypted_text = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv);
185 185
 		// trim and encode
186
-		$encrypted_text = trim ( base64_encode( $encrypted_text ) );
186
+		$encrypted_text = trim(base64_encode($encrypted_text));
187 187
 		return $encrypted_text;
188 188
 	}
189 189
 
@@ -196,19 +196,19 @@  discard block
 block discarded – undo
196 196
 	 * @internal param $string - the text to be decrypted
197 197
 	 * @return string
198 198
 	 */
199
-	private function m_decrypt  ( $encrypted_text = '' )  {
199
+	private function m_decrypt($encrypted_text = '') {
200 200
 		// you give me nothing??? GET OUT !
201
-		if  ( ! $encrypted_text )  {
201
+		if ( ! $encrypted_text) {
202 202
 			return $encrypted_text;
203 203
 		}
204 204
 		// decode
205
-		$encrypted_text = base64_decode ( $encrypted_text );
205
+		$encrypted_text = base64_decode($encrypted_text);
206 206
 		// get the initialization vector size
207
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
208
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
207
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
208
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
209 209
 		// decrypt it
210
-		$decrypted_text = mcrypt_decrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv );
211
-		$decrypted_text = trim ( $decrypted_text );
210
+		$decrypted_text = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv);
211
+		$decrypted_text = trim($decrypted_text);
212 212
 		return $decrypted_text;
213 213
 	}
214 214
 
@@ -222,18 +222,18 @@  discard block
 block discarded – undo
222 222
 	 * @internal param $string - the text to be decrypted
223 223
 	 * @return string
224 224
 	 */
225
-	private function acme_encrypt ( $text_string = '' ) {
225
+	private function acme_encrypt($text_string = '') {
226 226
 		// you give me nothing??? GET OUT !
227
-		if  ( ! $text_string )  {
227
+		if ( ! $text_string) {
228 228
 			return $text_string;
229 229
 		}
230
-		$key_bits = str_split ( str_pad ( '', strlen( $text_string ), $this->get_encryption_key(), STR_PAD_RIGHT ));
231
-		$string_bits = str_split( $text_string );
232
-		foreach ( $string_bits as $k =>$v ) {
233
-			$temp = ord( $v ) + ord ( $key_bits[$k] );
234
-			$string_bits[$k] = chr ( $temp > 255 ? ( $temp - 256 ) : $temp );
230
+		$key_bits = str_split(str_pad('', strlen($text_string), $this->get_encryption_key(), STR_PAD_RIGHT));
231
+		$string_bits = str_split($text_string);
232
+		foreach ($string_bits as $k =>$v) {
233
+			$temp = ord($v) + ord($key_bits[$k]);
234
+			$string_bits[$k] = chr($temp > 255 ? ($temp - 256) : $temp);
235 235
 		}
236
-		$encrypted = base64_encode( join( '', $string_bits ) );
236
+		$encrypted = base64_encode(join('', $string_bits));
237 237
 		return $encrypted;
238 238
 	}
239 239
 
@@ -247,19 +247,19 @@  discard block
 block discarded – undo
247 247
 	 * @internal param $string - the text to be decrypted
248 248
 	 * @return string
249 249
 	 */
250
-	private function acme_decrypt ( $encrypted_text = false ) {
250
+	private function acme_decrypt($encrypted_text = false) {
251 251
 		// you give me nothing??? GET OUT !
252
-		if  ( ! $encrypted_text )  {
252
+		if ( ! $encrypted_text) {
253 253
 			return false;
254 254
 		}
255
-		$encrypted_text = base64_decode ( $encrypted_text );
256
-		$key_bits = str_split ( str_pad ( '', strlen ( $encrypted_text ), $this->get_encryption_key(), STR_PAD_RIGHT ));
257
-		$string_bits = str_split ( $encrypted_text );
258
-		foreach ( $string_bits as $k => $v ) {
259
-			$temp = ord ( $v ) - ord ( $key_bits[$k] );
260
-			$string_bits[$k] = chr ( $temp < 0 ? ( $temp + 256 ) : $temp );
255
+		$encrypted_text = base64_decode($encrypted_text);
256
+		$key_bits = str_split(str_pad('', strlen($encrypted_text), $this->get_encryption_key(), STR_PAD_RIGHT));
257
+		$string_bits = str_split($encrypted_text);
258
+		foreach ($string_bits as $k => $v) {
259
+			$temp = ord($v) - ord($key_bits[$k]);
260
+			$string_bits[$k] = chr($temp < 0 ? ($temp + 256) : $temp);
261 261
 		}
262
-		$decrypted = join( '', $string_bits );
262
+		$decrypted = join('', $string_bits);
263 263
 		return $decrypted;
264 264
 	}
265 265
 
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
 	 * @internal param $string - number of characters for random string
274 274
 	 * @return string
275 275
 	 */
276
-	public function generate_random_string ( $length = 40 ) {
277
-		$iterations = ceil ( $length / 40 );
276
+	public function generate_random_string($length = 40) {
277
+		$iterations = ceil($length / 40);
278 278
 		$random_string = '';
279
-		for ($i = 0; $i < $iterations; $i ++) {
280
-			$random_string .= sha1( microtime(TRUE) . mt_rand( 10000, 90000 ));
279
+		for ($i = 0; $i < $iterations; $i++) {
280
+			$random_string .= sha1(microtime(TRUE).mt_rand(10000, 90000));
281 281
 		}
282
-		$random_string =  substr( $random_string, 0, $length );
282
+		$random_string = substr($random_string, 0, $length);
283 283
 		return $random_string;
284 284
 	}
285 285
 
Please login to merge, or discard this patch.
core/EE_Error.core.php 4 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
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_Log.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
3 5
 /**
4 6
  * Event Espresso
Please login to merge, or discard this patch.
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  *
4 4
  * Class EE_Log
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @return EE_Log
63 63
 	 */
64 64
 	public static function instance() {
65
-		if ( ! self::$_instance instanceof EE_Log ) {
65
+		if ( ! self::$_instance instanceof EE_Log) {
66 66
 			self::$_instance = new self();
67 67
 		}
68 68
 		return self::$_instance;
@@ -74,11 +74,11 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	private function __construct() {
76 76
 
77
-		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging ) {
77
+		if ( ! EE_Registry::instance()->CFG->admin->use_full_logging && ! EE_Registry::instance()->CFG->admin->use_remote_logging) {
78 78
 			return;
79 79
 		}
80 80
 
81
-		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS;
81
+		$this->_logs_folder = EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS;
82 82
 		$this->_log_file = EE_Registry::instance()->CFG->admin->log_file_name();
83 83
 		$this->_log = '';
84 84
 		$this->_debug_file = EE_Registry::instance()->CFG->admin->debug_file_name();
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 		$this->_remote_logging_url = EE_Registry::instance()->CFG->admin->remote_logging_url;
87 87
 		$this->_remote_log = '';
88 88
 
89
-		add_action( 'admin_init', array( $this, 'verify_filesystem' ), -10 );
90
-		add_action( 'AHEE_log', array( $this, 'log' ), 10, 4 );
91
-		if ( EE_Registry::instance()->CFG->admin->use_full_logging ) {
92
-			add_action( 'shutdown', array( $this, 'write_log' ), 9999 );
89
+		add_action('admin_init', array($this, 'verify_filesystem'), -10);
90
+		add_action('AHEE_log', array($this, 'log'), 10, 4);
91
+		if (EE_Registry::instance()->CFG->admin->use_full_logging) {
92
+			add_action('shutdown', array($this, 'write_log'), 9999);
93 93
 			// if WP_DEBUG
94
-			add_action( 'shutdown', array( $this, 'write_debug' ), 9999 );
94
+			add_action('shutdown', array($this, 'write_debug'), 9999);
95 95
 		}
96
-		if ( EE_Registry::instance()->CFG->admin->use_remote_logging ) {
97
-			add_action( 'shutdown', array( $this, 'send_log' ), 9999 );
96
+		if (EE_Registry::instance()->CFG->admin->use_remote_logging) {
97
+			add_action('shutdown', array($this, 'send_log'), 9999);
98 98
 		}
99 99
 
100 100
 	}
@@ -108,11 +108,11 @@  discard block
 block discarded – undo
108 108
 	 */
109 109
 	public function verify_filesystem() {
110 110
 		try {
111
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_log_file );
112
-			EEH_File::ensure_file_exists_and_is_writable( $this->_logs_folder . $this->_debug_file );
113
-			EEH_File::add_htaccess_deny_from_all( $this->_logs_folder );
114
-		} catch( EE_Error $e ){
115
-			EE_Error::add_error( sprintf( __(  'Event Espresso logging could not be setup because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
111
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_log_file);
112
+			EEH_File::ensure_file_exists_and_is_writable($this->_logs_folder.$this->_debug_file);
113
+			EEH_File::add_htaccess_deny_from_all($this->_logs_folder);
114
+		} catch (EE_Error $e) {
115
+			EE_Error::add_error(sprintf(__('Event Espresso logging could not be setup because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
116 116
 			return;
117 117
 		}
118 118
 	}
@@ -129,15 +129,15 @@  discard block
 block discarded – undo
129 129
 	 * @param string $type
130 130
 	 * @return string
131 131
 	 */
132
-	private function _format_message( $file = '', $function = '', $message = '', $type = '' ) {
133
-		$msg = '----------------------------------------------------------------------------------------' . PHP_EOL;
134
-		$msg .= '[' . current_time( 'mysql' ) . '] ';
135
-		$msg .= ! empty( $file ) ? basename( $file ) : '';
136
-		$msg .= ! empty( $file ) && ! empty( $function ) ? ' -> ' : '';
137
-		$msg .= ! empty( $function ) ? $function . '()' : '';
132
+	private function _format_message($file = '', $function = '', $message = '', $type = '') {
133
+		$msg = '----------------------------------------------------------------------------------------'.PHP_EOL;
134
+		$msg .= '['.current_time('mysql').'] ';
135
+		$msg .= ! empty($file) ? basename($file) : '';
136
+		$msg .= ! empty($file) && ! empty($function) ? ' -> ' : '';
137
+		$msg .= ! empty($function) ? $function.'()' : '';
138 138
 		$msg .= PHP_EOL;
139
-		$type = ! empty( $type ) ? $type : 'log message';
140
-		$msg .= ! empty( $message ) ? "\t" . '[' . $type . '] ' . $message . PHP_EOL : '';
139
+		$type = ! empty($type) ? $type : 'log message';
140
+		$msg .= ! empty($message) ? "\t".'['.$type.'] '.$message.PHP_EOL : '';
141 141
 		return $msg;
142 142
 	}
143 143
 
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @param string $message
153 153
 	 * @param string $type
154 154
 	 */
155
-	public function log( $file = '', $function = '', $message = '', $type = '' ) {
156
-		$this->_log .= $this->_format_message( $file, $function, $message, $type );
155
+	public function log($file = '', $function = '', $message = '', $type = '') {
156
+		$this->_log .= $this->_format_message($file, $function, $message, $type);
157 157
 	}
158 158
 
159 159
 
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
 	public function write_log() {
166 166
 		try {
167 167
 			//get existing log file and append new log info
168
-			$this->_log = EEH_File::get_file_contents( $this->_logs_folder . $this->_log_file ) . $this->_log;
169
-			EEH_File::write_to_file( $this->_logs_folder . $this->_log_file, $this->_log, 'Event Espresso Log' );
170
-		} catch( EE_Error $e ){
171
-			EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
168
+			$this->_log = EEH_File::get_file_contents($this->_logs_folder.$this->_log_file).$this->_log;
169
+			EEH_File::write_to_file($this->_logs_folder.$this->_log_file, $this->_log, 'Event Espresso Log');
170
+		} catch (EE_Error $e) {
171
+			EE_Error::add_error(sprintf(__('Could not write to the Event Espresso log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
172 172
 			return;
173 173
 		}
174 174
 	}
@@ -181,31 +181,31 @@  discard block
 block discarded – undo
181 181
 	 */
182 182
 	public function send_log() {
183 183
 
184
-		if ( empty( $this->_remote_logging_url )) {
184
+		if (empty($this->_remote_logging_url)) {
185 185
 			return;
186 186
 		}
187 187
 
188
-		$data = 'domain=' . $_SERVER['HTTP_HOST'];
189
-		$data .= '&ip=' . $_SERVER['SERVER_ADDR'];
190
-		$data .= '&server_type=' . $_SERVER['SERVER_SOFTWARE'];
191
-		$data .= '&time=' . time();
192
-		$data .= '&remote_log=' . $this->_log;
193
-		$data .= '&request_array=' . json_encode( $_REQUEST );
188
+		$data = 'domain='.$_SERVER['HTTP_HOST'];
189
+		$data .= '&ip='.$_SERVER['SERVER_ADDR'];
190
+		$data .= '&server_type='.$_SERVER['SERVER_SOFTWARE'];
191
+		$data .= '&time='.time();
192
+		$data .= '&remote_log='.$this->_log;
193
+		$data .= '&request_array='.json_encode($_REQUEST);
194 194
 		$data .= '&action=save';
195 195
 
196
-		if ( defined( 'EELOGGING_PASS' )) {
197
-			$data .= '&pass=' . EELOGGING_PASS;
196
+		if (defined('EELOGGING_PASS')) {
197
+			$data .= '&pass='.EELOGGING_PASS;
198 198
 		}
199
-		if ( defined( 'EELOGGING_KEY' )) {
200
-			$data .= '&key=' . EELOGGING_KEY;
199
+		if (defined('EELOGGING_KEY')) {
200
+			$data .= '&key='.EELOGGING_KEY;
201 201
 		}
202 202
 
203
-		$c = curl_init( $this->_remote_logging_url );
204
-		curl_setopt( $c, CURLOPT_POST, TRUE );
205
-		curl_setopt( $c, CURLOPT_POSTFIELDS, $data );
206
-		curl_setopt( $c, CURLOPT_RETURNTRANSFER, TRUE );
207
-		curl_exec( $c );
208
-		curl_close( $c );
203
+		$c = curl_init($this->_remote_logging_url);
204
+		curl_setopt($c, CURLOPT_POST, TRUE);
205
+		curl_setopt($c, CURLOPT_POSTFIELDS, $data);
206
+		curl_setopt($c, CURLOPT_RETURNTRANSFER, TRUE);
207
+		curl_exec($c);
208
+		curl_close($c);
209 209
 	}
210 210
 
211 211
 
@@ -216,18 +216,18 @@  discard block
 block discarded – undo
216 216
 	 * previous entries are overwritten
217 217
 	 */
218 218
 	public function write_debug() {
219
-		if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
219
+		if (defined('WP_DEBUG') && WP_DEBUG) {
220 220
 			$this->_debug_log = '';
221
-			foreach ( $_GET as $key => $value ) {
222
-				$this->_debug_log .= '$_GET["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
221
+			foreach ($_GET as $key => $value) {
222
+				$this->_debug_log .= '$_GET["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
223 223
 			}
224
-			foreach ( $_POST as $key => $value ) {
225
-				$this->_debug_log .= '$_POST["' . $key . '"] = "' . serialize($value) . '"' . PHP_EOL;
224
+			foreach ($_POST as $key => $value) {
225
+				$this->_debug_log .= '$_POST["'.$key.'"] = "'.serialize($value).'"'.PHP_EOL;
226 226
 			}
227 227
 			try {
228
-				EEH_File::write_to_file( $this->_logs_folder . $this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log' );
229
-			} catch( EE_Error $e ){
230
-				EE_Error::add_error( sprintf( __(  'Could not write to the Event Espresso debug log file because: %s', 'event_espresso' ), ' &nbsp; &nbsp; ' . $e->getMessage() ), __FILE__, __FUNCTION__, __LINE__ );
228
+				EEH_File::write_to_file($this->_logs_folder.$this->_debug_file, $this->_debug_log, 'Event Espresso Debug Log');
229
+			} catch (EE_Error $e) {
230
+				EE_Error::add_error(sprintf(__('Could not write to the Event Espresso debug log file because: %s', 'event_espresso'), ' &nbsp; &nbsp; '.$e->getMessage()), __FILE__, __FUNCTION__, __LINE__);
231 231
 				return;
232 232
 			}
233 233
 		}
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 	 * __clone
240 240
 	 */
241 241
 	public function __clone() {
242
-		trigger_error( __( 'Clone is not allowed.', 'event_espresso' ), E_USER_ERROR );
242
+		trigger_error(__('Clone is not allowed.', 'event_espresso'), E_USER_ERROR);
243 243
 	}
244 244
 
245 245
 
Please login to merge, or discard this patch.
core/EE_Network_Config.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 */
59 59
 	public static function instance() {
60 60
 		// check if class object is instantiated, and instantiated properly
61
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_Network_Config )) {
61
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Network_Config)) {
62 62
 			self::$_instance = new self();
63 63
 		}
64 64
 		return self::$_instance;
@@ -73,15 +73,15 @@  discard block
 block discarded – undo
73 73
 	 *  @access 	private
74 74
 	 */
75 75
 	private function __construct() {
76
-		do_action( 'AHEE__EE_Network_Config__construct__begin',$this );
76
+		do_action('AHEE__EE_Network_Config__construct__begin', $this);
77 77
 		//set defaults
78
-		$this->core = apply_filters( 'FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config() );
78
+		$this->core = apply_filters('FHEE__EE_Network_Config___construct__core', new EE_Network_Core_Config());
79 79
 		$this->addons = array();
80 80
 
81 81
 		$this->_load_config();
82 82
 
83 83
 		// construct__end hook
84
-		do_action( 'AHEE__EE_Network_Config__construct__end',$this );
84
+		do_action('AHEE__EE_Network_Config__construct__end', $this);
85 85
 	}
86 86
 
87 87
 
@@ -94,25 +94,25 @@  discard block
 block discarded – undo
94 94
 	 */
95 95
 	private function _load_config() {
96 96
 		//load network config start hook
97
-		do_action( 'AHEE__EE_Network_Config___load_config__start', $this );
97
+		do_action('AHEE__EE_Network_Config___load_config__start', $this);
98 98
 		$config = $this->get_config();
99
-		foreach ( $config as $config_prop => $settings ) {
100
-			if ( is_object( $settings ) && property_exists( $this, $config_prop ) ) {
101
-				$this->{$config_prop} = apply_filters( 'FHEE__EE_Network_Config___load_config__config_settings', $settings, $config_prop, $this );
102
-				if ( method_exists( $settings, 'populate' ) ) {
99
+		foreach ($config as $config_prop => $settings) {
100
+			if (is_object($settings) && property_exists($this, $config_prop)) {
101
+				$this->{$config_prop} = apply_filters('FHEE__EE_Network_Config___load_config__config_settings', $settings, $config_prop, $this);
102
+				if (method_exists($settings, 'populate')) {
103 103
 					$this->{$config_prop}->populate();
104 104
 				}
105
-				if ( method_exists( $settings, 'do_hooks' ) ) {
105
+				if (method_exists($settings, 'do_hooks')) {
106 106
 					$this->{$config_prop}->do_hooks();
107 107
 				}
108 108
 			}
109 109
 		}
110
-		if ( apply_filters( 'FHEE__EE_Network_Config___load_config__update_network_config', false ) ) {
110
+		if (apply_filters('FHEE__EE_Network_Config___load_config__update_network_config', false)) {
111 111
 			$this->update_config();
112 112
 		}
113 113
 
114 114
 		//load network config end hook
115
-		do_action( 'AHEE__EE_Network_Config___load_config__end', $this );
115
+		do_action('AHEE__EE_Network_Config___load_config__end', $this);
116 116
 	}
117 117
 
118 118
 
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
 	 */
127 127
 	public function get_config() {
128 128
 		// grab network configuration
129
-		$CFG = get_site_option( 'ee_network_config', array() );
130
-		$CFG = apply_filters( 'FHEE__EE_Network_Config__get_config__CFG', $CFG );
129
+		$CFG = get_site_option('ee_network_config', array());
130
+		$CFG = apply_filters('FHEE__EE_Network_Config__get_config__CFG', $CFG);
131 131
 		return $CFG;
132 132
 	}
133 133
 
@@ -141,39 +141,39 @@  discard block
 block discarded – undo
141 141
 	 * @param bool $add_error
142 142
 	 * @return bool success
143 143
 	 */
144
-	public function update_config( $add_success = FALSE, $add_error = TRUE ) {
145
-		do_action( 'AHEE__EE_Network_Config__update_config__begin',$this );
144
+	public function update_config($add_success = FALSE, $add_error = TRUE) {
145
+		do_action('AHEE__EE_Network_Config__update_config__begin', $this);
146 146
 
147 147
 		//need to bust cache for comparing original if this is a multisite install
148
-		if ( is_multisite() ) {
148
+		if (is_multisite()) {
149 149
 			global $current_site;
150
-			$cache_key = $current_site->id . ':ee_network_config';
151
-			wp_cache_delete( $cache_key, 'site-options' );
150
+			$cache_key = $current_site->id.':ee_network_config';
151
+			wp_cache_delete($cache_key, 'site-options');
152 152
 		}
153 153
 
154 154
 		//we have to compare existing saved config with config in memory because if there is no difference that means
155 155
 		//that the method executed fine but there just was no update.  WordPress doesn't distinguish between false because
156 156
 		//there were 0 records updated because of no change vs false because some error produced problems with the update.
157
-		$original = get_site_option( 'ee_network_config' );
157
+		$original = get_site_option('ee_network_config');
158 158
 
159
-		if ( $original == $this ) {
159
+		if ($original == $this) {
160 160
 			return true;
161 161
 		}
162 162
 		// update
163
-		$saved = update_site_option( 'ee_network_config', $this );
163
+		$saved = update_site_option('ee_network_config', $this);
164 164
 
165
-		do_action( 'AHEE__EE_Network_Config__update_config__end', $this, $saved );
165
+		do_action('AHEE__EE_Network_Config__update_config__end', $this, $saved);
166 166
 		// if config remains the same or was updated successfully
167
-		if ( $saved ) {
168
-			if ( $add_success ) {
169
-				$msg = is_multisite() ? __( 'The Event Espresso Network Configuration Settings have been successfully updated.', 'event_espresso' ) : __( 'Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso' );
170
-				EE_Error::add_success( $msg );
167
+		if ($saved) {
168
+			if ($add_success) {
169
+				$msg = is_multisite() ? __('The Event Espresso Network Configuration Settings have been successfully updated.', 'event_espresso') : __('Extra Event Espresso Configuration settings were successfully updated.', 'event_espresso');
170
+				EE_Error::add_success($msg);
171 171
 			}
172 172
 			return true;
173 173
 		} else {
174
-			if ( $add_error ) {
175
-				$msg = is_multisite() ? __( 'The Event Espresso Network Configuration Settings were not updated.', 'event_espresso' ) : __( 'Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso' );
176
-				EE_Error::add_error( $msg , __FILE__, __FUNCTION__, __LINE__ );
174
+			if ($add_error) {
175
+				$msg = is_multisite() ? __('The Event Espresso Network Configuration Settings were not updated.', 'event_espresso') : __('Extra Event Espresso Network Configuration settings were not updated.', 'event_espresso');
176
+				EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
177 177
 			}
178 178
 			return false;
179 179
 		}
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
 	 *  @return 	array
188 188
 	 */
189 189
 	public function __sleep() {
190
-		return apply_filters( 'FHEE__EE_Network_Config__sleep',array(
190
+		return apply_filters('FHEE__EE_Network_Config__sleep', array(
191 191
 			'core',
192
-		) );
192
+		));
193 193
 	}
194 194
 
195 195
 } //end EE_Network_Config.
Please login to merge, or discard this patch.
4_5_0_stages/EE_DMS_4_5_0_invoice_settings.dmsstage.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 		//so in case teh IPN is arriving later, let's try to process an IPN!
91 91
 		if($_SERVER['REQUEST_METHOD'] == 'POST'){
92 92
 			return $this->handle_ipn($_POST, $transaction );
93
-		}else{
93
+		} else{
94 94
 			return parent::finalize_payment_for( $transaction );
95 95
 		}
96 96
 	}
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * Just initializes the status of the migration
30 30
 	 */
31 31
 	public function __construct() {
32
-		$this->_pretty_name = __( 'Update Invoice Gateway Settings', 'event_espresso' );
32
+		$this->_pretty_name = __('Update Invoice Gateway Settings', 'event_espresso');
33 33
 		parent::__construct();
34 34
 	}
35 35
 
@@ -56,39 +56,39 @@  discard block
 block discarded – undo
56 56
 	 * @throws EE_Error
57 57
 	 * @return int number of items ACTUALLY migrated
58 58
 	 */
59
-	protected function _migration_step( $num_items = 1 ){
59
+	protected function _migration_step($num_items = 1) {
60 60
 		// if this isn't set then something is really wrong
61
-		if ( ! EE_Config::instance()->gateway instanceof EE_Gateway_Config ) {
62
-			throw new EE_Error( __( 'It appears the Event Espresso Core Configuration is not setup correctly.', 'event_espresso' ));
61
+		if ( ! EE_Config::instance()->gateway instanceof EE_Gateway_Config) {
62
+			throw new EE_Error(__('It appears the Event Espresso Core Configuration is not setup correctly.', 'event_espresso'));
63 63
 		}
64
-		$invoice_settings = isset( EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] ) ? EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] : NULL;
65
-		if( ! $invoice_settings ){
66
-			$this->add_error( __( 'Could not migrate EE4.4 invoice settings to EE4.5 because they didnt exist', 'event_espresso' ) );
67
-		}else{
68
-			$invoice_settings[ 'template_payment_instructions' ] = $invoice_settings[ 'pdf_instructions' ];
69
-			$invoice_settings[ 'template_invoice_payee_name' ] = $invoice_settings[ 'payable_to' ];
70
-			$invoice_settings[ 'template_invoice_address' ] = $invoice_settings[ 'payment_address' ];
71
-			$invoice_settings[ 'template_invoice_email' ] = '';
72
-			$invoice_settings[ 'template_invoice_tax_number' ] = '';
73
-			unset( $invoice_settings[ 'pdf_instructions' ] );
74
-			unset( $invoice_settings[ 'payable_to' ] );
75
-			unset( $invoice_settings[ 'payment_address' ] );
76
-			EE_Config::instance()->gateway->payment_settings[ 'Invoice' ] = $invoice_settings;
77
-			EE_Config::instance()->update_espresso_config(false,false);
64
+		$invoice_settings = isset(EE_Config::instance()->gateway->payment_settings['Invoice']) ? EE_Config::instance()->gateway->payment_settings['Invoice'] : NULL;
65
+		if ( ! $invoice_settings) {
66
+			$this->add_error(__('Could not migrate EE4.4 invoice settings to EE4.5 because they didnt exist', 'event_espresso'));
67
+		} else {
68
+			$invoice_settings['template_payment_instructions'] = $invoice_settings['pdf_instructions'];
69
+			$invoice_settings['template_invoice_payee_name'] = $invoice_settings['payable_to'];
70
+			$invoice_settings['template_invoice_address'] = $invoice_settings['payment_address'];
71
+			$invoice_settings['template_invoice_email'] = '';
72
+			$invoice_settings['template_invoice_tax_number'] = '';
73
+			unset($invoice_settings['pdf_instructions']);
74
+			unset($invoice_settings['payable_to']);
75
+			unset($invoice_settings['payment_address']);
76
+			EE_Config::instance()->gateway->payment_settings['Invoice'] = $invoice_settings;
77
+			EE_Config::instance()->update_espresso_config(false, false);
78 78
 
79 79
 			//@todo: check 'invoice_css' too because we can't easily affect that so we might need to set a persistent notice
80 80
 			//(why is it tough to change? because we want to update the receipt and invoice message template, but
81 81
 			//message templates are only initialized AFTER migrations and those two are new in 4.5. So if we wanted to
82 82
 			//update them from a DMS, we'd need to have the DMS create the message templates which is quite a lot of code;
83 83
 			//also we don't want to build a dependency on the messages code because it is likely to change soon
84
-			if( ! in_array( $invoice_settings[ 'invoice_css' ], array( '', 'simple.css' ) ) ){
85
-				EE_Error::add_persistent_admin_notice( 'invoice_css_not_updated', sprintf( __( 'You had previously set your Invoice Payment Method\'s stylesheet to be %1$s, but that setting has moved. PDF and HTML Invoices and Receipts are now Messages, which means you can easily modify them from your Wordpress Dashboard instead of using filters or uploading template files. Please visit Messages -> Receipt and Messages -> Invoice to change their stylesheets.', 'event_espresso'), $invoice_settings[ 'invoice_css' ] ), FALSE );
84
+			if ( ! in_array($invoice_settings['invoice_css'], array('', 'simple.css'))) {
85
+				EE_Error::add_persistent_admin_notice('invoice_css_not_updated', sprintf(__('You had previously set your Invoice Payment Method\'s stylesheet to be %1$s, but that setting has moved. PDF and HTML Invoices and Receipts are now Messages, which means you can easily modify them from your Wordpress Dashboard instead of using filters or uploading template files. Please visit Messages -> Receipt and Messages -> Invoice to change their stylesheets.', 'event_espresso'), $invoice_settings['invoice_css']), FALSE);
86 86
 			}
87 87
 			$templates_relative_path = 'modules/gateways/Invoice/lib/templates/';
88
-			$overridden_invoice_body = EEH_Template::locate_template( $templates_relative_path . 'invoice_body.template.php', NULL, FALSE, FALSE, TRUE );
89
-			$overridden_receipt_body= EEH_Template::locate_template( $templates_relative_path . 'receipt_body.template.php', NULL, FALSE, FALSE, TRUE );
90
-			if( $overridden_invoice_body || $overridden_receipt_body ) {
91
-				EE_Error::add_persistent_admin_notice( 'invoice_overriding_templates', sprintf( __( 'Note: in this version of Event Espresso, PDF and HTML Invoices and Receipts are now Messages and can be changed just like any other messages; however we noticed you had previously overriden the old default Invoice/Receipt templates. Because of this, your old Invoice/Receipt templates will continue to be used INSTEAD of the new Invoice/Receipt message equivalents. We recommend deleting your old Invoice/Receipt templates and modifying the new Invoice and Receipt messages\'s content in Messages -> Invoice and Messages -> Receipt.')), TRUE );
88
+			$overridden_invoice_body = EEH_Template::locate_template($templates_relative_path.'invoice_body.template.php', NULL, FALSE, FALSE, TRUE);
89
+			$overridden_receipt_body = EEH_Template::locate_template($templates_relative_path.'receipt_body.template.php', NULL, FALSE, FALSE, TRUE);
90
+			if ($overridden_invoice_body || $overridden_receipt_body) {
91
+				EE_Error::add_persistent_admin_notice('invoice_overriding_templates', sprintf(__('Note: in this version of Event Espresso, PDF and HTML Invoices and Receipts are now Messages and can be changed just like any other messages; however we noticed you had previously overriden the old default Invoice/Receipt templates. Because of this, your old Invoice/Receipt templates will continue to be used INSTEAD of the new Invoice/Receipt message equivalents. We recommend deleting your old Invoice/Receipt templates and modifying the new Invoice and Receipt messages\'s content in Messages -> Invoice and Messages -> Receipt.')), TRUE);
92 92
 			}
93 93
 
94 94
 		}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_3_0.dms.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
 		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		} elseif( ! $version_string ){
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71 71
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
72
+		} else{
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
Please login to merge, or discard this patch.
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -10,18 +10,18 @@  discard block
 block discarded – undo
10 10
 //(all other times it gets resurrected from a wordpress option)
11 11
 $stages = glob(EE_CORE.'data_migration_scripts/4_3_0_stages/*');
12 12
 $class_to_filepath = array();
13
-if ( ! empty( $stages ) ) {
14
-	foreach($stages as $filepath){
13
+if ( ! empty($stages)) {
14
+	foreach ($stages as $filepath) {
15 15
 		$matches = array();
16
-		preg_match('~4_3_0_stages/(.*).dmsstage.php~',$filepath,$matches);
16
+		preg_match('~4_3_0_stages/(.*).dmsstage.php~', $filepath, $matches);
17 17
 		$class_to_filepath[$matches[1]] = $filepath;
18 18
 	}
19 19
 }
20 20
 //give addons a chance to autoload their stages too
21
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_3_0__autoloaded_stages',$class_to_filepath);
21
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_3_0__autoloaded_stages', $class_to_filepath);
22 22
 EEH_Autoloader::register_autoloader($class_to_filepath);
23 23
 
24
-class EE_DMS_Core_4_3_0 extends EE_Data_Migration_Script_Base{
24
+class EE_DMS_Core_4_3_0 extends EE_Data_Migration_Script_Base {
25 25
 
26 26
 
27 27
 
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 	}
38 38
 	public function can_migrate_from_version($version_array) {
39 39
 		$version_string = $version_array['Core'];
40
-		if($version_string <= '4.3.0' && $version_string >= '4.2.0' ){
40
+		if ($version_string <= '4.3.0' && $version_string >= '4.2.0') {
41 41
 //			echo "$version_string can be migrated fro";
42 42
 			return true;
43
-		}elseif( ! $version_string ){
43
+		}elseif ( ! $version_string) {
44 44
 //			echo "no version string provided: $version_string";
45 45
 			//no version string provided... this must be pre 4.2
46
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
47
-		}else{
46
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
47
+		} else {
48 48
 //			echo "$version_string doesnt apply";
49 49
 			return false;
50 50
 		}
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
 	}
55 55
 	public function schema_changes_before_migration() {
56 56
 		//relies on 4.1's EEH_Activation::create_table
57
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
58
-		$table_name='esp_answer';
59
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
57
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
58
+		$table_name = 'esp_answer';
59
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
60 60
 					REG_ID INT UNSIGNED NOT NULL,
61 61
 					QST_ID INT UNSIGNED NOT NULL,
62 62
 					ANS_value TEXT NOT NULL,
63 63
 					PRIMARY KEY  (ANS_ID)";
64
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
64
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
65 65
 
66 66
 		$table_name = 'esp_attendee_meta';
67 67
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
101 101
 					  CNT_active TINYINT(1) DEFAULT '0',
102 102
 					  PRIMARY KEY  (CNT_ISO)";
103
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
103
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
104 104
 
105 105
 
106 106
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
 
125 125
 
126
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
126
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
127 127
 		$table_name = 'esp_event_meta';
128 128
 		$sql = "
129 129
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -140,41 +140,41 @@  discard block
 block discarded – undo
140 140
 			EVT_external_URL VARCHAR(200) NULL,
141 141
 			EVT_donations TINYINT(1) NULL,
142 142
 			PRIMARY KEY  (EVTM_ID)";
143
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
143
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
144 144
 
145 145
 
146 146
 
147
-		$table_name='esp_event_question_group';
148
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
147
+		$table_name = 'esp_event_question_group';
148
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
149 149
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
150 150
 					QSG_ID INT UNSIGNED NOT NULL,
151 151
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
152 152
 					PRIMARY KEY  (EQG_ID)";
153
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
153
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
154 154
 
155 155
 
156 156
 
157
-		$table_name='esp_event_venue';
158
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
157
+		$table_name = 'esp_event_venue';
158
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
159 159
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
160 160
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
161 161
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
162 162
 				PRIMARY KEY  (EVV_ID)";
163
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
163
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
164 164
 
165 165
 
166 166
 
167
-		$table_name='esp_extra_meta';
168
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
167
+		$table_name = 'esp_extra_meta';
168
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
169 169
 				OBJ_ID INT(11) DEFAULT NULL,
170 170
 				EXM_type VARCHAR(45) DEFAULT NULL,
171 171
 				EXM_key VARCHAR(45) DEFAULT NULL,
172 172
 				EXM_value TEXT,
173 173
 				PRIMARY KEY  (EXM_ID)";
174
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
174
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
175 175
 
176
-		$table_name='esp_line_item';
177
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
176
+		$table_name = 'esp_line_item';
177
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
178 178
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
179 179
 				TXN_ID INT(11) DEFAULT NULL,
180 180
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 				OBJ_ID INT(11) DEFAULT NULL,
191 191
 				OBJ_type VARCHAR(45)DEFAULT NULL,
192 192
 				PRIMARY KEY  (LIN_ID)";
193
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB' );
193
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
194 194
 
195 195
 		$table_name = 'esp_message_template';
196 196
 		$sql = "MTP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 					KEY GRP_ID (GRP_ID)";
203 203
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
204 204
 
205
-		EEH_Activation::drop_index( 'esp_message_template_group', 'EVT_ID' );
205
+		EEH_Activation::drop_index('esp_message_template_group', 'EVT_ID');
206 206
 
207 207
 		$table_name = 'esp_message_template_group';
208 208
 		$sql = "GRP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 					MTP_is_active TINYINT(1) NOT NULL DEFAULT '1',
218 218
 					PRIMARY KEY  (GRP_ID),
219 219
 					KEY MTP_user_id (MTP_user_id)";
220
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
220
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
221 221
 
222 222
 		$table_name = 'esp_event_message_template';
223 223
 		$sql = "EMT_ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 					PRIMARY KEY  (EMT_ID),
227 227
 					KEY EVT_ID (EVT_ID),
228 228
 					KEY GRP_ID (GRP_ID)";
229
-		$this->_table_is_new_in_this_version( $table_name, $sql, 'ENGINE=InnoDB');
229
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
230 230
 
231 231
 
232 232
 
@@ -335,8 +335,8 @@  discard block
 block discarded – undo
335 335
 
336 336
 
337 337
 
338
-		$table_name='esp_question';
339
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
338
+		$table_name = 'esp_question';
339
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
340 340
 					QST_display_text TEXT NOT NULL,
341 341
 					QST_admin_label VARCHAR(255) NOT NULL,
342 342
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -348,12 +348,12 @@  discard block
 block discarded – undo
348 348
 					QST_wp_user BIGINT UNSIGNED NULL,
349 349
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
350 350
 					PRIMARY KEY  (QST_ID)';
351
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
351
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
352 352
 
353
-		EEH_Activation::drop_index( 'esp_question_group', 'QSG_identifier_UNIQUE' );
353
+		EEH_Activation::drop_index('esp_question_group', 'QSG_identifier_UNIQUE');
354 354
 
355 355
 		$table_name = 'esp_question_group';
356
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
356
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
357 357
 					QSG_name VARCHAR(255) NOT NULL,
358 358
 					QSG_identifier VARCHAR(100) NOT NULL,
359 359
 					QSG_desc TEXT NULL,
@@ -364,29 +364,29 @@  discard block
 block discarded – undo
364 364
 					QSG_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
365 365
 					PRIMARY KEY  (QSG_ID),
366 366
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
367
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
367
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
368 368
 
369 369
 
370 370
 
371
-		$table_name='esp_question_group_question';
372
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
371
+		$table_name = 'esp_question_group_question';
372
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
373 373
 					QSG_ID INT UNSIGNED NOT NULL,
374 374
 					QST_ID INT UNSIGNED NOT NULL,
375 375
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
376 376
 					PRIMARY KEY  (QGQ_ID) ";
377
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
377
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
378 378
 
379 379
 
380 380
 
381
-		$table_name='esp_question_option';
382
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
381
+		$table_name = 'esp_question_option';
382
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
383 383
 					QSO_value VARCHAR(255) NOT NULL,
384 384
 					QSO_desc TEXT NOT NULL,
385 385
 					QST_ID INT UNSIGNED NOT NULL,
386 386
 					QSO_order INT UNSIGNED NOT NULL DEFAULT 0,
387 387
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
388 388
 					PRIMARY KEY  (QSO_ID)";
389
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
389
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
390 390
 
391 391
 
392 392
 
@@ -419,8 +419,8 @@  discard block
 block discarded – undo
419 419
 
420 420
 
421 421
 
422
-		$table_name='esp_checkin';
423
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
422
+		$table_name = 'esp_checkin';
423
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
424 424
 					REG_ID INT(10) UNSIGNED NOT NULL,
425 425
 					DTT_ID INT(10) UNSIGNED NOT NULL,
426 426
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
495 495
 
496 496
 
497
-		$script_with_defaults = EE_Registry::instance()->load_dms( 'Core_4_1_0' );
497
+		$script_with_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
498 498
 		//setting up the DEFAULT stats and countries is also essential for the data migrations to run
499 499
 		//(because many need to convert old string states to foreign keys into the states table)
500 500
 		$script_with_defaults->insert_default_states();
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 		return true;
517 517
 	}
518 518
 
519
-	public function migration_page_hooks(){
519
+	public function migration_page_hooks() {
520 520
 
521 521
 	}
522 522
 
@@ -532,34 +532,34 @@  discard block
 block discarded – undo
532 532
 
533 533
 		global $wpdb;
534 534
 		$ticket_table = $wpdb->prefix."esp_ticket";
535
-		if ( EEH_Activation::table_exists( $ticket_table ) ) {
535
+		if (EEH_Activation::table_exists($ticket_table)) {
536 536
 
537
-			$SQL = 'SELECT COUNT(TKT_ID) FROM ' . $ticket_table;
537
+			$SQL = 'SELECT COUNT(TKT_ID) FROM '.$ticket_table;
538 538
 			$tickets_exist = $wpdb->get_var($SQL);
539 539
 
540
-			if ( ! $tickets_exist ) {
540
+			if ( ! $tickets_exist) {
541 541
 				$SQL = "INSERT INTO $ticket_table
542 542
 					( TKT_ID, TTM_ID, TKT_name, TKT_description, TKT_qty, TKT_sold, TKT_uses, TKT_required, TKT_min, TKT_max, TKT_price, TKT_start_date, TKT_end_date, TKT_taxable, TKT_order, TKT_row, TKT_is_default, TKT_parent, TKT_deleted ) VALUES
543
-					( 1, 0, '" . __("Free Ticket", "event_espresso") . "', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
544
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL );
543
+					( 1, 0, '".__("Free Ticket", "event_espresso")."', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
544
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL);
545 545
 				$wpdb->query($SQL);
546 546
 			}
547 547
 		}
548 548
 		$ticket_price_table = $wpdb->prefix."esp_ticket_price";
549 549
 
550
-		if ( EEH_Activation::table_exists( $ticket_price_table ) ) {
550
+		if (EEH_Activation::table_exists($ticket_price_table)) {
551 551
 
552
-			$SQL = 'SELECT COUNT(TKP_ID) FROM ' . $ticket_price_table;
552
+			$SQL = 'SELECT COUNT(TKP_ID) FROM '.$ticket_price_table;
553 553
 			$ticket_prc_exist = $wpdb->get_var($SQL);
554 554
 
555
-			if ( ! $ticket_prc_exist ) {
555
+			if ( ! $ticket_prc_exist) {
556 556
 
557 557
 				$SQL = "INSERT INTO $ticket_price_table
558 558
 				( TKP_ID, TKT_ID, PRC_ID ) VALUES
559 559
 				( 1, 1, 1 )
560 560
 				";
561 561
 
562
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL );
562
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL);
563 563
 				$wpdb->query($SQL);
564 564
 			}
565 565
 		}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_5_0.dms.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
 		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		} elseif( ! $version_string ){
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71 71
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
72
+		} else{
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
Please login to merge, or discard this patch.
Spacing   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -12,16 +12,16 @@  discard block
 block discarded – undo
12 12
 //(all other times it gets resurrected from a wordpress option)
13 13
 $stages = glob(EE_CORE.'data_migration_scripts/4_5_0_stages/*');
14 14
 $class_to_filepath = array();
15
-foreach($stages as $filepath){
15
+foreach ($stages as $filepath) {
16 16
 	$matches = array();
17
-	preg_match('~4_5_0_stages/(.*).dmsstage.php~',$filepath,$matches);
17
+	preg_match('~4_5_0_stages/(.*).dmsstage.php~', $filepath, $matches);
18 18
 	$class_to_filepath[$matches[1]] = $filepath;
19 19
 }
20 20
 //give addons a chance to autoload their stages too
21
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_5_0__autoloaded_stages',$class_to_filepath);
21
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_5_0__autoloaded_stages', $class_to_filepath);
22 22
 EEH_Autoloader::register_autoloader($class_to_filepath);
23 23
 
24
-class EE_DMS_Core_4_5_0 extends EE_Data_Migration_Script_Base{
24
+class EE_DMS_Core_4_5_0 extends EE_Data_Migration_Script_Base {
25 25
 
26 26
 
27 27
 
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
 	}
40 40
 	public function can_migrate_from_version($version_array) {
41 41
 		$version_string = $version_array['Core'];
42
-		if($version_string <= '4.5.0' && $version_string >= '4.3.0' ){
42
+		if ($version_string <= '4.5.0' && $version_string >= '4.3.0') {
43 43
 //			echo "$version_string can be migrated from";
44 44
 			return true;
45
-		}elseif( ! $version_string ){
45
+		}elseif ( ! $version_string) {
46 46
 //			echo "no version string provided: $version_string";
47 47
 			//no version string provided... this must be pre 4.3
48
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
49
-		}else{
48
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
49
+		} else {
50 50
 //			echo "$version_string doesnt apply";
51 51
 			return false;
52 52
 		}
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
 	}
57 57
 	public function schema_changes_before_migration() {
58 58
 		//relies on 4.1's EEH_Activation::create_table
59
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
60
-		$table_name='esp_answer';
61
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
59
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
60
+		$table_name = 'esp_answer';
61
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
62 62
 					REG_ID INT UNSIGNED NOT NULL,
63 63
 					QST_ID INT UNSIGNED NOT NULL,
64 64
 					ANS_value TEXT NOT NULL,
65 65
 					PRIMARY KEY  (ANS_ID)";
66
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
66
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
67 67
 
68 68
 		$table_name = 'esp_attendee_meta';
69 69
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
103 103
 					  CNT_active TINYINT(1) DEFAULT '0',
104 104
 					  PRIMARY KEY  (CNT_ISO)";
105
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
105
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
106 106
 
107 107
 		$table_name = 'esp_datetime';
108 108
 		$sql = "DTT_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
 
125 125
 
126
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
126
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
127 127
 		$table_name = 'esp_event_meta';
128 128
 		$sql = "
129 129
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -140,41 +140,41 @@  discard block
 block discarded – undo
140 140
 			EVT_external_URL VARCHAR(200) NULL,
141 141
 			EVT_donations TINYINT(1) NULL,
142 142
 			PRIMARY KEY  (EVTM_ID)";
143
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
143
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
144 144
 
145 145
 
146 146
 
147
-		$table_name='esp_event_question_group';
148
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
147
+		$table_name = 'esp_event_question_group';
148
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
149 149
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
150 150
 					QSG_ID INT UNSIGNED NOT NULL,
151 151
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
152 152
 					PRIMARY KEY  (EQG_ID)";
153
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
153
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
154 154
 
155 155
 
156 156
 
157
-		$table_name='esp_event_venue';
158
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
157
+		$table_name = 'esp_event_venue';
158
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
159 159
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
160 160
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
161 161
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
162 162
 				PRIMARY KEY  (EVV_ID)";
163
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
163
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
164 164
 
165 165
 
166 166
 
167
-		$table_name='esp_extra_meta';
168
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
167
+		$table_name = 'esp_extra_meta';
168
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
169 169
 				OBJ_ID INT(11) DEFAULT NULL,
170 170
 				EXM_type VARCHAR(45) DEFAULT NULL,
171 171
 				EXM_key VARCHAR(45) DEFAULT NULL,
172 172
 				EXM_value TEXT,
173 173
 				PRIMARY KEY  (EXM_ID)";
174
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
174
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
175 175
 
176
-		$table_name='esp_line_item';
177
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
176
+		$table_name = 'esp_line_item';
177
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
178 178
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
179 179
 				TXN_ID INT(11) DEFAULT NULL,
180 180
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 				OBJ_ID INT(11) DEFAULT NULL,
191 191
 				OBJ_type VARCHAR(45)DEFAULT NULL,
192 192
 				PRIMARY KEY  (LIN_ID)";
193
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB' );
193
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
194 194
 
195 195
 		$table_name = 'esp_message_template';
196 196
 		$sql = "MTP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 					KEY GRP_ID (GRP_ID)";
203 203
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
204 204
 
205
-		EEH_Activation::drop_index( 'esp_message_template_group', 'EVT_ID' );
205
+		EEH_Activation::drop_index('esp_message_template_group', 'EVT_ID');
206 206
 
207 207
 		$table_name = 'esp_message_template_group';
208 208
 		$sql = "GRP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 					MTP_is_active TINYINT(1) NOT NULL DEFAULT '1',
218 218
 					PRIMARY KEY  (GRP_ID),
219 219
 					KEY MTP_user_id (MTP_user_id)";
220
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
220
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
221 221
 
222 222
 		$table_name = 'esp_event_message_template';
223 223
 		$sql = "EMT_ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 					PRIMARY KEY  (EMT_ID),
227 227
 					KEY EVT_ID (EVT_ID),
228 228
 					KEY GRP_ID (GRP_ID)";
229
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
229
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
230 230
 
231 231
 
232 232
 		$table_name = 'esp_payment';
@@ -276,8 +276,8 @@  discard block
 block discarded – undo
276 276
 					  PRIMARY KEY  (TTM_ID)";
277 277
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
278 278
 
279
-		$table_name='esp_question';
280
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
279
+		$table_name = 'esp_question';
280
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
281 281
 					QST_display_text TEXT NOT NULL,
282 282
 					QST_admin_label VARCHAR(255) NOT NULL,
283 283
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -289,27 +289,27 @@  discard block
 block discarded – undo
289 289
 					QST_wp_user BIGINT UNSIGNED NULL,
290 290
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
291 291
 					PRIMARY KEY  (QST_ID)';
292
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
292
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
293 293
 
294
-		$table_name='esp_question_group_question';
295
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
294
+		$table_name = 'esp_question_group_question';
295
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
296 296
 					QSG_ID INT UNSIGNED NOT NULL,
297 297
 					QST_ID INT UNSIGNED NOT NULL,
298 298
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
299 299
 					PRIMARY KEY  (QGQ_ID) ";
300
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
300
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
301 301
 
302 302
 
303 303
 
304
-		$table_name='esp_question_option';
305
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
304
+		$table_name = 'esp_question_option';
305
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
306 306
 					QSO_value VARCHAR(255) NOT NULL,
307 307
 					QSO_desc TEXT NOT NULL,
308 308
 					QST_ID INT UNSIGNED NOT NULL,
309 309
 					QSO_order INT UNSIGNED NOT NULL DEFAULT 0,
310 310
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
311 311
 					PRIMARY KEY  (QSO_ID)";
312
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
312
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
313 313
 
314 314
 
315 315
 
@@ -342,8 +342,8 @@  discard block
 block discarded – undo
342 342
 
343 343
 
344 344
 
345
-		$table_name='esp_checkin';
346
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
345
+		$table_name = 'esp_checkin';
346
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
347 347
 					REG_ID INT(10) UNSIGNED NOT NULL,
348 348
 					DTT_ID INT(10) UNSIGNED NOT NULL,
349 349
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
 					  PRC_wp_user BIGINT UNSIGNED NULL,
432 432
 					  PRC_parent INT(10) UNSIGNED DEFAULT 0,
433 433
 					  PRIMARY KEY  (PRC_ID)";
434
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
434
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
435 435
 
436 436
 		$table_name = "esp_price_type";
437 437
 		$sql = "PRT_ID TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -468,12 +468,12 @@  discard block
 block discarded – undo
468 468
 					  TKT_parent INT(10) UNSIGNED DEFAULT '0',
469 469
 					  TKT_deleted TINYINT(1) NOT NULL DEFAULT '0',
470 470
 					  PRIMARY KEY  (TKT_ID)";
471
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
471
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
472 472
 
473
-		EEH_Activation::drop_index( 'esp_question_group', 'QSG_identifier_UNIQUE' );
473
+		EEH_Activation::drop_index('esp_question_group', 'QSG_identifier_UNIQUE');
474 474
 
475 475
 		$table_name = 'esp_question_group';
476
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
476
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
477 477
 					QSG_name VARCHAR(255) NOT NULL,
478 478
 					QSG_identifier VARCHAR(100) NOT NULL,
479 479
 					QSG_desc TEXT NULL,
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 					QSG_wp_user BIGINT UNSIGNED NULL,
486 486
 					PRIMARY KEY  (QSG_ID),
487 487
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
488
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
488
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
489 489
 
490 490
 		$script_4_1_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
491 491
 
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
 		return true;
510 510
 	}
511 511
 
512
-	public function migration_page_hooks(){
512
+	public function migration_page_hooks() {
513 513
 
514 514
 	}
515 515
 
@@ -523,21 +523,21 @@  discard block
 block discarded – undo
523 523
 		global $wpdb;
524 524
 		$price_type_table = $wpdb->prefix."esp_price_type";
525 525
 
526
-		if ( EEH_Activation::table_exists( $price_type_table ) ) {
526
+		if (EEH_Activation::table_exists($price_type_table)) {
527 527
 
528
-			$SQL = 'SELECT COUNT(PRT_ID) FROM ' . $price_type_table;
529
-			$price_types_exist = $wpdb->get_var( $SQL );
528
+			$SQL = 'SELECT COUNT(PRT_ID) FROM '.$price_type_table;
529
+			$price_types_exist = $wpdb->get_var($SQL);
530 530
 
531
-			if ( ! $price_types_exist ) {
531
+			if ( ! $price_types_exist) {
532 532
 				$user_id = EEH_Activation::get_default_creator_id();
533 533
 				$SQL = "INSERT INTO $price_type_table ( PRT_ID, PRT_name, PBT_ID, PRT_is_percent, PRT_order, PRT_wp_user, PRT_deleted ) VALUES
534
-							(1, '" . __('Base Price', 'event_espresso') . "', 1,  0, 0, $user_id, 0),
535
-							(2, '" . __('Percent Discount', 'event_espresso') . "', 2,  1, 20, $user_id, 0),
536
-							(3, '" . __('Dollar Discount', 'event_espresso') . "', 2,  0, 30, $user_id, 0),
537
-							(4, '" . __('Percent Surcharge', 'event_espresso') . "', 3,  1, 40, $user_id,  0),
538
-							(5, '" . __('Dollar Surcharge', 'event_espresso') . "', 3,  0, 50, $user_id, 0);";
539
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_5_0__insert_default_price_types__SQL', $SQL );
540
-				$wpdb->query( $SQL );
534
+							(1, '".__('Base Price', 'event_espresso')."', 1,  0, 0, $user_id, 0),
535
+							(2, '".__('Percent Discount', 'event_espresso')."', 2,  1, 20, $user_id, 0),
536
+							(3, '".__('Dollar Discount', 'event_espresso')."', 2,  0, 30, $user_id, 0),
537
+							(4, '".__('Percent Surcharge', 'event_espresso')."', 3,  1, 40, $user_id,  0),
538
+							(5, '".__('Dollar Surcharge', 'event_espresso')."', 3,  0, 50, $user_id, 0);";
539
+				$SQL = apply_filters('FHEE__EE_DMS_4_5_0__insert_default_price_types__SQL', $SQL);
540
+				$wpdb->query($SQL);
541 541
 			}
542 542
 		}
543 543
 	}
@@ -557,17 +557,17 @@  discard block
 block discarded – undo
557 557
 		global $wpdb;
558 558
 		$price_table = $wpdb->prefix."esp_price";
559 559
 
560
-		if ( EEH_Activation::table_exists( $price_table ) ) {
560
+		if (EEH_Activation::table_exists($price_table)) {
561 561
 
562
-			$SQL = 'SELECT COUNT(PRC_ID) FROM ' .$price_table;
563
-			$prices_exist = $wpdb->get_var( $SQL );
562
+			$SQL = 'SELECT COUNT(PRC_ID) FROM '.$price_table;
563
+			$prices_exist = $wpdb->get_var($SQL);
564 564
 
565
-			if ( ! $prices_exist ) {
565
+			if ( ! $prices_exist) {
566 566
 				$user_id = EEH_Activation::get_default_creator_id();
567 567
 				$SQL = "INSERT INTO $price_table
568 568
 							(PRC_ID, PRT_ID, PRC_amount, PRC_name, PRC_desc,  PRC_is_default, PRC_overrides, PRC_wp_user, PRC_order, PRC_deleted, PRC_parent ) VALUES
569 569
 							(1, 1, '0.00', 'Free Admission', '', 1, NULL, $user_id, 0, 0, 0);";
570
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_5_0__insert_default_prices__SQL', $SQL );
570
+				$SQL = apply_filters('FHEE__EE_DMS_4_5_0__insert_default_prices__SQL', $SQL);
571 571
 				$wpdb->query($SQL);
572 572
 			}
573 573
 		}
@@ -585,35 +585,35 @@  discard block
 block discarded – undo
585 585
 
586 586
 		global $wpdb;
587 587
 		$ticket_table = $wpdb->prefix."esp_ticket";
588
-		if ( EEH_Activation::table_exists( $ticket_table ) ) {
588
+		if (EEH_Activation::table_exists($ticket_table)) {
589 589
 
590
-			$SQL = 'SELECT COUNT(TKT_ID) FROM ' . $ticket_table;
590
+			$SQL = 'SELECT COUNT(TKT_ID) FROM '.$ticket_table;
591 591
 			$tickets_exist = $wpdb->get_var($SQL);
592 592
 
593
-			if ( ! $tickets_exist ) {
593
+			if ( ! $tickets_exist) {
594 594
 				$user_id = EEH_Activation::get_default_creator_id();
595 595
 				$SQL = "INSERT INTO $ticket_table
596 596
 					( TKT_ID, TTM_ID, TKT_name, TKT_description, TKT_qty, TKT_sold, TKT_uses, TKT_required, TKT_min, TKT_max, TKT_price, TKT_start_date, TKT_end_date, TKT_taxable, TKT_order, TKT_row, TKT_is_default, TKT_parent, TKT_wp_user, TKT_deleted ) VALUES
597
-					( 1, 0, '" . __("Free Ticket", "event_espresso") . "', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, $user_id, 0);";
598
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_5_0__insert_default_tickets__SQL', $SQL );
597
+					( 1, 0, '".__("Free Ticket", "event_espresso")."', '', 100, 0, -1, 0, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, $user_id, 0);";
598
+				$SQL = apply_filters('FHEE__EE_DMS_4_5_0__insert_default_tickets__SQL', $SQL);
599 599
 				$wpdb->query($SQL);
600 600
 			}
601 601
 		}
602 602
 		$ticket_price_table = $wpdb->prefix."esp_ticket_price";
603 603
 
604
-		if ( EEH_Activation::table_exists( $ticket_price_table ) ) {
604
+		if (EEH_Activation::table_exists($ticket_price_table)) {
605 605
 
606
-			$SQL = 'SELECT COUNT(TKP_ID) FROM ' . $ticket_price_table;
606
+			$SQL = 'SELECT COUNT(TKP_ID) FROM '.$ticket_price_table;
607 607
 			$ticket_prc_exist = $wpdb->get_var($SQL);
608 608
 
609
-			if ( ! $ticket_prc_exist ) {
609
+			if ( ! $ticket_prc_exist) {
610 610
 
611 611
 				$SQL = "INSERT INTO $ticket_price_table
612 612
 				( TKP_ID, TKT_ID, PRC_ID ) VALUES
613 613
 				( 1, 1, 1 )
614 614
 				";
615 615
 
616
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_5_0__insert_default_tickets__SQL__ticket_price', $SQL );
616
+				$SQL = apply_filters('FHEE__EE_DMS_4_5_0__insert_default_tickets__SQL__ticket_price', $SQL);
617 617
 				$wpdb->query($SQL);
618 618
 			}
619 619
 		}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_6_0.dms.php 2 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
 		if( $version_string <= '4.8.0' && $version_string >= '4.7.0' ){
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		} elseif( ! $version_string ){
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71 71
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
72
+		} else{
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
Please login to merge, or discard this patch.
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 //(all other times it gets resurrected from a wordpress option)
11 11
 $stages = glob(EE_CORE.'data_migration_scripts/4_6_0_stages/*');
12 12
 $class_to_filepath = array();
13
-foreach($stages as $filepath){
13
+foreach ($stages as $filepath) {
14 14
 	$matches = array();
15
-	preg_match('~4_6_0_stages/(.*).dmsstage.php~',$filepath,$matches);
15
+	preg_match('~4_6_0_stages/(.*).dmsstage.php~', $filepath, $matches);
16 16
 	$class_to_filepath[$matches[1]] = $filepath;
17 17
 }
18 18
 //give addons a chance to autoload their stages too
19
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_6_0__autoloaded_stages',$class_to_filepath);
19
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_6_0__autoloaded_stages', $class_to_filepath);
20 20
 EEH_Autoloader::register_autoloader($class_to_filepath);
21 21
 
22 22
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
  * @since                4.6.0
33 33
  *
34 34
  */
35
-class EE_DMS_Core_4_6_0 extends EE_Data_Migration_Script_Base{
35
+class EE_DMS_Core_4_6_0 extends EE_Data_Migration_Script_Base {
36 36
 
37 37
 	/**
38 38
 	 * return EE_DMS_Core_4_6_0
@@ -62,14 +62,14 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function can_migrate_from_version($version_array) {
64 64
 		$version_string = $version_array['Core'];
65
-		if($version_string <= '4.6.0' && $version_string >= '4.5.0' ){
65
+		if ($version_string <= '4.6.0' && $version_string >= '4.5.0') {
66 66
 //			echo "$version_string can be migrated from";
67 67
 			return true;
68
-		}elseif( ! $version_string ){
68
+		}elseif ( ! $version_string) {
69 69
 //			echo "no version string provided: $version_string";
70 70
 			//no version string provided... this must be pre 4.3
71
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
72
-		}else{
71
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
72
+		} else {
73 73
 //			echo "$version_string doesnt apply";
74 74
 			return false;
75 75
 		}
@@ -91,14 +91,14 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	public function schema_changes_before_migration() {
93 93
 		//relies on 4.1's EEH_Activation::create_table
94
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
95
-		$table_name='esp_answer';
96
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
94
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
95
+		$table_name = 'esp_answer';
96
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
97 97
 					REG_ID INT UNSIGNED NOT NULL,
98 98
 					QST_ID INT UNSIGNED NOT NULL,
99 99
 					ANS_value TEXT NOT NULL,
100 100
 					PRIMARY KEY  (ANS_ID)";
101
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
101
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
102 102
 
103 103
 		$table_name = 'esp_attendee_meta';
104 104
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
138 138
 					  CNT_active TINYINT(1) DEFAULT '0',
139 139
 					  PRIMARY KEY  (CNT_ISO)";
140
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
140
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
141 141
 
142 142
 		$table_name = 'esp_currency';
143 143
 		$sql = "CUR_code VARCHAR(6) COLLATE utf8_bin NOT NULL,
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 				CUR_dec_plc VARCHAR(1) COLLATE utf8_bin NOT NULL DEFAULT '2',
148 148
 				CUR_active TINYINT(1) DEFAULT '0',
149 149
 				PRIMARY KEY  (CUR_code)";
150
-		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
150
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
151 151
 
152 152
 
153 153
 		$table_name = 'esp_currency_payment_method';
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
 
178 178
 
179 179
 
180
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
180
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
181 181
 		$table_name = 'esp_event_meta';
182 182
 		$sql = "
183 183
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -194,41 +194,41 @@  discard block
 block discarded – undo
194 194
 			EVT_external_URL VARCHAR(200) NULL,
195 195
 			EVT_donations TINYINT(1) NULL,
196 196
 			PRIMARY KEY  (EVTM_ID)";
197
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
197
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
198 198
 
199 199
 
200 200
 
201
-		$table_name='esp_event_question_group';
202
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
201
+		$table_name = 'esp_event_question_group';
202
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
203 203
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
204 204
 					QSG_ID INT UNSIGNED NOT NULL,
205 205
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
206 206
 					PRIMARY KEY  (EQG_ID)";
207
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
207
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
208 208
 
209 209
 
210 210
 
211
-		$table_name='esp_event_venue';
212
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
211
+		$table_name = 'esp_event_venue';
212
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
213 213
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
214 214
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
215 215
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
216 216
 				PRIMARY KEY  (EVV_ID)";
217
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
217
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
218 218
 
219 219
 
220 220
 
221
-		$table_name='esp_extra_meta';
222
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
221
+		$table_name = 'esp_extra_meta';
222
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
223 223
 				OBJ_ID INT(11) DEFAULT NULL,
224 224
 				EXM_type VARCHAR(45) DEFAULT NULL,
225 225
 				EXM_key VARCHAR(45) DEFAULT NULL,
226 226
 				EXM_value TEXT,
227 227
 				PRIMARY KEY  (EXM_ID)";
228
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
228
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
229 229
 
230
-		$table_name='esp_line_item';
231
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
230
+		$table_name = 'esp_line_item';
231
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
232 232
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
233 233
 				TXN_ID INT(11) DEFAULT NULL,
234 234
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 				OBJ_ID INT(11) DEFAULT NULL,
245 245
 				OBJ_type VARCHAR(45)DEFAULT NULL,
246 246
 				PRIMARY KEY  (LIN_ID)";
247
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB' );
247
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
248 248
 
249 249
 		$table_name = 'esp_log';
250 250
 		$sql = "LOG_ID INT(11) NOT NULL AUTO_INCREMENT,
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 					KEY GRP_ID (GRP_ID)";
268 268
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
269 269
 
270
-		EEH_Activation::drop_index( 'esp_message_template_group', 'EVT_ID' );
270
+		EEH_Activation::drop_index('esp_message_template_group', 'EVT_ID');
271 271
 
272 272
 		$table_name = 'esp_message_template_group';
273 273
 		$sql = "GRP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 					MTP_is_active TINYINT(1) NOT NULL DEFAULT '1',
283 283
 					PRIMARY KEY  (GRP_ID),
284 284
 					KEY MTP_user_id (MTP_user_id)";
285
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
285
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
286 286
 
287 287
 		$table_name = 'esp_event_message_template';
288 288
 		$sql = "EMT_ID BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 					PRIMARY KEY  (EMT_ID),
292 292
 					KEY EVT_ID (EVT_ID),
293 293
 					KEY GRP_ID (GRP_ID)";
294
-		$this->_table_should_exist_previously( $table_name, $sql, 'ENGINE=InnoDB');
294
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
295 295
 
296 296
 
297 297
 		$table_name = 'esp_payment';
@@ -359,8 +359,8 @@  discard block
 block discarded – undo
359 359
 					  PRIMARY KEY  (TTM_ID)";
360 360
 		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
361 361
 
362
-		$table_name='esp_question';
363
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
362
+		$table_name = 'esp_question';
363
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
364 364
 					QST_display_text TEXT NOT NULL,
365 365
 					QST_admin_label VARCHAR(255) NOT NULL,
366 366
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -372,27 +372,27 @@  discard block
 block discarded – undo
372 372
 					QST_wp_user BIGINT UNSIGNED NULL,
373 373
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
374 374
 					PRIMARY KEY  (QST_ID)';
375
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
375
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
376 376
 
377
-		$table_name='esp_question_group_question';
378
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
377
+		$table_name = 'esp_question_group_question';
378
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
379 379
 					QSG_ID INT UNSIGNED NOT NULL,
380 380
 					QST_ID INT UNSIGNED NOT NULL,
381 381
 					QGQ_order INT UNSIGNED NOT NULL DEFAULT 0,
382 382
 					PRIMARY KEY  (QGQ_ID) ";
383
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
383
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
384 384
 
385 385
 
386 386
 
387
-		$table_name='esp_question_option';
388
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
387
+		$table_name = 'esp_question_option';
388
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
389 389
 					QSO_value VARCHAR(255) NOT NULL,
390 390
 					QSO_desc TEXT NOT NULL,
391 391
 					QST_ID INT UNSIGNED NOT NULL,
392 392
 					QSO_order INT UNSIGNED NOT NULL DEFAULT 0,
393 393
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
394 394
 					PRIMARY KEY  (QSO_ID)";
395
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
395
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
396 396
 
397 397
 
398 398
 
@@ -425,8 +425,8 @@  discard block
 block discarded – undo
425 425
 
426 426
 
427 427
 
428
-		$table_name='esp_checkin';
429
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
428
+		$table_name = 'esp_checkin';
429
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
430 430
 					REG_ID INT(10) UNSIGNED NOT NULL,
431 431
 					DTT_ID INT(10) UNSIGNED NOT NULL,
432 432
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 					  PRC_wp_user BIGINT UNSIGNED NULL,
516 516
 					  PRC_parent INT(10) UNSIGNED DEFAULT 0,
517 517
 					  PRIMARY KEY  (PRC_ID)";
518
-		$this->_table_should_exist_previously($table_name,$sql, 'ENGINE=InnoDB');
518
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
519 519
 
520 520
 		$table_name = "esp_price_type";
521 521
 		$sql = "PRT_ID TINYINT(3) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -552,12 +552,12 @@  discard block
 block discarded – undo
552 552
 					  TKT_parent INT(10) UNSIGNED DEFAULT '0',
553 553
 					  TKT_deleted TINYINT(1) NOT NULL DEFAULT '0',
554 554
 					  PRIMARY KEY  (TKT_ID)";
555
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
555
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
556 556
 
557
-		EEH_Activation::drop_index( 'esp_question_group', 'QSG_identifier_UNIQUE' );
557
+		EEH_Activation::drop_index('esp_question_group', 'QSG_identifier_UNIQUE');
558 558
 
559 559
 		$table_name = 'esp_question_group';
560
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
560
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
561 561
 					QSG_name VARCHAR(255) NOT NULL,
562 562
 					QSG_identifier VARCHAR(100) NOT NULL,
563 563
 					QSG_desc TEXT NULL,
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 					QSG_wp_user BIGINT UNSIGNED NULL,
570 570
 					PRIMARY KEY  (QSG_ID),
571 571
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
572
-		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB' );
572
+		$this->_table_should_exist_previously($table_name, $sql, 'ENGINE=InnoDB');
573 573
 
574 574
 		/** @var EE_DMS_Core_4_1_0 $script_4_1_defaults */
575 575
 		$script_4_1_defaults = EE_Registry::instance()->load_dms('Core_4_1_0');
@@ -597,15 +597,15 @@  discard block
 block discarded – undo
597 597
 		return true;
598 598
 	}
599 599
 
600
-	public function migration_page_hooks(){
600
+	public function migration_page_hooks() {
601 601
 
602 602
 	}
603 603
 
604
-	public function add_default_admin_only_payments(){
604
+	public function add_default_admin_only_payments() {
605 605
 		global $wpdb;
606 606
 		$table_name = $wpdb->prefix."esp_payment_method";
607 607
 		$user_id = EEH_Activation::get_default_creator_id();
608
-		if ( EEH_Activation::table_exists( $table_name ) ) {
608
+		if (EEH_Activation::table_exists($table_name)) {
609 609
 
610 610
 			$SQL = "SELECT COUNT( * ) FROM $table_name";
611 611
 			$existing_payment_methods = $wpdb->get_var($SQL);
@@ -626,11 +626,11 @@  discard block
 block discarded – undo
626 626
 			//so admins can record payments for them from the admin page
627 627
 
628 628
 
629
-			foreach($default_admin_only_payment_methods as $nicename => $description){
629
+			foreach ($default_admin_only_payment_methods as $nicename => $description) {
630 630
 				$slug = sanitize_key($nicename);
631 631
 			//check that such a payment method exists
632
-				$exists = $wpdb->get_var($wpdb->prepare("SELECT count(*) FROM $table_name WHERE PMD_slug = %s",$slug));
633
-				if( ! $exists){
632
+				$exists = $wpdb->get_var($wpdb->prepare("SELECT count(*) FROM $table_name WHERE PMD_slug = %s", $slug));
633
+				if ( ! $exists) {
634 634
 					$values = array(
635 635
 								'PMD_type'=>'Admin_Only',
636 636
 								'PMD_name'=>$nicename,
@@ -644,17 +644,17 @@  discard block
 block discarded – undo
644 644
 							$table_name,
645 645
 							$values,
646 646
 							array(
647
-								'%s',//PMD_type
648
-								'%s',//PMD_name
649
-								'%s',//PMD_admin_name
650
-								'%s',//PMD_admin_desc
651
-								'%s',//PMD_slug
652
-								'%d',//PMD_wp_user
653
-								'%s',//PMD_scope
647
+								'%s', //PMD_type
648
+								'%s', //PMD_name
649
+								'%s', //PMD_admin_name
650
+								'%s', //PMD_admin_desc
651
+								'%s', //PMD_slug
652
+								'%d', //PMD_wp_user
653
+								'%s', //PMD_scope
654 654
 							)
655 655
 							);
656
-					if( ! $success ){
657
-						$this->add_error(sprintf(__("Could not insert new admin-only payment method with values %s during migration", "event_espresso"),$this->_json_encode($values)));
656
+					if ( ! $success) {
657
+						$this->add_error(sprintf(__("Could not insert new admin-only payment method with values %s during migration", "event_espresso"), $this->_json_encode($values)));
658 658
 					}
659 659
 				}
660 660
 			}
@@ -672,11 +672,11 @@  discard block
 block discarded – undo
672 672
 
673 673
 		global $wpdb;
674 674
 		$currency_table = $wpdb->prefix."esp_currency";
675
-		if ( EEH_Activation::table_exists( $currency_table ) ) {
675
+		if (EEH_Activation::table_exists($currency_table)) {
676 676
 
677 677
 			$SQL = "SELECT COUNT('CUR_code') FROM $currency_table";
678 678
 			$countries = $wpdb->get_var($SQL);
679
-			if ( ! $countries ) {
679
+			if ( ! $countries) {
680 680
 				$SQL = "INSERT INTO $currency_table
681 681
 				( CUR_code, CUR_single, CUR_plural, CUR_sign, CUR_dec_plc, CUR_active) VALUES
682 682
 				( 'EUR',  'Euro',  'Euros',  '€',  2,1),
Please login to merge, or discard this patch.