Completed
Branch FET-9413-questions-refactor (7aebbc)
by
unknown
86:30 queued 75:25
created
core/CPTs/EE_Register_CPTs.core.php 2 patches
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  *
4 6
  * EE_Register_CPTs
@@ -353,8 +355,9 @@  discard block
 block discarded – undo
353 355
 		$CPTs = self::get_CPTs();
354 356
 		$private_CPTs = array();
355 357
 		foreach ( $CPTs as $CPT => $details ) {
356
-			if ( empty( $details['args']['public'] ) )
357
-				$private_CPTs[ $CPT ] = $details;
358
+			if ( empty( $details['args']['public'] ) ) {
359
+							$private_CPTs[ $CPT ] = $details;
360
+			}
358 361
 		}
359 362
 		return $private_CPTs;
360 363
 	}
@@ -534,8 +537,10 @@  discard block
 block discarded – undo
534 537
 	 * @return void
535 538
 	 */
536 539
 	function save_default_term( $post_id, $post ) {
537
-		if ( empty( $this->_default_terms ) )
538
-			return; //no default terms set so lets just exit.
540
+		if ( empty( $this->_default_terms ) ) {
541
+					return;
542
+		}
543
+		//no default terms set so lets just exit.
539 544
 
540 545
 		foreach ( $this->_default_terms as $defaults ) {
541 546
 			foreach ( $defaults as $default_obj ) {
Please login to merge, or discard this patch.
Spacing   +94 added lines, -94 removed lines patch added patch discarded remove patch
@@ -23,37 +23,37 @@  discard block
 block discarded – undo
23 23
 	 * 	constructor
24 24
 	 * instantiated at init priority 5
25 25
 	 */
26
-	function __construct(){
26
+	function __construct() {
27 27
 		// register taxonomies
28 28
 		$taxonomies = self::get_taxonomies();
29
-		foreach ( $taxonomies as $taxonomy =>  $tax ) {
30
-			$this->register_taxonomy( $taxonomy, $tax['singular_name'], $tax['plural_name'], $tax['args'] );
29
+		foreach ($taxonomies as $taxonomy =>  $tax) {
30
+			$this->register_taxonomy($taxonomy, $tax['singular_name'], $tax['plural_name'], $tax['args']);
31 31
 		}
32 32
 		// register CPTs
33
-		$CPTs =self::get_CPTs();
34
-		foreach ( $CPTs as $CPT_name =>  $CPT ) {
35
-			$this->register_CPT( $CPT_name, $CPT['singular_name'], $CPT['plural_name'], $CPT['args'], $CPT['singular_slug'], $CPT['plural_slug'] );
33
+		$CPTs = self::get_CPTs();
34
+		foreach ($CPTs as $CPT_name =>  $CPT) {
35
+			$this->register_CPT($CPT_name, $CPT['singular_name'], $CPT['plural_name'], $CPT['args'], $CPT['singular_slug'], $CPT['plural_slug']);
36 36
 		}
37 37
 		// setup default terms in any of our taxonomies (but only if we're in admin).
38 38
 		// Why not added via register_activation_hook?
39 39
 		// Because it's possible that in future iterations of EE we may add new defaults for specialized taxonomies (think event_types) and register_activation_hook only reliably runs when a user manually activates the plugin.
40 40
 		// Keep in mind that this will READ these terms if they are deleted by the user.  Hence MUST use terms.
41
-		if ( is_admin() ) {
41
+		if (is_admin()) {
42 42
 			$this->set_must_use_event_types();
43 43
 		}
44 44
 		//set default terms
45
-		$this->set_default_term( 'espresso_event_type', 'single-event', array('espresso_events') );
45
+		$this->set_default_term('espresso_event_type', 'single-event', array('espresso_events'));
46 46
 
47 47
 
48
-		add_action( 'AHEE__EE_System__initialize_last', array( __CLASS__,  'maybe_flush_rewrite_rules' ), 10 );
48
+		add_action('AHEE__EE_System__initialize_last', array(__CLASS__, 'maybe_flush_rewrite_rules'), 10);
49 49
 
50 50
 		//hook into save_post so that we can make sure that the default terms get saved on publish of registered cpts IF they don't have a term for that taxonomy set.
51
-		add_action('save_post', array( $this, 'save_default_term' ), 100, 2 );
51
+		add_action('save_post', array($this, 'save_default_term'), 100, 2);
52 52
 
53 53
 		//remove no html restrictions from core wp saving of term descriptions.  Note. this will affect only registered EE taxonomies.
54 54
 		$this->_allow_html_descriptions_for_ee_taxonomies();
55 55
 
56
-		do_action( 'AHEE__EE_Register_CPTs__construct_end', $this );
56
+		do_action('AHEE__EE_Register_CPTs__construct_end', $this);
57 57
 	}
58 58
 
59 59
 
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 	 * @return void
67 67
 	 */
68 68
 	public static function  maybe_flush_rewrite_rules() {
69
-		if ( get_option( 'ee_flush_rewrite_rules', TRUE )) {
69
+		if (get_option('ee_flush_rewrite_rules', TRUE)) {
70 70
 			flush_rewrite_rules();
71
-			update_option( 'ee_flush_rewrite_rules', FALSE );
71
+			update_option('ee_flush_rewrite_rules', FALSE);
72 72
 		}
73 73
 	}
74 74
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	protected function _allow_html_descriptions_for_ee_taxonomies() {
84 84
 		//first remove default filter for term description but we have to do this earlier before wp sets their own filter
85 85
 		//because they just set a global filter on all term descriptions before the custom term description filter. Really sux.
86
-		add_filter( 'pre_term_description', array( $this, 'ee_filter_ee_term_description_not_wp' ), 1, 2 );
86
+		add_filter('pre_term_description', array($this, 'ee_filter_ee_term_description_not_wp'), 1, 2);
87 87
 	}
88 88
 
89 89
 
@@ -93,16 +93,16 @@  discard block
 block discarded – undo
93 93
 	 * @param string $taxonomy      The taxonomy name for the taxonomy being filtered.
94 94
 	 * @return string
95 95
 	 */
96
-	public function ee_filter_ee_term_description_not_wp( $description, $taxonomy ) {
96
+	public function ee_filter_ee_term_description_not_wp($description, $taxonomy) {
97 97
 		//get a list of EE taxonomies
98
-		$ee_taxonomies = array_keys( self::get_taxonomies() );
98
+		$ee_taxonomies = array_keys(self::get_taxonomies());
99 99
 
100 100
 		//only do our own thing if the taxonomy listed is an ee taxonomy.
101
-		if ( in_array( $taxonomy, $ee_taxonomies ) ) {
101
+		if (in_array($taxonomy, $ee_taxonomies)) {
102 102
 			//remove default wp filter
103
-			remove_filter( 'pre_term_description', 'wp_filter_kses' );
103
+			remove_filter('pre_term_description', 'wp_filter_kses');
104 104
 			//sanitize THIS content.
105
-			$description = wp_kses( $description, wp_kses_allowed_html( 'post' ) );
105
+			$description = wp_kses($description, wp_kses_allowed_html('post'));
106 106
 		}
107 107
 		return $description;
108 108
 	}
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
 	 *  @access 	public
117 117
 	 *  @return 	array
118 118
 	 */
119
-	public static function get_taxonomies(){
119
+	public static function get_taxonomies() {
120 120
 		// define taxonomies
121
-		return apply_filters( 'FHEE__EE_Register_CPTs__get_taxonomies__taxonomies', array(
121
+		return apply_filters('FHEE__EE_Register_CPTs__get_taxonomies__taxonomies', array(
122 122
 			'espresso_event_categories' => array(
123 123
 				'singular_name' => __("Event Category", "event_espresso"),
124 124
 				'plural_name' => __("Event Categories", "event_espresso"),
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 						'delete_terms' => 'ee_delete_event_category',
132 132
 						'assign_terms' => 'ee_assign_event_category'
133 133
 						),
134
-					'rewrite' => array( 'slug' => __( 'event-category', 'event_espresso' ))
134
+					'rewrite' => array('slug' => __('event-category', 'event_espresso'))
135 135
 				)),
136 136
 			'espresso_venue_categories' => array(
137 137
 				'singular_name' => __("Venue Category", "event_espresso"),
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 						'delete_terms' => 'ee_delete_venue_category',
146 146
 						'assign_terms' => 'ee_assign_venue_category'
147 147
 						),
148
-					'rewrite' => array( 'slug' => __( 'venue-category', 'event_espresso' ))
148
+					'rewrite' => array('slug' => __('venue-category', 'event_espresso'))
149 149
 				)),
150 150
 			'espresso_event_type' => array(
151 151
 				'singular_name' => __("Event Type", "event_espresso"),
@@ -159,10 +159,10 @@  discard block
 block discarded – undo
159 159
 						'delete_terms' => 'ee_delete_event_type',
160 160
 						'assign_terms' => 'ee_assign_event_type'
161 161
 						),
162
-					'rewrite' => array( 'slug' => __( 'event-type', 'event_espresso' )),
162
+					'rewrite' => array('slug' => __('event-type', 'event_espresso')),
163 163
 					'hierarchical'=>true
164 164
 				))
165
-			) );
165
+			));
166 166
 	}
167 167
 
168 168
 
@@ -180,26 +180,26 @@  discard block
 block discarded – undo
180 180
 	 * @return array 	       Empty array if no matching model names for the given slug or an array of model
181 181
 	 *                                         names indexed by post type slug.
182 182
 	 */
183
-	public static function get_cpt_model_names( $post_type_slug = '' ) {
183
+	public static function get_cpt_model_names($post_type_slug = '') {
184 184
 		$cpts = self::get_CPTs();
185 185
 
186 186
 		//first if slug passed in...
187
-		if ( ! empty( $post_type_slug )  ) {
187
+		if ( ! empty($post_type_slug)) {
188 188
 			//match?
189
-			if ( ! isset( $cpts[$post_type_slug] ) || ( isset( $cpts[$post_type_slug] ) && empty( $cpts[$post_type_slug]['class_name'] ) ) ) {
189
+			if ( ! isset($cpts[$post_type_slug]) || (isset($cpts[$post_type_slug]) && empty($cpts[$post_type_slug]['class_name']))) {
190 190
 				return array();
191 191
 			}
192 192
 
193 193
 			//k let's get the model name for this cpt.
194
-			return array( $post_type_slug => str_replace( 'EE', 'EEM', $cpts[$post_type_slug]['class_name'] ) );
194
+			return array($post_type_slug => str_replace('EE', 'EEM', $cpts[$post_type_slug]['class_name']));
195 195
 		}
196 196
 
197 197
 
198 198
 		//if we made it here then we're returning an array of cpt model names indexed by post_type_slug.
199 199
 		$cpt_models = array();
200
-		foreach ( $cpts as $slug => $args ) {
201
-			if ( ! empty( $args['class_name'] ) ) {
202
-				$cpt_models[$slug] = str_replace( 'EE', 'EEM', $args['class_name'] );
200
+		foreach ($cpts as $slug => $args) {
201
+			if ( ! empty($args['class_name'])) {
202
+				$cpt_models[$slug] = str_replace('EE', 'EEM', $args['class_name']);
203 203
 			}
204 204
 		}
205 205
 		return $cpt_models;
@@ -220,12 +220,12 @@  discard block
 block discarded – undo
220 220
 	 * @return EEM_CPT_Base[]   successful instantiation will return an array of successfully instantiated EEM
221 221
 	 *                                     	  models  indexed by post slug.
222 222
 	 */
223
-	public static function instantiate_cpt_models( $post_type_slug = '' ) {
224
-		$cpt_model_names = self::get_cpt_model_names( $post_type_slug );
223
+	public static function instantiate_cpt_models($post_type_slug = '') {
224
+		$cpt_model_names = self::get_cpt_model_names($post_type_slug);
225 225
 		$instantiated = array();
226
-		foreach ( $cpt_model_names as $slug => $model_name ) {
227
-			$instance = EE_Registry::instance()->load_model( str_replace( 'EEM_', '', $model_name ) );
228
-			if ( $instance instanceof EEM_CPT_Base ) {
226
+		foreach ($cpt_model_names as $slug => $model_name) {
227
+			$instance = EE_Registry::instance()->load_model(str_replace('EEM_', '', $model_name));
228
+			if ($instance instanceof EEM_CPT_Base) {
229 229
 				$instantiated[$slug] = $instance;
230 230
 			}
231 231
 		}
@@ -242,10 +242,10 @@  discard block
 block discarded – undo
242 242
 	 *  @access 	public
243 243
 	 *  @return 	array
244 244
 	 */
245
-	public static function get_CPTs(){
245
+	public static function get_CPTs() {
246 246
 		// define CPTs
247 247
 		// NOTE the ['args']['page_templates'] array index is something specific to our CPTs and not part of the WP custom post type api.
248
-		return apply_filters( 'FHEE__EE_Register_CPTs__get_CPTs__cpts', array(
248
+		return apply_filters('FHEE__EE_Register_CPTs__get_CPTs__cpts', array(
249 249
 			'espresso_events' => array(
250 250
 				'singular_name' => __("Event", "event_espresso"),
251 251
 				'plural_name' => __("Events", "event_espresso"),
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 					'publicly_queryable'=> FALSE,
321 321
 					'hierarchical'=> FALSE,
322 322
 					'has_archive' => FALSE,
323
-					'taxonomies' => array( 'post_tag' ),
323
+					'taxonomies' => array('post_tag'),
324 324
 					'capability_type' => 'contact',
325 325
 					'capabilities' => array(
326 326
 						'edit_post' => 'ee_edit_contact',
@@ -337,9 +337,9 @@  discard block
 block discarded – undo
337 337
 						'edit_private_posts' => 'ee_edit_contacts',
338 338
 						'edit_published_posts' => 'ee_edit_contacts'
339 339
 						),
340
-					'supports' => array( 'editor', 'thumbnail', 'excerpt', 'custom-fields', 'comments' ),
340
+					'supports' => array('editor', 'thumbnail', 'excerpt', 'custom-fields', 'comments'),
341 341
 				))
342
-			) );
342
+			));
343 343
 	}
344 344
 
345 345
 
@@ -352,9 +352,9 @@  discard block
 block discarded – undo
352 352
 	public static function get_private_CPTs() {
353 353
 		$CPTs = self::get_CPTs();
354 354
 		$private_CPTs = array();
355
-		foreach ( $CPTs as $CPT => $details ) {
356
-			if ( empty( $details['args']['public'] ) )
357
-				$private_CPTs[ $CPT ] = $details;
355
+		foreach ($CPTs as $CPT => $details) {
356
+			if (empty($details['args']['public']))
357
+				$private_CPTs[$CPT] = $details;
358 358
 		}
359 359
 		return $private_CPTs;
360 360
 	}
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 	 * @param string $plural_name internationalized plural name
373 373
 	 * @param array $override_args like $args on http://codex.wordpress.org/Function_Reference/register_taxonomy
374 374
 	 */
375
-	function register_taxonomy( $taxonomy_name, $singular_name, $plural_name, $override_args = array() ){
375
+	function register_taxonomy($taxonomy_name, $singular_name, $plural_name, $override_args = array()) {
376 376
 
377 377
 		$args = array(
378 378
 			'hierarchical'      => true,
@@ -389,15 +389,15 @@  discard block
 block discarded – undo
389 389
 			//'rewrite'           => array( 'slug' => 'genre' ),
390 390
 		);
391 391
 
392
-	  if($override_args){
393
-		  if(isset($override_args['labels'])){
394
-			  $labels = array_merge($args['labels'],$override_args['labels']);
392
+	  if ($override_args) {
393
+		  if (isset($override_args['labels'])) {
394
+			  $labels = array_merge($args['labels'], $override_args['labels']);
395 395
 			  $args['labels'] = $labels;
396 396
 		  }
397
-		  $args = array_merge($args,$override_args);
397
+		  $args = array_merge($args, $override_args);
398 398
 
399 399
 	  }
400
-		register_taxonomy($taxonomy_name,null, $args);
400
+		register_taxonomy($taxonomy_name, null, $args);
401 401
 	}
402 402
 
403 403
 
@@ -411,27 +411,27 @@  discard block
 block discarded – undo
411 411
 	 * The default values set in this function will be overridden by whatever you set in $override_args
412 412
 	 * @return void, but registers the custom post type
413 413
 	 */
414
-	function register_CPT($post_type, $singular_name,$plural_name,$override_args = array(), $singular_slug = '', $plural_slug = '' ) {
414
+	function register_CPT($post_type, $singular_name, $plural_name, $override_args = array(), $singular_slug = '', $plural_slug = '') {
415 415
 
416 416
 	  $labels = array(
417 417
 		'name' => $plural_name,
418 418
 		'singular_name' => $singular_name,
419
-		'add_new' => sprintf(__("Add %s", "event_espresso"),$singular_name),
420
-		'add_new_item' => sprintf(__("Add New %s", "event_espresso"),$singular_name),
421
-		'edit_item' => sprintf(__("Edit %s", "event_espresso"),$singular_name),
422
-		'new_item' => sprintf(__("New %s", "event_espresso"),$singular_name),
423
-		'all_items' => sprintf(__("All %s", "event_espresso"),$plural_name),
424
-		'view_item' => sprintf(__("View %s", "event_espresso"),$singular_name),
425
-		'search_items' => sprintf(__("Search %s", "event_espresso"),$plural_name),
426
-		'not_found' => sprintf(__("No %s found", "event_espresso"),$plural_name),
427
-		'not_found_in_trash' => sprintf(__("No %s found in Trash", "event_espresso"),$plural_name),
419
+		'add_new' => sprintf(__("Add %s", "event_espresso"), $singular_name),
420
+		'add_new_item' => sprintf(__("Add New %s", "event_espresso"), $singular_name),
421
+		'edit_item' => sprintf(__("Edit %s", "event_espresso"), $singular_name),
422
+		'new_item' => sprintf(__("New %s", "event_espresso"), $singular_name),
423
+		'all_items' => sprintf(__("All %s", "event_espresso"), $plural_name),
424
+		'view_item' => sprintf(__("View %s", "event_espresso"), $singular_name),
425
+		'search_items' => sprintf(__("Search %s", "event_espresso"), $plural_name),
426
+		'not_found' => sprintf(__("No %s found", "event_espresso"), $plural_name),
427
+		'not_found_in_trash' => sprintf(__("No %s found in Trash", "event_espresso"), $plural_name),
428 428
 		'parent_item_colon' => '',
429
-		'menu_name' => sprintf(__("%s", "event_espresso"),$plural_name)
429
+		'menu_name' => sprintf(__("%s", "event_espresso"), $plural_name)
430 430
 	  );
431 431
 
432 432
 	  //verify plural slug and singular slug, if they aren't we'll use $singular_name and $plural_name
433
-	  $singular_slug = ! empty( $singular_slug ) ? $singular_slug : $singular_name;
434
-	  $plural_slug = ! empty( $plural_slug ) ? $plural_slug : $plural_name;
433
+	  $singular_slug = ! empty($singular_slug) ? $singular_slug : $singular_name;
434
+	  $plural_slug = ! empty($plural_slug) ? $plural_slug : $plural_name;
435 435
 
436 436
 
437 437
 	  //note the page_templates arg in the supports index is something specific to EE.  WordPress doesn't actually have that in their register_post_type api.
@@ -444,24 +444,24 @@  discard block
 block discarded – undo
444 444
 		'show_in_menu' => false,
445 445
 		'show_in_nav_menus' => false,
446 446
 		'query_var' => true,
447
-		'rewrite' => apply_filters( 'FHEE__EE_Register_CPTs__register_CPT__rewrite', array( 'slug' => $plural_slug ), $post_type ),
447
+		'rewrite' => apply_filters('FHEE__EE_Register_CPTs__register_CPT__rewrite', array('slug' => $plural_slug), $post_type),
448 448
 		'capability_type' => 'post',
449 449
 		'map_meta_cap' => true,
450 450
 		'has_archive' => true,
451 451
 		'hierarchical' => true,
452 452
 		'menu_position' => null,
453
-		'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments' )
453
+		'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments')
454 454
 	  );
455 455
 
456
-	  if($override_args){
457
-		  if(isset($override_args['labels'])){
458
-			  $labels = array_merge($args['labels'],$override_args['labels']);
456
+	  if ($override_args) {
457
+		  if (isset($override_args['labels'])) {
458
+			  $labels = array_merge($args['labels'], $override_args['labels']);
459 459
 		  }
460
-		  $args = array_merge($args,$override_args);
460
+		  $args = array_merge($args, $override_args);
461 461
 		  $args['labels'] = $labels;
462 462
 	  }
463 463
 
464
-	  register_post_type( $post_type, $args );
464
+	  register_post_type($post_type, $args);
465 465
 	}
466 466
 
467 467
 
@@ -469,15 +469,15 @@  discard block
 block discarded – undo
469 469
 
470 470
 	function set_must_use_event_types() {
471 471
 		$term_details = array(
472
-			'single-event' => array( __('Single Event', 'event_espresso'), __('A single event that spans one or more consecutive days. Attendee\'s register for the first date-time only', 'event_espresso') ), //example: a party or two-day long workshop
472
+			'single-event' => array(__('Single Event', 'event_espresso'), __('A single event that spans one or more consecutive days. Attendee\'s register for the first date-time only', 'event_espresso')), //example: a party or two-day long workshop
473 473
 
474
-			'multi-event' => array( __('Multi Event', 'event_espresso'), __('Multiple, separate, but related events that occur on consecutive days. Attendee\'s can register for any of the date-times', 'event_espresso') ), //example: a three day music festival or week long conference
474
+			'multi-event' => array(__('Multi Event', 'event_espresso'), __('Multiple, separate, but related events that occur on consecutive days. Attendee\'s can register for any of the date-times', 'event_espresso')), //example: a three day music festival or week long conference
475 475
 
476
-			'event-series' => array( __('Event Series', 'event_espresso'), __(' Multiple events that occur over multiple non-consecutive days. Attendee\'s register for the first date-time only', 'event_espresso') ), //example: an 8 week introduction to basket weaving course
476
+			'event-series' => array(__('Event Series', 'event_espresso'), __(' Multiple events that occur over multiple non-consecutive days. Attendee\'s register for the first date-time only', 'event_espresso')), //example: an 8 week introduction to basket weaving course
477 477
 
478
-			'recurring-event' => array( __('Recurring Event', 'event_espresso'), __('Multiple events that occur over multiple non-consecutive days. Attendee\'s can register for any of the date-times.', 'event_espresso') ), //example: a yoga class
478
+			'recurring-event' => array(__('Recurring Event', 'event_espresso'), __('Multiple events that occur over multiple non-consecutive days. Attendee\'s can register for any of the date-times.', 'event_espresso')), //example: a yoga class
479 479
 
480
-			'ongoing' => array( __('Ongoing Event', 'event_espresso'), __('An "event" that people can purchase tickets to gain access for anytime for this event regardless of date times on the event', 'event_espresso') ) //example: access to a museum
480
+			'ongoing' => array(__('Ongoing Event', 'event_espresso'), __('An "event" that people can purchase tickets to gain access for anytime for this event regardless of date times on the event', 'event_espresso')) //example: access to a museum
481 481
 
482 482
 			//'walk-in' => array( __('Walk In', 'event_espresso'), __('Single datetime and single entry recurring events. Attendees register for one or multiple datetimes individually.', 'event_espresso') ),
483 483
 			//'reservation' => array( __('Reservation', 'event_espresso'), __('Reservations are created by specifying available datetimes and quantities. Attendees choose from the available datetimes and specify the quantity available (if the maximum is greater than 1)') ), //@TODO to avoid confusion we'll implement this in a later iteration > EE4.1
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 			//'appointment' => array( __('Appointments', 'event_espresso'), __('Time slotted events where datetimes are generally in hours or minutes. For example, attendees can register for a single 15 minute or 1 hour time slot and this type of availability frequently reoccurs.', 'event_espresso') )
486 486
 
487 487
 			);
488
-		$this->set_must_use_terms( 'espresso_event_type', $term_details );
488
+		$this->set_must_use_terms('espresso_event_type', $term_details);
489 489
 	}
490 490
 
491 491
 
@@ -499,16 +499,16 @@  discard block
 block discarded – undo
499 499
 	 *
500 500
 	 * @return void
501 501
 	 */
502
-	function set_must_use_terms( $taxonomy, $term_details ) {
502
+	function set_must_use_terms($taxonomy, $term_details) {
503 503
 		$term_details = (array) $term_details;
504 504
 
505
-		foreach ( $term_details as $slug => $details ) {
506
-			if ( !term_exists( $slug, $taxonomy ) ) {
505
+		foreach ($term_details as $slug => $details) {
506
+			if ( ! term_exists($slug, $taxonomy)) {
507 507
 				$insert_arr = array(
508 508
 					'slug' => $slug,
509 509
 					'description' => $details[1]
510 510
 					);
511
-				wp_insert_term( $details[0], $taxonomy, $insert_arr );
511
+				wp_insert_term($details[0], $taxonomy, $insert_arr);
512 512
 			}
513 513
 		}
514 514
 	}
@@ -522,8 +522,8 @@  discard block
 block discarded – undo
522 522
 	 * @param string $term_slug The slug of the term that will be the default.
523 523
 	 * @param array $cpt_slugs  An array of custom post types we want the default assigned to
524 524
 	 */
525
-	function set_default_term( $taxonomy, $term_slug, $cpt_slugs = array() ) {
526
-		$this->_default_terms[][$term_slug] = new EE_Default_Term( $taxonomy, $term_slug, $cpt_slugs );
525
+	function set_default_term($taxonomy, $term_slug, $cpt_slugs = array()) {
526
+		$this->_default_terms[][$term_slug] = new EE_Default_Term($taxonomy, $term_slug, $cpt_slugs);
527 527
 	}
528 528
 
529 529
 
@@ -535,20 +535,20 @@  discard block
 block discarded – undo
535 535
 	 * @param  object $post    Post object
536 536
 	 * @return void
537 537
 	 */
538
-	function save_default_term( $post_id, $post ) {
539
-		if ( empty( $this->_default_terms ) )
538
+	function save_default_term($post_id, $post) {
539
+		if (empty($this->_default_terms))
540 540
 			return; //no default terms set so lets just exit.
541 541
 
542
-		foreach ( $this->_default_terms as $defaults ) {
543
-			foreach ( $defaults as $default_obj ) {
544
-				if ( $post->post_status == 'publish' && in_array( $post->post_type, $default_obj->cpt_slugs ) ) {
542
+		foreach ($this->_default_terms as $defaults) {
543
+			foreach ($defaults as $default_obj) {
544
+				if ($post->post_status == 'publish' && in_array($post->post_type, $default_obj->cpt_slugs)) {
545 545
 
546 546
 					//note some error proofing going on here to save unnecessary db queries
547
-					$taxonomies = get_object_taxonomies( $post->post_type );
548
-					foreach ( (array) $taxonomies as $taxonomy ) {
549
-						$terms = wp_get_post_terms( $post_id, $taxonomy);
550
-						if ( empty( $terms ) && $taxonomy == $default_obj->taxonomy ) {
551
-							wp_set_object_terms( $post_id, array( $default_obj->term_slug ), $taxonomy );
547
+					$taxonomies = get_object_taxonomies($post->post_type);
548
+					foreach ((array) $taxonomies as $taxonomy) {
549
+						$terms = wp_get_post_terms($post_id, $taxonomy);
550
+						if (empty($terms) && $taxonomy == $default_obj->taxonomy) {
551
+							wp_set_object_terms($post_id, array($default_obj->term_slug), $taxonomy);
552 552
 						}
553 553
 					}
554 554
 				}
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
 	 * @param string $term_slug The slug of the term that will be the default.
581 581
 	 * @param array $cpt_slugs  The custom post type the default term gets saved with
582 582
 	 */
583
-	public function __construct( $taxonomy, $term_slug, $cpt_slugs = array() ) {
583
+	public function __construct($taxonomy, $term_slug, $cpt_slugs = array()) {
584 584
 		$this->taxonomy = $taxonomy;
585 585
 		$this->cpt_slugs = (array) $cpt_slugs;
586 586
 		$this->term_slug = $term_slug;
Please login to merge, or discard this patch.
core/EED_Module.module.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 *  @var 			WP $WP
74 74
 	 *  @return 	void
75 75
 	 */
76
-	public abstract function run( $WP );
76
+	public abstract function run($WP);
77 77
 
78 78
 
79 79
 
@@ -96,12 +96,12 @@  discard block
 block discarded – undo
96 96
 	 * @param $module_name
97 97
 	 * @return EED_Module
98 98
 	 */
99
-	protected static function get_instance( $module_name = '' ) {
100
-		$module_name = ! empty( $module_name ) ? $module_name : get_called_class();
101
-		if ( ! isset(  EE_Registry::instance()->modules->{$module_name} ) || ! EE_Registry::instance()->modules->{$module_name} instanceof EED_Module ) {
102
-			EE_Registry::instance()->add_module( $module_name );
99
+	protected static function get_instance($module_name = '') {
100
+		$module_name = ! empty($module_name) ? $module_name : get_called_class();
101
+		if ( ! isset(EE_Registry::instance()->modules->{$module_name} ) || ! EE_Registry::instance()->modules->{$module_name} instanceof EED_Module) {
102
+			EE_Registry::instance()->add_module($module_name);
103 103
 		}
104
-		return EE_Registry::instance()->get_module( $module_name );
104
+		return EE_Registry::instance()->get_module($module_name);
105 105
 	}
106 106
 
107 107
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 	 * @return    string
114 114
 	 */
115 115
 	public function module_name() {
116
-		return get_class( $this );
116
+		return get_class($this);
117 117
 	}
118 118
 
119 119
 
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_Addon.core.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@
 block discarded – undo
204 204
 			//to help avoid memory limit errors
205 205
 			//EEH_Debug_Tools::instance()->measure_memory( 'db content initialized for ' . get_class( $this), true );
206 206
 			gc_collect_cycles();
207
-		}else{
207
+		} else{
208 208
 			//ask the data migration manager to init this addon's data
209 209
 			//when migrations are finished because we can't do it now
210 210
 			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for( $this->name() );
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 
121 121
 	/**
122
-	 * @param mixed $min_core_version
122
+	 * @param string $min_core_version
123 123
 	 */
124 124
 	public function set_min_core_version( $min_core_version = NULL ) {
125 125
 		$this->_min_core_version = $min_core_version;
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 	/**
141 141
 	 * Sets addon_name
142 142
 	 * @param string $addon_name
143
-	 * @return boolean
143
+	 * @return string
144 144
 	 */
145 145
 	function set_name( $addon_name ) {
146 146
 		return $this->_addon_name = $addon_name;
Please login to merge, or discard this patch.
Spacing   +84 added lines, -84 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  *
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 *    class constructor
96 96
 	 */
97 97
 	public function __construct() {
98
-		add_action( 'AHEE__EE_System__load_controllers__load_admin_controllers', array( $this, 'admin_init' ) );
98
+		add_action('AHEE__EE_System__load_controllers__load_admin_controllers', array($this, 'admin_init'));
99 99
 	}
100 100
 
101 101
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	/**
104 104
 	 * @param mixed $version
105 105
 	 */
106
-	public function set_version( $version = NULL ) {
106
+	public function set_version($version = NULL) {
107 107
 		$this->_version = $version;
108 108
 	}
109 109
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	/**
122 122
 	 * @param mixed $min_core_version
123 123
 	 */
124
-	public function set_min_core_version( $min_core_version = NULL ) {
124
+	public function set_min_core_version($min_core_version = NULL) {
125 125
 		$this->_min_core_version = $min_core_version;
126 126
 	}
127 127
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * @param string $addon_name
143 143
 	 * @return boolean
144 144
 	 */
145
-	function set_name( $addon_name ) {
145
+	function set_name($addon_name) {
146 146
 		return $this->_addon_name = $addon_name;
147 147
 	}
148 148
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	/**
171 171
 	 * @param string $plugin_basename
172 172
 	 */
173
-	public function set_plugin_basename( $plugin_basename ) {
173
+	public function set_plugin_basename($plugin_basename) {
174 174
 
175 175
 		$this->_plugin_basename = $plugin_basename;
176 176
 	}
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 	/**
191 191
 	 * @param string $plugin_slug
192 192
 	 */
193
-	public function set_plugin_slug( $plugin_slug ) {
193
+	public function set_plugin_slug($plugin_slug) {
194 194
 
195 195
 		$this->_plugin_slug = $plugin_slug;
196 196
 	}
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	/**
211 211
 	 * @param string $plugin_action_slug
212 212
 	 */
213
-	public function set_plugin_action_slug( $plugin_action_slug ) {
213
+	public function set_plugin_action_slug($plugin_action_slug) {
214 214
 
215 215
 		$this->_plugin_action_slug = $plugin_action_slug;
216 216
 	}
@@ -230,9 +230,9 @@  discard block
 block discarded – undo
230 230
 	/**
231 231
 	 * @param array $plugins_page_row
232 232
 	 */
233
-	public function set_plugins_page_row( $plugins_page_row = array() ) {
233
+	public function set_plugins_page_row($plugins_page_row = array()) {
234 234
 		// sigh.... check for example content that I stupidly merged to master and remove it if found
235
-		if ( ! is_array( $plugins_page_row ) && strpos( $plugins_page_row, '<h3>Promotions Addon Upsell Info</h3>' ) !== false ) {
235
+		if ( ! is_array($plugins_page_row) && strpos($plugins_page_row, '<h3>Promotions Addon Upsell Info</h3>') !== false) {
236 236
 			$plugins_page_row = '';
237 237
 		}
238 238
 		$this->_plugins_page_row = $plugins_page_row;
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 		do_action("AHEE__{$classname}__new_install");
252 252
 		do_action("AHEE__EE_Addon__new_install", $this);
253 253
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
254
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
254
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
255 255
 	}
256 256
 
257 257
 
@@ -266,16 +266,16 @@  discard block
 block discarded – undo
266 266
 		do_action("AHEE__{$classname}__reactivation");
267 267
 		do_action("AHEE__EE_Addon__reactivation", $this);
268 268
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
269
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
269
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
270 270
 	}
271 271
 
272
-	public function deactivation(){
272
+	public function deactivation() {
273 273
 		$classname = get_class($this);
274 274
 //		echo "Deactivating $classname";die;
275 275
 		do_action("AHEE__{$classname}__deactivation");
276 276
 		do_action("AHEE__EE_Addon__deactivation", $this);
277 277
 		//check if the site no longer needs to be in maintenance mode
278
-		EE_Register_Addon::deregister( $this->name() );
278
+		EE_Register_Addon::deregister($this->name());
279 279
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
280 280
 	}
281 281
 
@@ -289,16 +289,16 @@  discard block
 block discarded – undo
289 289
 	 * This is a resource-intensive job so we prefer to only do it when necessary
290 290
 	 * @return void
291 291
 	 */
292
-	public function initialize_db_if_no_migrations_required( $verify_schema = true ) {
293
-		if( $verify_schema === '' ) {
292
+	public function initialize_db_if_no_migrations_required($verify_schema = true) {
293
+		if ($verify_schema === '') {
294 294
 			//wp core bug imo: if no args are passed to `do_action('some_hook_name')` besides the hook's name
295 295
 			//(ie, no 2nd or 3rd arguments), instead of calling the registered callbacks with no arguments, it
296 296
 			//calls them with an argument of an empty string (ie ""), which evaluates to false
297 297
 			//so we need to treat the empty string as if nothing had been passed, and should instead use the default
298 298
 			$verify_schema = true;
299 299
 		}
300
-		if ( EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ) {
301
-			if( $verify_schema ) {
300
+		if (EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance) {
301
+			if ($verify_schema) {
302 302
 				$this->initialize_db();
303 303
 			}
304 304
 			$this->initialize_default_data();
@@ -311,15 +311,15 @@  discard block
 block discarded – undo
311 311
 			 * other data needs to be verified)
312 312
 			 */
313 313
 			EEH_Activation::initialize_db_content();
314
-			update_option( 'ee_flush_rewrite_rules', TRUE );
314
+			update_option('ee_flush_rewrite_rules', TRUE);
315 315
 			//in case there are lots of addons being activated at once, let's force garbage collection
316 316
 			//to help avoid memory limit errors
317 317
 			//EEH_Debug_Tools::instance()->measure_memory( 'db content initialized for ' . get_class( $this), true );
318 318
 			gc_collect_cycles();
319
-		}else{
319
+		} else {
320 320
 			//ask the data migration manager to init this addon's data
321 321
 			//when migrations are finished because we can't do it now
322
-			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for( $this->name() );
322
+			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for($this->name());
323 323
 		}
324 324
 	}
325 325
 
@@ -333,20 +333,20 @@  discard block
 block discarded – undo
333 333
 	 */
334 334
 	public function initialize_db() {
335 335
 		//find the migration script that sets the database to be compatible with the code
336
-		$current_dms_name = EE_Data_Migration_Manager::instance()->get_most_up_to_date_dms( $this->name() );
337
-		if( $current_dms_name ){
338
-			$current_data_migration_script = EE_Registry::instance()->load_dms( $current_dms_name );
339
-			$current_data_migration_script->set_migrating( FALSE );
336
+		$current_dms_name = EE_Data_Migration_Manager::instance()->get_most_up_to_date_dms($this->name());
337
+		if ($current_dms_name) {
338
+			$current_data_migration_script = EE_Registry::instance()->load_dms($current_dms_name);
339
+			$current_data_migration_script->set_migrating(FALSE);
340 340
 			$current_data_migration_script->schema_changes_before_migration();
341 341
 			$current_data_migration_script->schema_changes_after_migration();
342
-			if ( $current_data_migration_script->get_errors() ) {
343
-				foreach( $current_data_migration_script->get_errors() as $error ) {
344
-					EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
342
+			if ($current_data_migration_script->get_errors()) {
343
+				foreach ($current_data_migration_script->get_errors() as $error) {
344
+					EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
345 345
 				}
346 346
 			}
347 347
 		}
348 348
 		//if not DMS was found that should be ok. This addon just doesn't require any database changes
349
-		EE_Data_Migration_Manager::instance()->update_current_database_state_to( array( 'slug' => $this->name(), 'version' => $this->version() ) );
349
+		EE_Data_Migration_Manager::instance()->update_current_database_state_to(array('slug' => $this->name(), 'version' => $this->version()));
350 350
 	}
351 351
 
352 352
 
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 		 * default data)
369 369
 		 * @param EE_Addon $addon the addon that called this
370 370
 		 */
371
-		do_action( 'AHEE__EE_Addon__initialize_default_data__begin', $this );
371
+		do_action('AHEE__EE_Addon__initialize_default_data__begin', $this);
372 372
 		//override to insert default data. It is safe to use the models here
373 373
 		//because the site should not be in maintenance mode
374 374
 	}
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 		do_action("AHEE__EE_Addon__upgrade", $this);
388 388
 		EE_Maintenance_Mode::instance()->set_maintenance_mode_if_db_old();
389 389
 		//also it's possible there is new default data that needs to be added
390
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
390
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
391 391
 	}
392 392
 
393 393
 
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
 		do_action("AHEE__{$classname}__downgrade");
401 401
 		do_action("AHEE__EE_Addon__downgrade", $this);
402 402
 		//it's possible there's old default data that needs to be double-checked
403
-		add_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( $this, 'initialize_db_if_no_migrations_required' ) );
403
+		add_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array($this, 'initialize_db_if_no_migrations_required'));
404 404
 	}
405 405
 
406 406
 
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
 	 * plugin activation only. In the future, we'll want to do it on plugin updates too
412 412
 	 * @return bool
413 413
 	 */
414
-	public function set_db_update_option_name(){
414
+	public function set_db_update_option_name() {
415 415
 		EE_Error::doing_it_wrong(__FUNCTION__, __('EE_Addon::set_db_update_option_name was renamed to EE_Addon::set_activation_indicator_option', 'event_espresso'), '4.3.0.alpha.016');
416 416
 		//let's just handle this on the next request, ok? right now we're just not really ready
417 417
 		return $this->set_activation_indicator_option();
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
 	 */
440 440
 	public function set_activation_indicator_option() {
441 441
 		// let's just handle this on the next request, ok? right now we're just not really ready
442
-		return update_option( $this->get_activation_indicator_option_name(), TRUE );
442
+		return update_option($this->get_activation_indicator_option_name(), TRUE);
443 443
 	}
444 444
 
445 445
 
@@ -447,8 +447,8 @@  discard block
 block discarded – undo
447 447
 	 * Gets the name of the wp option which is used to temporarily indicate that this addon was activated
448 448
 	 * @return string
449 449
 	 */
450
-	public function get_activation_indicator_option_name(){
451
-		return 'ee_activation_' . $this->name();
450
+	public function get_activation_indicator_option_name() {
451
+		return 'ee_activation_'.$this->name();
452 452
 	}
453 453
 
454 454
 
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
 	 * Used by EE_System to set the request type of this addon. Should not be used by addon developers
459 459
 	 * @param int $req_type
460 460
 	 */
461
-	function set_req_type( $req_type ) {
461
+	function set_req_type($req_type) {
462 462
 		$this->_req_type = $req_type;
463 463
 	}
464 464
 
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
 	 * of addons
470 470
 	 */
471 471
 	function detect_req_type() {
472
-		if( ! $this->_req_type ){
472
+		if ( ! $this->_req_type) {
473 473
 			$this->detect_activation_or_upgrade();
474 474
 		}
475 475
 		return $this->_req_type;
@@ -482,36 +482,36 @@  discard block
 block discarded – undo
482 482
 	 * Should only be called once per request
483 483
 	 * @return void
484 484
 	 */
485
-	function detect_activation_or_upgrade(){
485
+	function detect_activation_or_upgrade() {
486 486
 		$activation_history_for_addon = $this->get_activation_history();
487 487
 //		d($activation_history_for_addon);
488 488
 		$request_type = EE_System::detect_req_type_given_activation_history($activation_history_for_addon, $this->get_activation_indicator_option_name(), $this->version());
489 489
 		$this->set_req_type($request_type);
490 490
 		$classname = get_class($this);
491
-		switch($request_type){
491
+		switch ($request_type) {
492 492
 			case EE_System::req_type_new_activation:
493
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__new_activation" );
494
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__new_activation", $this );
493
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__new_activation");
494
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__new_activation", $this);
495 495
 				$this->new_install();
496
-				$this->update_list_of_installed_versions( $activation_history_for_addon );
496
+				$this->update_list_of_installed_versions($activation_history_for_addon);
497 497
 				break;
498 498
 			case EE_System::req_type_reactivation:
499
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__reactivation" );
500
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__reactivation", $this );
499
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__reactivation");
500
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__reactivation", $this);
501 501
 				$this->reactivation();
502
-				$this->update_list_of_installed_versions( $activation_history_for_addon );
502
+				$this->update_list_of_installed_versions($activation_history_for_addon);
503 503
 				break;
504 504
 			case EE_System::req_type_upgrade:
505
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__upgrade" );
506
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__upgrade", $this );
505
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__upgrade");
506
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__upgrade", $this);
507 507
 				$this->upgrade();
508
-				$this->update_list_of_installed_versions($activation_history_for_addon );
508
+				$this->update_list_of_installed_versions($activation_history_for_addon);
509 509
 				break;
510 510
 			case EE_System::req_type_downgrade:
511
-				do_action( "AHEE__{$classname}__detect_activations_or_upgrades__downgrade" );
512
-				do_action( "AHEE__EE_Addon__detect_activations_or_upgrades__downgrade", $this );
511
+				do_action("AHEE__{$classname}__detect_activations_or_upgrades__downgrade");
512
+				do_action("AHEE__EE_Addon__detect_activations_or_upgrades__downgrade", $this);
513 513
 				$this->downgrade();
514
-				$this->update_list_of_installed_versions($activation_history_for_addon );
514
+				$this->update_list_of_installed_versions($activation_history_for_addon);
515 515
 				break;
516 516
 			case EE_System::req_type_normal:
517 517
 			default:
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
 				break;
520 520
 		}
521 521
 
522
-		do_action( "AHEE__{$classname}__detect_if_activation_or_upgrade__complete" );
522
+		do_action("AHEE__{$classname}__detect_if_activation_or_upgrade__complete");
523 523
 	}
524 524
 
525 525
 	/**
@@ -528,17 +528,17 @@  discard block
 block discarded – undo
528 528
 	 * @param string $current_version_to_add
529 529
 	 * @return boolean success
530 530
 	 */
531
-	public function update_list_of_installed_versions($version_history = NULL,$current_version_to_add = NULL) {
532
-		if( ! $version_history ) {
531
+	public function update_list_of_installed_versions($version_history = NULL, $current_version_to_add = NULL) {
532
+		if ( ! $version_history) {
533 533
 			$version_history = $this->get_activation_history();
534 534
 		}
535
-		if( $current_version_to_add == NULL){
535
+		if ($current_version_to_add == NULL) {
536 536
 			$current_version_to_add = $this->version();
537 537
 		}
538
-		$version_history[ $current_version_to_add ][] = date( 'Y-m-d H:i:s',time() );
538
+		$version_history[$current_version_to_add][] = date('Y-m-d H:i:s', time());
539 539
 		// resave
540 540
 //		echo "updating list of installed versions:".$this->get_activation_history_option_name();d($version_history);
541
-		return update_option( $this->get_activation_history_option_name(), $version_history );
541
+		return update_option($this->get_activation_history_option_name(), $version_history);
542 542
 	}
543 543
 
544 544
 	/**
@@ -546,8 +546,8 @@  discard block
 block discarded – undo
546 546
 	 * of this addon
547 547
 	 * @return string
548 548
 	 */
549
-	function get_activation_history_option_name(){
550
-		return self::ee_addon_version_history_option_prefix . $this->name();
549
+	function get_activation_history_option_name() {
550
+		return self::ee_addon_version_history_option_prefix.$this->name();
551 551
 	}
552 552
 
553 553
 
@@ -556,7 +556,7 @@  discard block
 block discarded – undo
556 556
 	 * Gets the wp option which stores the activation history for this addon
557 557
 	 * @return array
558 558
 	 */
559
-	function get_activation_history(){
559
+	function get_activation_history() {
560 560
 		return get_option($this->get_activation_history_option_name(), NULL);
561 561
 	}
562 562
 
@@ -565,8 +565,8 @@  discard block
 block discarded – undo
565 565
 	/**
566 566
 	 * @param string $config_section
567 567
 	 */
568
-	public function set_config_section( $config_section = '' ) {
569
-		$this->_config_section = ! empty( $config_section ) ? $config_section : 'addons';
568
+	public function set_config_section($config_section = '') {
569
+		$this->_config_section = ! empty($config_section) ? $config_section : 'addons';
570 570
 	}
571 571
 	/**
572 572
 	 *	filepath to the main file, which can be used for register_activation_hook, register_deactivation_hook, etc.
@@ -579,14 +579,14 @@  discard block
 block discarded – undo
579 579
 	 * Sets the filepath to the main plugin file
580 580
 	 * @param string $filepath
581 581
 	 */
582
-	public function set_main_plugin_file( $filepath ) {
582
+	public function set_main_plugin_file($filepath) {
583 583
 		$this->_main_plugin_file = $filepath;
584 584
 	}
585 585
 	/**
586 586
 	 * gets the filepath to teh main file
587 587
 	 * @return string
588 588
 	 */
589
-	public function get_main_plugin_file(){
589
+	public function get_main_plugin_file() {
590 590
 		return $this->_main_plugin_file;
591 591
 	}
592 592
 
@@ -596,15 +596,15 @@  discard block
 block discarded – undo
596 596
 	 * @return string
597 597
 	 */
598 598
 	public function get_main_plugin_file_basename() {
599
-		return plugin_basename( $this->get_main_plugin_file() );
599
+		return plugin_basename($this->get_main_plugin_file());
600 600
 	}
601 601
 
602 602
 	/**
603 603
 	 * Gets the folder name which contains the main plugin file
604 604
 	 * @return string
605 605
 	 */
606
-	public function get_main_plugin_file_dirname(){
607
-		return dirname( $this->get_main_plugin_file() );
606
+	public function get_main_plugin_file_dirname() {
607
+		return dirname($this->get_main_plugin_file());
608 608
 	}
609 609
 
610 610
 
@@ -613,11 +613,11 @@  discard block
 block discarded – undo
613 613
 	 *
614 614
 *@return string
615 615
 	 */
616
-	public function admin_init(){
616
+	public function admin_init() {
617 617
 		// is admin and not in M-Mode ?
618
-		if ( is_admin() && ! EE_Maintenance_Mode::instance()->level() ) {
619
-			add_filter( 'plugin_action_links', array( $this, 'plugin_action_links' ), 10, 2 );
620
-			add_filter( 'after_plugin_row_' . $this->_plugin_basename, array( $this, 'after_plugin_row' ), 10, 3 );
618
+		if (is_admin() && ! EE_Maintenance_Mode::instance()->level()) {
619
+			add_filter('plugin_action_links', array($this, 'plugin_action_links'), 10, 2);
620
+			add_filter('after_plugin_row_'.$this->_plugin_basename, array($this, 'after_plugin_row'), 10, 3);
621 621
 		}
622 622
 	}
623 623
 
@@ -632,10 +632,10 @@  discard block
 block discarded – undo
632 632
 	 * @param $file
633 633
 	 * @return array
634 634
 	 */
635
-	public function plugin_action_links( $links, $file ) {
636
-		if ( $file == $this->plugin_basename() && $this->plugin_action_slug() != '' ) {
635
+	public function plugin_action_links($links, $file) {
636
+		if ($file == $this->plugin_basename() && $this->plugin_action_slug() != '') {
637 637
 			// before other links
638
-			array_unshift( $links, '<a href="admin.php?page=' . $this->plugin_action_slug() . '">' . __( 'Settings' ) . '</a>' );
638
+			array_unshift($links, '<a href="admin.php?page='.$this->plugin_action_slug().'">'.__('Settings').'</a>');
639 639
 		}
640 640
 		return $links;
641 641
 	}
@@ -653,17 +653,17 @@  discard block
 block discarded – undo
653 653
 	 * @param $status
654 654
 	 * @return string
655 655
 	 */
656
-	public function after_plugin_row( $plugin_file, $plugin_data, $status ) {
656
+	public function after_plugin_row($plugin_file, $plugin_data, $status) {
657 657
 
658 658
 		$after_plugin_row = '';
659
-		if ( $plugin_file == $this->plugin_basename() && $this->get_plugins_page_row() != '' ) {
659
+		if ($plugin_file == $this->plugin_basename() && $this->get_plugins_page_row() != '') {
660 660
 			$class = $status ? 'active' : 'inactive';
661 661
 			$plugins_page_row = $this->get_plugins_page_row();
662
-			$link_text = isset( $plugins_page_row[ 'link_text' ] ) ? $plugins_page_row[ 'link_text' ] : '';
663
-			$link_url = isset( $plugins_page_row[ 'link_url' ] ) ? $plugins_page_row[ 'link_url' ] : '';
664
-			$description = isset( $plugins_page_row[ 'description' ] ) ? $plugins_page_row[ 'description' ] : $plugins_page_row;
665
-			if ( ! empty( $link_text ) && ! empty( $link_url ) && ! empty( $description )) {
666
-				$after_plugin_row .= '<tr id="' . sanitize_title( $plugin_file ) . '-ee-addon" class="' . $class . '">';
662
+			$link_text = isset($plugins_page_row['link_text']) ? $plugins_page_row['link_text'] : '';
663
+			$link_url = isset($plugins_page_row['link_url']) ? $plugins_page_row['link_url'] : '';
664
+			$description = isset($plugins_page_row['description']) ? $plugins_page_row['description'] : $plugins_page_row;
665
+			if ( ! empty($link_text) && ! empty($link_url) && ! empty($description)) {
666
+				$after_plugin_row .= '<tr id="'.sanitize_title($plugin_file).'-ee-addon" class="'.$class.'">';
667 667
 				$after_plugin_row .= '<th class="check-column" scope="row"></th>';
668 668
 				$after_plugin_row .= '<td class="ee-addon-upsell-info-title-td plugin-title column-primary">';
669 669
 				$after_plugin_row .= '<style>
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
 </style>';
706 706
 				$after_plugin_row .= '
707 707
 <p class="ee-addon-upsell-info-dv">
708
-	<a class="ee-button" href="' . $link_url . '">' . $link_text . ' &nbsp;<span class="dashicons dashicons-arrow-right-alt2" style="margin:0;"></span></a>
708
+	<a class="ee-button" href="' . $link_url.'">'.$link_text.' &nbsp;<span class="dashicons dashicons-arrow-right-alt2" style="margin:0;"></span></a>
709 709
 </p>';
710 710
 				$after_plugin_row .= '</td>';
711 711
 				$after_plugin_row .= '<td class="ee-addon-upsell-info-desc-td column-description desc">';
Please login to merge, or discard this patch.
core/EE_Base_Class_Repository.core.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Class EE_Base_Class_Repository
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 	 * @param array $arguments	arrays of arguments that will be passed to the object's save method
40 40
 	 * @return bool | int
41 41
 	 */
42
-	public function save( $arguments = array() ) {
43
-		return $this->persist( 'save', $arguments );
42
+	public function save($arguments = array()) {
43
+		return $this->persist('save', $arguments);
44 44
 	}
45 45
 
46 46
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @return bool | int
55 55
 	 */
56 56
 	public function save_all() {
57
-		return $this->persist_all( 'save' );
57
+		return $this->persist_all('save');
58 58
 	}
59 59
 
60 60
 
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * @return bool
69 69
 	 */
70 70
 	public function delete() {
71
-		$success = $this->_call_user_func_array_on_current( 'delete' );
72
-		$this->remove( $this->current() );
71
+		$success = $this->_call_user_func_array_on_current('delete');
72
+		$this->remove($this->current());
73 73
 		return $success;
74 74
 	}
75 75
 
@@ -86,16 +86,16 @@  discard block
 block discarded – undo
86 86
 	public function delete_all() {
87 87
 		$success = true;
88 88
 		$this->rewind();
89
-		while ( $this->valid() ) {
89
+		while ($this->valid()) {
90 90
 			// any db error will result in false being returned
91
-			$success = $this->_call_user_func_array_on_current( 'delete' ) !== false ? $success : false;
91
+			$success = $this->_call_user_func_array_on_current('delete') !== false ? $success : false;
92 92
 			// can't remove current object because valid() requires it
93 93
 			// so just capture current object temporarily
94 94
 			$object = $this->current();
95 95
 			// advance the pointer
96 96
 			$this->next();
97 97
 			// THEN remove the object from the repository
98
-			$this->remove( $object );
98
+			$this->remove($object);
99 99
 		}
100 100
 		return $success;
101 101
 	}
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
 	 * @param string $previous_value
114 114
 	 * @return bool | int
115 115
 	 */
116
-	public function update_extra_meta( $meta_key, $meta_value, $previous_value = null ) {
117
-		return $this->_call_user_func_array_on_current( 'update_extra_meta', array( $meta_key, $meta_value, $previous_value ) );
116
+	public function update_extra_meta($meta_key, $meta_value, $previous_value = null) {
117
+		return $this->_call_user_func_array_on_current('update_extra_meta', array($meta_key, $meta_value, $previous_value));
118 118
 	}
119 119
 
120 120
 
Please login to merge, or discard this patch.
core/EE_Cart.core.php 3 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );/**
3 5
  *
4 6
  * Event Espresso
Please login to merge, or discard this patch.
Spacing   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );/**
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
+do_action('AHEE_log', __FILE__, __FUNCTION__, ''); /**
3 3
  *
4 4
  * Event Espresso
5 5
  *
@@ -67,24 +67,24 @@  discard block
 block discarded – undo
67 67
 	  * @param EE_Session $session
68 68
 	  * @return \EE_Cart
69 69
 	  */
70
-	 public static function instance( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
71
-		if ( ! empty( $grand_total ) ){
72
-			self::$_instance = new self( $grand_total, $session );
70
+	 public static function instance(EE_Line_Item $grand_total = null, EE_Session $session = null) {
71
+		if ( ! empty($grand_total)) {
72
+			self::$_instance = new self($grand_total, $session);
73 73
 		}
74 74
 		// or maybe retrieve an existing one ?
75
-		if ( ! self::$_instance instanceof EE_Cart ) {
75
+		if ( ! self::$_instance instanceof EE_Cart) {
76 76
 			// try getting the cart out of the session
77 77
 			$saved_cart = $session instanceof EE_Session ? $session->cart() : null;
78
-			self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self( $grand_total, $session );
79
-			unset( $saved_cart );
78
+			self::$_instance = $saved_cart instanceof EE_Cart ? $saved_cart : new self($grand_total, $session);
79
+			unset($saved_cart);
80 80
 		}
81 81
 		// verify that cart is ok and grand total line item exists
82
-		if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item ) {
83
-			self::$_instance = new self( $grand_total, $session );
82
+		if ( ! self::$_instance instanceof EE_Cart || ! self::$_instance->_grand_total instanceof EE_Line_Item) {
83
+			self::$_instance = new self($grand_total, $session);
84 84
 		}
85 85
 		self::$_instance->get_grand_total();
86 86
 		 // once everything is all said and done, save the cart to the EE_Session
87
-		add_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 );
87
+		add_action('shutdown', array(self::$_instance, 'save_cart'), 90);
88 88
 		return self::$_instance;
89 89
 	}
90 90
 
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
 	  * @param EE_Session $session
99 99
 	  * @return \EE_Cart
100 100
 	  */
101
-	 private function __construct( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
102
-		 do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
103
-		 $this->set_session( $session );
104
-		 if ( $grand_total instanceof EE_Line_Item ) {
105
-			 $this->set_grand_total_line_item( $grand_total );
101
+	 private function __construct(EE_Line_Item $grand_total = null, EE_Session $session = null) {
102
+		 do_action('AHEE_log', __FILE__, __FUNCTION__, '');
103
+		 $this->set_session($session);
104
+		 if ($grand_total instanceof EE_Line_Item) {
105
+			 $this->set_grand_total_line_item($grand_total);
106 106
 		 }
107 107
 	 }
108 108
 
@@ -114,13 +114,13 @@  discard block
 block discarded – undo
114 114
 	  * @param EE_Session $session
115 115
 	  * @return EE_Cart
116 116
 	  */
117
-	 public static function reset( EE_Line_Item $grand_total = null, EE_Session $session = null ) {
118
-		 remove_action( 'shutdown', array( self::$_instance, 'save_cart' ), 90 );
119
-		 if ( $session instanceof EE_Session ) {
117
+	 public static function reset(EE_Line_Item $grand_total = null, EE_Session $session = null) {
118
+		 remove_action('shutdown', array(self::$_instance, 'save_cart'), 90);
119
+		 if ($session instanceof EE_Session) {
120 120
 			 $session->reset_cart();
121 121
 		 }
122 122
 		 self::$_instance = null;
123
-		 return self::instance( $grand_total, $session );
123
+		 return self::instance($grand_total, $session);
124 124
 	 }
125 125
 
126 126
 
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 	 /**
129 129
 	  * @param EE_Session $session
130 130
 	  */
131
-	 public function set_session( EE_Session $session = null ) {
132
-		 $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core( 'Session' );
131
+	 public function set_session(EE_Session $session = null) {
132
+		 $this->_session = $session instanceof EE_Session ? $session : EE_Registry::instance()->load_core('Session');
133 133
 	 }
134 134
 
135 135
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	  *  know the grand total line item on it
140 140
 	  * @param EE_Line_Item $line_item
141 141
 	  */
142
-	 public function set_grand_total_line_item( EE_Line_Item $line_item ) {
142
+	 public function set_grand_total_line_item(EE_Line_Item $line_item) {
143 143
 		 $this->_grand_total = $line_item;
144 144
 	 }
145 145
 
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
 	  * @param EE_Session $session
153 153
 	  * @return \EE_Cart
154 154
 	  */
155
-	public static function get_cart_from_txn( EE_Transaction $transaction, EE_Session $session = null ) {
155
+	public static function get_cart_from_txn(EE_Transaction $transaction, EE_Session $session = null) {
156 156
 		$grand_total = $transaction->total_line_item();
157 157
 		$grand_total->get_items();
158 158
 		$grand_total->tax_descendants();
159
-		return EE_Cart::instance( $grand_total, $session );
159
+		return EE_Cart::instance($grand_total, $session);
160 160
 	}
161 161
 
162 162
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 	 * Creates the total line item, and ensures it has its 'tickets' and 'taxes' sub-items
166 166
 	 * @return EE_Line_Item
167 167
 	 */
168
-	private function _create_grand_total(){
168
+	private function _create_grand_total() {
169 169
 		$this->_grand_total = EEH_Line_Item::create_total_line_item();
170 170
 		return $this->_grand_total;
171 171
 	}
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 	 *	@return \EE_Line_Item[]
179 179
 	 */
180 180
 	public function get_tickets() {
181
-		return EEH_Line_Item::get_ticket_line_items( $this->_grand_total );
181
+		return EEH_Line_Item::get_ticket_line_items($this->_grand_total);
182 182
 	}
183 183
 
184 184
 
@@ -191,11 +191,11 @@  discard block
 block discarded – undo
191 191
 	 */
192 192
 	public function all_ticket_quantity_count() {
193 193
 		$tickets = $this->get_tickets();
194
-		if ( empty( $tickets )) {
194
+		if (empty($tickets)) {
195 195
 			return 0;
196 196
 		}
197 197
 		$count = 0;
198
-		foreach ( $tickets as $ticket ) {
198
+		foreach ($tickets as $ticket) {
199 199
 			$count = $count + $ticket->get('LIN_quantity');
200 200
 		}
201 201
 		return $count;
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
 	 *  Gets all the tax line items
208 208
 	 * @return \EE_Line_Item[]
209 209
 	 */
210
-	public function get_taxes(){
211
-		return EEH_Line_Item::get_taxes_subtotal( $this->_grand_total )->children();
210
+	public function get_taxes() {
211
+		return EEH_Line_Item::get_taxes_subtotal($this->_grand_total)->children();
212 212
 	}
213 213
 
214 214
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	 * Gets the total line item (which is a parent of all other line items) on this cart
218 218
 	 * @return EE_Line_Item
219 219
 	 */
220
-	public function get_grand_total(){
220
+	public function get_grand_total() {
221 221
 		return $this->_grand_total instanceof EE_Line_Item ? $this->_grand_total : $this->_create_grand_total();
222 222
 	}
223 223
 
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
 	 *	@param int $qty
231 231
 	 *	@return TRUE on success, FALSE on fail
232 232
 	 */
233
-	public function add_ticket_to_cart( EE_Ticket $ticket, $qty = 1 ) {
234
-		EEH_Line_Item::add_ticket_purchase( $this->get_grand_total(), $ticket, $qty );
233
+	public function add_ticket_to_cart(EE_Ticket $ticket, $qty = 1) {
234
+		EEH_Line_Item::add_ticket_purchase($this->get_grand_total(), $ticket, $qty);
235 235
 		return $this->save_cart() ? TRUE : FALSE;
236 236
 	}
237 237
 
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 	 *	@return float
255 255
 	 */
256 256
 	public function get_applied_taxes() {
257
-		return EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
257
+		return EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
258 258
 	}
259 259
 
260 260
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	 *	@return float
266 266
 	 */
267 267
 	public function get_cart_grand_total() {
268
-		EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
268
+		EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
269 269
 		return $this->get_grand_total()->total();
270 270
 	}
271 271
 
@@ -278,8 +278,8 @@  discard block
 block discarded – undo
278 278
 	 */
279 279
 	public function recalculate_all_cart_totals() {
280 280
 		$pre_tax_total = $this->get_cart_total_before_tax();
281
-		$taxes_total = EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
282
-		$this->_grand_total->set_total( $pre_tax_total + $taxes_total );
281
+		$taxes_total = EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
282
+		$this->_grand_total->set_total($pre_tax_total + $taxes_total);
283 283
 		$this->_grand_total->save_this_and_descendants_to_txn();
284 284
 		return $this->get_grand_total()->total();
285 285
 	}
@@ -292,9 +292,9 @@  discard block
 block discarded – undo
292 292
 	 *	@param array|bool|string $line_item_codes
293 293
 	 *	@return int on success, FALSE on fail
294 294
 	 */
295
-	public function delete_items( $line_item_codes = FALSE ) {
296
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
297
-		return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes );
295
+	public function delete_items($line_item_codes = FALSE) {
296
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
297
+		return EEH_Line_Item::delete_items($this->get_grand_total(), $line_item_codes);
298 298
 	}
299 299
 
300 300
 
@@ -305,9 +305,9 @@  discard block
 block discarded – undo
305 305
 	 *	@return bool
306 306
 	 */
307 307
 	public function empty_cart() {
308
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
308
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
309 309
 		$this->_grand_total = $this->_create_grand_total();
310
-		return $this->save_cart( TRUE );
310
+		return $this->save_cart(TRUE);
311 311
 	}
312 312
 
313 313
 
@@ -318,8 +318,8 @@  discard block
 block discarded – undo
318 318
 	 *	@return bool
319 319
 	 */
320 320
 	public function delete_cart() {
321
-		$deleted = EEH_Line_Item::delete_all_child_items( $this->_grand_total );
322
-		if ( $deleted ) {
321
+		$deleted = EEH_Line_Item::delete_all_child_items($this->_grand_total);
322
+		if ($deleted) {
323 323
 			$deleted += $this->_grand_total->delete();
324 324
 			$this->_grand_total = null;
325 325
 		}
@@ -334,17 +334,17 @@  discard block
 block discarded – undo
334 334
 	  * @param bool $apply_taxes
335 335
 	  * @return TRUE on success, FALSE on fail
336 336
 	  */
337
-	public function save_cart( $apply_taxes = TRUE ) {
338
-		if ( $apply_taxes && $this->_grand_total instanceof EE_Line_Item ) {
339
-			EEH_Line_Item::ensure_taxes_applied( $this->_grand_total );
337
+	public function save_cart($apply_taxes = TRUE) {
338
+		if ($apply_taxes && $this->_grand_total instanceof EE_Line_Item) {
339
+			EEH_Line_Item::ensure_taxes_applied($this->_grand_total);
340 340
 			//make sure we don't cache the transaction because it can get stale
341
-			if( $this->_grand_total->get_one_from_cache( 'Transaction' ) instanceof EE_Transaction &&
342
-				$this->_grand_total->get_one_from_cache( 'Transaction' )->ID()) {
343
-				$this->_grand_total->clear_cache( 'Transaction', null, true );
341
+			if ($this->_grand_total->get_one_from_cache('Transaction') instanceof EE_Transaction &&
342
+				$this->_grand_total->get_one_from_cache('Transaction')->ID()) {
343
+				$this->_grand_total->clear_cache('Transaction', null, true);
344 344
 			}
345 345
 		}
346
-		if ( $this->_session instanceof EE_Session ) {
347
-			return $this->_session->set_cart( $this );
346
+		if ($this->_session instanceof EE_Session) {
347
+			return $this->_session->set_cart($this);
348 348
 		} else {
349 349
 			return false;
350 350
 		}
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 	 *	@access public
229 229
 	 *	@param EE_Ticket $ticket
230 230
 	 *	@param int $qty
231
-	 *	@return TRUE on success, FALSE on fail
231
+	 *	@return boolean on success, FALSE on fail
232 232
 	 */
233 233
 	public function add_ticket_to_cart( EE_Ticket $ticket, $qty = 1 ) {
234 234
 		EEH_Line_Item::add_ticket_purchase( $this->get_grand_total(), $ticket, $qty );
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
 	  * @save cart to session
333 333
 	  * @access public
334 334
 	  * @param bool $apply_taxes
335
-	  * @return TRUE on success, FALSE on fail
335
+	  * @return boolean on success, FALSE on fail
336 336
 	  */
337 337
 	public function save_cart( $apply_taxes = TRUE ) {
338 338
 		if ( $apply_taxes && $this->_grand_total instanceof EE_Line_Item ) {
Please login to merge, or discard this patch.
core/EE_Configurable.core.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 	/**
53 53
 	 * @param string $config_section
54 54
 	 */
55
-	public function set_config_section( $config_section = '' ) {
56
-		$this->_config_section = ! empty( $config_section ) ? $config_section : 'modules';
55
+	public function set_config_section($config_section = '') {
56
+		$this->_config_section = ! empty($config_section) ? $config_section : 'modules';
57 57
 	}
58 58
 
59 59
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 	/**
71 71
 	 * @param string $config_class
72 72
 	 */
73
-	public function set_config_class( $config_class = '' ) {
73
+	public function set_config_class($config_class = '') {
74 74
 		$this->_config_class = $config_class;
75 75
 	}
76 76
 
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 * @param mixed $config_name
90 90
 	 */
91
-	public function set_config_name( $config_name ) {
92
-		$this->_config_name = ! empty( $config_name ) ? $config_name : get_called_class();
91
+	public function set_config_name($config_name) {
92
+		$this->_config_name = ! empty($config_name) ? $config_name : get_called_class();
93 93
 	}
94 94
 
95 95
 
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
 	 * @param 	EE_Config_Base 	$config_obj
113 113
 	 * @return 	mixed 	EE_Config_Base | NULL
114 114
 	 */
115
-	protected function _set_config( EE_Config_Base $config_obj = NULL ) {
116
-		return EE_Config::instance()->set_config( $this->config_section(), $this->config_name(), $this->config_class(), $config_obj );
115
+	protected function _set_config(EE_Config_Base $config_obj = NULL) {
116
+		return EE_Config::instance()->set_config($this->config_section(), $this->config_name(), $this->config_class(), $config_obj);
117 117
 	}
118 118
 
119 119
 
@@ -127,12 +127,12 @@  discard block
 block discarded – undo
127 127
 	 * @throws \EE_Error
128 128
 	 * @return    mixed    EE_Config_Base | NULL
129 129
 	 */
130
-	public function _update_config( EE_Config_Base $config_obj = NULL ) {
130
+	public function _update_config(EE_Config_Base $config_obj = NULL) {
131 131
 		$config_class = $this->config_class();
132
-		if ( ! $config_obj instanceof $config_class ) {
133
-			throw new EE_Error( sprintf( __( 'The "%1$s" class is not an instance of %2$s.', 'event_espresso' ), print_r( $config_obj, TRUE ), $config_class ));
132
+		if ( ! $config_obj instanceof $config_class) {
133
+			throw new EE_Error(sprintf(__('The "%1$s" class is not an instance of %2$s.', 'event_espresso'), print_r($config_obj, TRUE), $config_class));
134 134
 		}
135
-		return EE_Config::instance()->update_config( $this->config_section(), $this->config_name(), $config_obj );
135
+		return EE_Config::instance()->update_config($this->config_section(), $this->config_name(), $config_obj);
136 136
 	}
137 137
 
138 138
 
@@ -143,8 +143,8 @@  discard block
 block discarded – undo
143 143
 	 * @return EE_Config_Base
144 144
 	 */
145 145
 	public function config() {
146
-		if ( empty( $this->_config )) {
147
-			$this->_config = EE_Config::instance()->get_config( $this->config_section(), $this->config_name(), $this->config_class() );
146
+		if (empty($this->_config)) {
147
+			$this->_config = EE_Config::instance()->get_config($this->config_section(), $this->config_name(), $this->config_class());
148 148
 		}
149 149
 		return $this->_config;
150 150
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/EE_Data_Mapper.core.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@
 block discarded – undo
28 28
 
29 29
 
30 30
    /**
31
-     * instance of the EE_Data_Mapper Object
32
-     * @private _instance
33
-     */
31
+    * instance of the EE_Data_Mapper Object
32
+    * @private _instance
33
+    */
34 34
 	private static $_instance = NULL;
35 35
 
36 36
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */	
55 55
 	public  function &instance() {
56 56
 		// check if class object is instantiated
57
-		if ( self::$_instance === NULL  or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_Data_Mapper )) {
57
+		if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Data_Mapper)) {
58 58
 			self::$_instance = new self();
59 59
 		}
60 60
 		return self::$_instance;
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
 	 *		@ return void
72 72
 	 */
73 73
 	final function __destruct() {}
74
-	final function __call($a,$b) {}
75
-	public static function __callStatic($a,$b) {}
74
+	final function __call($a, $b) {}
75
+	public static function __callStatic($a, $b) {}
76 76
 	final function __get($a) {}
77
-	final function __set($a,$b) {}
77
+	final function __set($a, $b) {}
78 78
 	final function __isset($a) {}
79 79
 	final function __unset($a) {}
80 80
 	final function __sleep() {
Please login to merge, or discard this patch.
core/EE_Encryption.core.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * EE_Encryption class
4 6
  *
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 /**
3 3
  * EE_Encryption class
4 4
  *
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 * @return \EE_Encryption
30 30
 	 */
31 31
   private function __construct() {
32
-		define( 'ESPRESSO_ENCRYPT', true );
33
-		if ( ! function_exists( 'mcrypt_encrypt' ) ) {
32
+		define('ESPRESSO_ENCRYPT', true);
33
+		if ( ! function_exists('mcrypt_encrypt')) {
34 34
 			$this->_use_mcrypt = false;
35 35
 		}
36 36
 	}
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 	 *	@access public
43 43
 	 * @return \EE_Encryption
44 44
 	 */
45
-	public static function instance ( ) {
45
+	public static function instance( ) {
46 46
 		// check if class object is instantiated
47
-		if ( ! self::$_instance instanceof EE_Encryption ) {
47
+		if ( ! self::$_instance instanceof EE_Encryption) {
48 48
 			self::$_instance = new self();
49 49
 		}
50 50
 		return self::$_instance;
@@ -59,15 +59,15 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public  function get_encryption_key() {
61 61
 		// if encryption key has not been set
62
-		if ( empty( $this->_encryption_key )) {
62
+		if (empty($this->_encryption_key)) {
63 63
 			// retrieve encryption_key from db
64
-			$this->_encryption_key = get_option( 'ee_encryption_key', '' );
64
+			$this->_encryption_key = get_option('ee_encryption_key', '');
65 65
 			// WHAT?? No encryption_key in the db ??
66
-			if ( $this->_encryption_key == '' ) {
66
+			if ($this->_encryption_key == '') {
67 67
 				// let's make one. And md5 it to make it just the right size for a key
68
-				$new_key =  md5( self::generate_random_string() );
68
+				$new_key = md5(self::generate_random_string());
69 69
 				// now save it to the db for later
70
-				add_option( 'ee_encryption_key', $new_key );
70
+				add_option('ee_encryption_key', $new_key);
71 71
 				// here's the key - FINALLY !
72 72
 				$this->_encryption_key = $new_key;
73 73
 			}
@@ -83,15 +83,15 @@  discard block
 block discarded – undo
83 83
 	 * @param string $text_string  - the text to be encrypted
84 84
 	 * @return string
85 85
 	 */
86
-	public function encrypt ( $text_string = '' ) {
86
+	public function encrypt($text_string = '') {
87 87
 		// you give me nothing??? GET OUT !
88
-		if  ( empty( $text_string ))  {
88
+		if (empty($text_string)) {
89 89
 			return $text_string;
90 90
 		}
91
-		if ( $this->_use_mcrypt ) {
92
-			$encrypted_text = $this->m_encrypt( $text_string );
91
+		if ($this->_use_mcrypt) {
92
+			$encrypted_text = $this->m_encrypt($text_string);
93 93
 		} else {
94
-			$encrypted_text = $this->acme_encrypt( $text_string );
94
+			$encrypted_text = $this->acme_encrypt($text_string);
95 95
 		}
96 96
 		return $encrypted_text;
97 97
 	}
@@ -104,16 +104,16 @@  discard block
 block discarded – undo
104 104
 	 * @param string $encrypted_text - the text to be decrypted
105 105
 	 * @return string
106 106
 	 */
107
-	public function decrypt  ( $encrypted_text = '' )  {
107
+	public function decrypt($encrypted_text = '') {
108 108
 		// you give me nothing??? GET OUT !
109
-		if  ( empty( $encrypted_text ))  {
109
+		if (empty($encrypted_text)) {
110 110
 			return $encrypted_text;
111 111
 		}
112 112
 		// if PHP's mcrypt functions are installed then we'll use them
113
-		if ( $this->_use_mcrypt ) {
114
-			$decrypted_text = $this->m_decrypt( $encrypted_text );
113
+		if ($this->_use_mcrypt) {
114
+			$decrypted_text = $this->m_decrypt($encrypted_text);
115 115
 		} else {
116
-			$decrypted_text = $this->acme_decrypt( $encrypted_text );
116
+			$decrypted_text = $this->acme_decrypt($encrypted_text);
117 117
 		}
118 118
 		return $decrypted_text;
119 119
  	}
@@ -128,15 +128,15 @@  discard block
 block discarded – undo
128 128
 	 * @internal param $string - the text to be encoded
129 129
 	 * @return string
130 130
 	 */
131
-	public function base64_url_encode ( $text_string = '' ) {
131
+	public function base64_url_encode($text_string = '') {
132 132
 		// you give me nothing??? GET OUT !
133
-		if  ( ! $text_string )  {
133
+		if ( ! $text_string) {
134 134
 			return $text_string;
135 135
 		}
136 136
 		// encode
137
-		$encoded_string = base64_encode ( $text_string );
137
+		$encoded_string = base64_encode($text_string);
138 138
 		// remove chars to make encoding more URL friendly
139
-		$encoded_string = strtr ( $encoded_string, '+/=', '-_,' );
139
+		$encoded_string = strtr($encoded_string, '+/=', '-_,');
140 140
 		return $encoded_string;
141 141
 	}
142 142
 
@@ -150,15 +150,15 @@  discard block
 block discarded – undo
150 150
 	 * @internal param $string - the text to be decoded
151 151
 	 * @return string
152 152
 	 */
153
-	public function base64_url_decode ( $encoded_string = '' ) {
153
+	public function base64_url_decode($encoded_string = '') {
154 154
 		// you give me nothing??? GET OUT !
155
-		if  ( ! $encoded_string )  {
155
+		if ( ! $encoded_string) {
156 156
 			return $encoded_string;
157 157
 		}
158 158
 		// replace previously removed characters
159
-		$encoded_string = strtr ( $encoded_string, '-_,', '+/=' );
159
+		$encoded_string = strtr($encoded_string, '-_,', '+/=');
160 160
 		// decode
161
-		$decoded_string = base64_decode ( $encoded_string );
161
+		$decoded_string = base64_decode($encoded_string);
162 162
 		return $decoded_string;
163 163
 	}
164 164
 
@@ -171,19 +171,19 @@  discard block
 block discarded – undo
171 171
 	 * @internal param $string - the text to be encrypted
172 172
 	 * @return string
173 173
 	 */
174
-	private function m_encrypt  ( $text_string = '' ) {
174
+	private function m_encrypt($text_string = '') {
175 175
 		// you give me nothing??? GET OUT !
176
-		if  ( ! $text_string )  {
176
+		if ( ! $text_string) {
177 177
 			return $text_string;
178 178
 		}
179 179
 		// get the initialization vector size
180
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
180
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
181 181
 		// initialization vector
182
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
182
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
183 183
 		// encrypt it
184
-		$encrypted_text = mcrypt_encrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv );
184
+		$encrypted_text = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $text_string, MCRYPT_MODE_ECB, $iv);
185 185
 		// trim and encode
186
-		$encrypted_text = trim ( base64_encode( $encrypted_text ) );
186
+		$encrypted_text = trim(base64_encode($encrypted_text));
187 187
 		return $encrypted_text;
188 188
 	}
189 189
 
@@ -196,19 +196,19 @@  discard block
 block discarded – undo
196 196
 	 * @internal param $string - the text to be decrypted
197 197
 	 * @return string
198 198
 	 */
199
-	private function m_decrypt  ( $encrypted_text = '' )  {
199
+	private function m_decrypt($encrypted_text = '') {
200 200
 		// you give me nothing??? GET OUT !
201
-		if  ( ! $encrypted_text )  {
201
+		if ( ! $encrypted_text) {
202 202
 			return $encrypted_text;
203 203
 		}
204 204
 		// decode
205
-		$encrypted_text = base64_decode ( $encrypted_text );
205
+		$encrypted_text = base64_decode($encrypted_text);
206 206
 		// get the initialization vector size
207
-		$iv_size = mcrypt_get_iv_size ( MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB );
208
-		$iv = mcrypt_create_iv ( $iv_size, MCRYPT_RAND );
207
+		$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);
208
+		$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
209 209
 		// decrypt it
210
-		$decrypted_text = mcrypt_decrypt ( MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv );
211
-		$decrypted_text = trim ( $decrypted_text );
210
+		$decrypted_text = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->get_encryption_key(), $encrypted_text, MCRYPT_MODE_ECB, $iv);
211
+		$decrypted_text = trim($decrypted_text);
212 212
 		return $decrypted_text;
213 213
 	}
214 214
 
@@ -222,18 +222,18 @@  discard block
 block discarded – undo
222 222
 	 * @internal param $string - the text to be decrypted
223 223
 	 * @return string
224 224
 	 */
225
-	private function acme_encrypt ( $text_string = '' ) {
225
+	private function acme_encrypt($text_string = '') {
226 226
 		// you give me nothing??? GET OUT !
227
-		if  ( ! $text_string )  {
227
+		if ( ! $text_string) {
228 228
 			return $text_string;
229 229
 		}
230
-		$key_bits = str_split ( str_pad ( '', strlen( $text_string ), $this->get_encryption_key(), STR_PAD_RIGHT ));
231
-		$string_bits = str_split( $text_string );
232
-		foreach ( $string_bits as $k =>$v ) {
233
-			$temp = ord( $v ) + ord ( $key_bits[$k] );
234
-			$string_bits[$k] = chr ( $temp > 255 ? ( $temp - 256 ) : $temp );
230
+		$key_bits = str_split(str_pad('', strlen($text_string), $this->get_encryption_key(), STR_PAD_RIGHT));
231
+		$string_bits = str_split($text_string);
232
+		foreach ($string_bits as $k =>$v) {
233
+			$temp = ord($v) + ord($key_bits[$k]);
234
+			$string_bits[$k] = chr($temp > 255 ? ($temp - 256) : $temp);
235 235
 		}
236
-		$encrypted = base64_encode( join( '', $string_bits ) );
236
+		$encrypted = base64_encode(join('', $string_bits));
237 237
 		return $encrypted;
238 238
 	}
239 239
 
@@ -247,19 +247,19 @@  discard block
 block discarded – undo
247 247
 	 * @internal param $string - the text to be decrypted
248 248
 	 * @return string
249 249
 	 */
250
-	private function acme_decrypt ( $encrypted_text = false ) {
250
+	private function acme_decrypt($encrypted_text = false) {
251 251
 		// you give me nothing??? GET OUT !
252
-		if  ( ! $encrypted_text )  {
252
+		if ( ! $encrypted_text) {
253 253
 			return false;
254 254
 		}
255
-		$encrypted_text = base64_decode ( $encrypted_text );
256
-		$key_bits = str_split ( str_pad ( '', strlen ( $encrypted_text ), $this->get_encryption_key(), STR_PAD_RIGHT ));
257
-		$string_bits = str_split ( $encrypted_text );
258
-		foreach ( $string_bits as $k => $v ) {
259
-			$temp = ord ( $v ) - ord ( $key_bits[$k] );
260
-			$string_bits[$k] = chr ( $temp < 0 ? ( $temp + 256 ) : $temp );
255
+		$encrypted_text = base64_decode($encrypted_text);
256
+		$key_bits = str_split(str_pad('', strlen($encrypted_text), $this->get_encryption_key(), STR_PAD_RIGHT));
257
+		$string_bits = str_split($encrypted_text);
258
+		foreach ($string_bits as $k => $v) {
259
+			$temp = ord($v) - ord($key_bits[$k]);
260
+			$string_bits[$k] = chr($temp < 0 ? ($temp + 256) : $temp);
261 261
 		}
262
-		$decrypted = join( '', $string_bits );
262
+		$decrypted = join('', $string_bits);
263 263
 		return $decrypted;
264 264
 	}
265 265
 
@@ -273,13 +273,13 @@  discard block
 block discarded – undo
273 273
 	 * @internal param $string - number of characters for random string
274 274
 	 * @return string
275 275
 	 */
276
-	public function generate_random_string ( $length = 40 ) {
277
-		$iterations = ceil ( $length / 40 );
276
+	public function generate_random_string($length = 40) {
277
+		$iterations = ceil($length / 40);
278 278
 		$random_string = '';
279
-		for ($i = 0; $i < $iterations; $i ++) {
280
-			$random_string .= sha1( microtime(TRUE) . mt_rand( 10000, 90000 ));
279
+		for ($i = 0; $i < $iterations; $i++) {
280
+			$random_string .= sha1(microtime(TRUE).mt_rand(10000, 90000));
281 281
 		}
282
-		$random_string =  substr( $random_string, 0, $length );
282
+		$random_string = substr($random_string, 0, $length);
283 283
 		return $random_string;
284 284
 	}
285 285
 
Please login to merge, or discard this patch.
core/EE_Error.core.php 4 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 // if you're a dev and want to receive all errors via email add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE );
3 5
 if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) {
4 6
 	set_error_handler( array( 'EE_Error', 'error_handler' ));
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 *    error_handler
90 90
 	 * @access public
91
-	 * @param $code
91
+	 * @param integer $code
92 92
 	 * @param $message
93 93
 	 * @param $file
94 94
 	 * @param $line
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	/**
190 190
 	 *    _format_error
191 191
 	 * @access private
192
-	 * @param $code
192
+	 * @param string $code
193 193
 	 * @param $message
194 194
 	 * @param $file
195 195
 	 * @param $line
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
 	 *
943 943
 	 * @access    public
944 944
 	 * @param string $return_url
945
-	 * @return    array
945
+	 * @return    string
946 946
 	 */
947 947
 	public static function get_persistent_admin_notices( $return_url = '' ) {
948 948
 		$notices = '';
@@ -967,7 +967,7 @@  discard block
 block discarded – undo
967 967
 	 *
968 968
 	 * @access 	public
969 969
 	 * @param 	bool $force_print
970
-	 * @return 	void
970
+	 * @return 	null|string
971 971
 	 */
972 972
 	private static function _print_scripts( $force_print = FALSE ) {
973 973
 		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
@@ -1105,7 +1105,7 @@  discard block
 block discarded – undo
1105 1105
 	
1106 1106
 	/**
1107 1107
 	 * Like get_notices, but returns an array of all the notices of the given type.
1108
-	 * @return array {
1108
+	 * @return boolean {
1109 1109
 	 *	@type array $success all the success messages
1110 1110
 	 *	@type array $errors all the error messages
1111 1111
 	 *	@type array $attention all the attention messages
Please login to merge, or discard this patch.
Indentation   +170 added lines, -170 removed lines patch added patch discarded remove patch
@@ -18,52 +18,52 @@  discard block
 block discarded – undo
18 18
 
19 19
 
20 20
 	/**
21
-	* 	name of the file to log exceptions to
22
-	* 	@access	private
23
-    *	@var string
24
-	*/
21
+	 * 	name of the file to log exceptions to
22
+	 * 	@access	private
23
+	 *	@var string
24
+	 */
25 25
 	private static $_exception_log_file = 'espresso_error_log.txt';
26 26
 
27 27
 	/**
28
-	* 	the exception
29
-	* 	@access	private
30
-    *	@var object
31
-	*/
28
+	 * 	the exception
29
+	 * 	@access	private
30
+	 *	@var object
31
+	 */
32 32
 	private $_exception;
33 33
 
34 34
 	/**
35
-	* 	stores details for all exception
36
-	* 	@access	private
37
-    *	@var array
38
-	*/
35
+	 * 	stores details for all exception
36
+	 * 	@access	private
37
+	 *	@var array
38
+	 */
39 39
 	private static $_all_exceptions = array();
40 40
 
41 41
 	/**
42
-	* 	tracks number of errors
43
-	* 	@access	private
44
-    *	@var int
45
-	*/
42
+	 * 	tracks number of errors
43
+	 * 	@access	private
44
+	 *	@var int
45
+	 */
46 46
 	private static $_error_count = 0;
47 47
 
48 48
 	/**
49
-	* 	has JS been loaded ?
50
-	* 	@access	private
51
-    *	@var boolean
52
-	*/
49
+	 * 	has JS been loaded ?
50
+	 * 	@access	private
51
+	 *	@var boolean
52
+	 */
53 53
 	private static $_js_loaded = FALSE;
54 54
 
55 55
 	/**
56
-	* 	has shutdown action been added ?
57
-	* 	@access	private
58
-    *	@var boolean
59
-	*/
56
+	 * 	has shutdown action been added ?
57
+	 * 	@access	private
58
+	 *	@var boolean
59
+	 */
60 60
 	private static $_action_added = FALSE;
61 61
 
62 62
 	/**
63
-	* 	has shutdown action been added ?
64
-	* 	@access	private
65
-    *	@var boolean
66
-	*/
63
+	 * 	has shutdown action been added ?
64
+	 * 	@access	private
65
+	 *	@var boolean
66
+	 */
67 67
 	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
68 68
 
69 69
 
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
 
72 72
 
73 73
 	/**
74
-	*	@override default exception handling
75
-	*	@access public
76
-	*	@echo string
77
-	*/
74
+	 *	@override default exception handling
75
+	 *	@access public
76
+	 *	@echo string
77
+	 */
78 78
 	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79 79
 		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80 80
 			parent::__construct( $message, $code );
@@ -173,10 +173,10 @@  discard block
 block discarded – undo
173 173
 
174 174
 
175 175
 	/**
176
-	*	fatal_error_handler
177
-	*	@access public
178
-	*	@return void
179
-	*/
176
+	 *	fatal_error_handler
177
+	 *	@access public
178
+	 *	@return void
179
+	 */
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182 182
 		if ( $last_error['type'] === E_ERROR ) {
@@ -221,11 +221,11 @@  discard block
 block discarded – undo
221 221
 
222 222
 
223 223
 	/**
224
-	*	_add_actions
225
-	*	@access public
226
-	*	@return void
227
-	*/
228
-    public function get_error() {
224
+	 *	_add_actions
225
+	 *	@access public
226
+	 *	@return void
227
+	 */
228
+	public function get_error() {
229 229
 
230 230
 		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
231 231
 			throw $this;
@@ -261,27 +261,27 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
265
-	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
270
-				    return true;
271
-			    }
272
-		    }
273
-	    }
274
-	    return $has_error;
275
-    }
264
+	public static function has_error( $check_stored = false ){
265
+		$has_error = self::$_error_count ? true : false;
266
+		if ( $check_stored && ! $has_error ) {
267
+			$notices = (array) get_option( 'ee_notices', array() );
268
+			foreach ( $notices as $type => $notice ) {
269
+				if ( $type === 'errors' && $notice ) {
270
+					return true;
271
+				}
272
+			}
273
+		}
274
+		return $has_error;
275
+	}
276 276
 
277 277
 
278 278
 
279 279
 	/**
280
-	*	display_errors
281
-	*	@access public
282
-	*	@echo string
283
-	*/
284
-    public function display_errors(){
280
+	 *	display_errors
281
+	 *	@access public
282
+	 *	@echo string
283
+	 */
284
+	public function display_errors(){
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
 			// process trace info
354 354
 			if ( empty( $ex['trace'] )) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+				$trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
357 357
 
358 358
 			} else {
359 359
 
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406 406
 					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
407 407
 
408
-		              $trace_details .= '
408
+					  $trace_details .= '
409 409
 					<tr>
410 410
 						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411 411
 						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 
418 418
 				}
419 419
 
420
-	            $trace_details .= '
420
+				$trace_details .= '
421 421
 			 </table>
422 422
 			</div>';
423 423
 
@@ -497,12 +497,12 @@  discard block
 block discarded – undo
497 497
 
498 498
 
499 499
 	/**
500
-	*	generate string from exception trace args
501
-	*
502
-	*	@access private
503
-	*	@ param array $arguments
504
-	*	@ return string
505
-	*/
500
+	 *	generate string from exception trace args
501
+	 *
502
+	 *	@access private
503
+	 *	@ param array $arguments
504
+	 *	@ return string
505
+	 */
506 506
 	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
507 507
 
508 508
 		$arg_string = '';
@@ -546,15 +546,15 @@  discard block
 block discarded – undo
546 546
 
547 547
 
548 548
 	/**
549
-	* 	add error message
550
-	*
551
-	*	@access public
552
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
-	* 	@return 		void
557
-	*/
549
+	 * 	add error message
550
+	 *
551
+	 *	@access public
552
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
553
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
554
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
555
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
556
+	 * 	@return 		void
557
+	 */
558 558
 	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559 559
 		self::_add_notice ( 'errors', $msg, $file, $func, $line );
560 560
 		self::$_error_count++;
@@ -582,15 +582,15 @@  discard block
 block discarded – undo
582 582
 
583 583
 
584 584
 	/**
585
-	* 	add success message
586
-	*
587
-	*	@access public
588
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
-	* 	@return 		void
593
-	*/
585
+	 * 	add success message
586
+	 *
587
+	 *	@access public
588
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
589
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
590
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
591
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
592
+	 * 	@return 		void
593
+	 */
594 594
 	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595 595
 		self::_add_notice ( 'success', $msg, $file, $func, $line );
596 596
 	}
@@ -600,15 +600,15 @@  discard block
 block discarded – undo
600 600
 
601 601
 
602 602
 	/**
603
-	* 	add attention message
604
-	*
605
-	*	@access public
606
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
-	* 	@return 		void
611
-	*/
603
+	 * 	add attention message
604
+	 *
605
+	 *	@access public
606
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
607
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
608
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
609
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
610
+	 * 	@return 		void
611
+	 */
612 612
 	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613 613
 		self::_add_notice ( 'attention', $msg, $file, $func, $line );
614 614
 	}
@@ -618,16 +618,16 @@  discard block
 block discarded – undo
618 618
 
619 619
 
620 620
 	/**
621
-	* 	add success message
622
-	*
623
-	*	@access public
624
-	* 	@param		string		$type	whether the message is for a success or error notification
625
-	* 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
-	* 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
-	* 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
-	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
-	* 	@return 		void
630
-	*/
621
+	 * 	add success message
622
+	 *
623
+	 *	@access public
624
+	 * 	@param		string		$type	whether the message is for a success or error notification
625
+	 * 	@param		string		$msg	the message to display to users or developers - adding a double pipe || (OR) creates separate messages for user || dev
626
+	 * 	@param		string		$file		the file that the error occurred in - just use __FILE__
627
+	 * 	@param		string		$func	the function/method that the error occurred in - just use __FUNCTION__
628
+	 * 	@param		string		$line	the line number where the error occurred - just use __LINE__
629
+	 * 	@return 		void
630
+	 */
631 631
 	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632 632
 		if ( empty( $msg )) {
633 633
 			EE_Error::doing_it_wrong(
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
 
687 687
 
688 688
 	/**
689
-	* 	in some case it may be necessary to overwrite the existing success messages
690
-	*
691
-	*	@access public
692
-	* 	@return 		void
693
-	*/
689
+	 * 	in some case it may be necessary to overwrite the existing success messages
690
+	 *
691
+	 *	@access public
692
+	 * 	@return 		void
693
+	 */
694 694
 	public static function overwrite_success() {
695 695
 		self::$_espresso_notices['success'] = FALSE;
696 696
 	}
@@ -700,11 +700,11 @@  discard block
 block discarded – undo
700 700
 
701 701
 
702 702
 	/**
703
-	* 	in some case it may be necessary to overwrite the existing attention messages
704
-	*
705
-	*	@access public
706
-	* 	@return 		void
707
-	*/
703
+	 * 	in some case it may be necessary to overwrite the existing attention messages
704
+	 *
705
+	 *	@access public
706
+	 * 	@return 		void
707
+	 */
708 708
 	public static function overwrite_attention() {
709 709
 		self::$_espresso_notices['attention'] = FALSE;
710 710
 	}
@@ -714,11 +714,11 @@  discard block
 block discarded – undo
714 714
 
715 715
 
716 716
 	/**
717
-	* 	in some case it may be necessary to overwrite the existing error messages
718
-	*
719
-	*	@access public
720
-	* 	@return 		void
721
-	*/
717
+	 * 	in some case it may be necessary to overwrite the existing error messages
718
+	 *
719
+	 *	@access public
720
+	 * 	@return 		void
721
+	 */
722 722
 	public static function overwrite_errors() {
723 723
 		self::$_espresso_notices['errors'] = FALSE;
724 724
 	}
@@ -726,24 +726,24 @@  discard block
 block discarded – undo
726 726
 
727 727
 
728 728
 	/**
729
-	*	reset_notices
730
-	*	@access private
731
-	*	@return void
732
-	*/
729
+	 *	reset_notices
730
+	 *	@access private
731
+	 *	@return void
732
+	 */
733 733
 	public static function reset_notices(){
734
-    	self::$_espresso_notices['success'] = FALSE;
735
-    	self::$_espresso_notices['attention'] = FALSE;
736
-    	self::$_espresso_notices['errors'] = FALSE;
737
-    }
734
+		self::$_espresso_notices['success'] = FALSE;
735
+		self::$_espresso_notices['attention'] = FALSE;
736
+		self::$_espresso_notices['errors'] = FALSE;
737
+	}
738 738
 
739 739
 
740 740
 
741 741
 	/**
742
-	*	has_errors
743
-	*	@access public
744
-	*	@return int
745
-	*/
746
-    public static function has_notices(){
742
+	 *	has_errors
743
+	 *	@access public
744
+	 *	@return int
745
+	 */
746
+	public static function has_notices(){
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749 749
 		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
@@ -774,15 +774,15 @@  discard block
 block discarded – undo
774 774
 
775 775
 
776 776
 	/**
777
-	* 	compile all error or success messages into one string
778
-	*	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
-	*
780
-	*	@access public
781
-	* 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
-	* 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
-	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
-	* 	@return 		array
785
-	*/
777
+	 * 	compile all error or success messages into one string
778
+	 *	@see EE_Error::get_raw_notices if you want the raw notices without any preparations made to them
779
+	 *
780
+	 *	@access public
781
+	 * 	@param		boolean		$format_output		whether or not to format the messages for display in the WP admin
782
+	 * 	@param		boolean		$save_to_transient	whether or not to save notices to the db for retrieval on next request - ONLY do this just before redirecting
783
+	 * 	@param		boolean		$remove_empty		whether or not to unset empty messages
784
+	 * 	@return 		array
785
+	 */
786 786
 	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787 787
 		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
788 788
 
@@ -894,14 +894,14 @@  discard block
 block discarded – undo
894 894
 
895 895
 
896 896
 	/**
897
-	* 	add_persistent_admin_notice
898
-	*
899
-	*	@access 	public
900
-	* 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
-	* 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
-	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
-	* 	@return 		void
904
-	*/
897
+	 * 	add_persistent_admin_notice
898
+	 *
899
+	 *	@access 	public
900
+	 * 	@param		string	$pan_name	the name, or key of the Persistent Admin Notice to be stored
901
+	 * 	@param		string	$pan_message	the message to be stored persistently until dismissed
902
+	 * 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903
+	 * 	@return 		void
904
+	 */
905 905
 	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906 906
 		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907 907
 			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
@@ -1064,11 +1064,11 @@  discard block
 block discarded – undo
1064 1064
 
1065 1065
 
1066 1066
 	/**
1067
-	* 	enqueue_error_scripts
1068
-	*
1069
-	*	@access public
1070
-	* 	@return 		void
1071
-	*/
1067
+	 * 	enqueue_error_scripts
1068
+	 *
1069
+	 *	@access public
1070
+	 * 	@return 		void
1071
+	 */
1072 1072
 	public static function enqueue_error_scripts() {
1073 1073
 		self::_print_scripts();
1074 1074
 	}
@@ -1076,15 +1076,15 @@  discard block
 block discarded – undo
1076 1076
 
1077 1077
 
1078 1078
 	/**
1079
-	*	create error code from filepath, function name,
1080
-	*	and line number where exception or error was thrown
1081
-	*
1082
-	*	@access public
1083
-	*	@param string $file
1084
-	*	@param string $func
1085
-	*	@param string $line
1086
-	*	@return string
1087
-	*/
1079
+	 *	create error code from filepath, function name,
1080
+	 *	and line number where exception or error was thrown
1081
+	 *
1082
+	 *	@access public
1083
+	 *	@param string $file
1084
+	 *	@param string $func
1085
+	 *	@param string $line
1086
+	 *	@return string
1087
+	 */
1088 1088
 	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089 1089
 		$file = explode( '.', basename( $file ));
1090 1090
 		$error_code = ! empty( $file[0] ) ? $file[0] : '';
@@ -1098,13 +1098,13 @@  discard block
 block discarded – undo
1098 1098
 
1099 1099
 
1100 1100
 	/**
1101
-	*	write exception details to log file
1102
-	*
1103
-	*	@access public
1104
-	*	@ param timestamp $time
1105
-	*	@ param object $ex
1106
-	*	@ return void
1107
-	*/
1101
+	 *	write exception details to log file
1102
+	 *
1103
+	 *	@access public
1104
+	 *	@ param timestamp $time
1105
+	 *	@ param object $ex
1106
+	 *	@ return void
1107
+	 */
1108 1108
 	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1109 1109
 
1110 1110
 		if ( ! $ex ) {
Please login to merge, or discard this patch.
Spacing   +247 added lines, -247 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2 2
 // if you're a dev and want to receive all errors via email add this to your wp-config.php: define( 'EE_ERROR_EMAILS', TRUE );
3
-if ( defined( 'WP_DEBUG' ) && WP_DEBUG === TRUE && defined( 'EE_ERROR_EMAILS' ) && EE_ERROR_EMAILS === TRUE ) {
4
-	set_error_handler( array( 'EE_Error', 'error_handler' ));
5
-	register_shutdown_function( array( 'EE_Error', 'fatal_error_handler' ));
3
+if (defined('WP_DEBUG') && WP_DEBUG === TRUE && defined('EE_ERROR_EMAILS') && EE_ERROR_EMAILS === TRUE) {
4
+	set_error_handler(array('EE_Error', 'error_handler'));
5
+	register_shutdown_function(array('EE_Error', 'fatal_error_handler'));
6 6
 }
7 7
 /**
8 8
  *
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	* 	@access	private
65 65
     *	@var boolean
66 66
 	*/
67
-	private static $_espresso_notices = array( 'success' => FALSE, 'errors' => FALSE, 'attention' => FALSE );
67
+	private static $_espresso_notices = array('success' => FALSE, 'errors' => FALSE, 'attention' => FALSE);
68 68
 
69 69
 
70 70
 
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
 	*	@access public
76 76
 	*	@echo string
77 77
 	*/
78
-	function __construct( $message, $code = 0, Exception $previous = NULL ) {
79
-		if ( version_compare( phpversion(), '5.3.0', '<' )) {
80
-			parent::__construct( $message, $code );
78
+	function __construct($message, $code = 0, Exception $previous = NULL) {
79
+		if (version_compare(phpversion(), '5.3.0', '<')) {
80
+			parent::__construct($message, $code);
81 81
 		} else {
82
-			parent::__construct( $message, $code, $previous );
82
+			parent::__construct($message, $code, $previous);
83 83
 		}
84 84
 	}
85 85
 
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
 	 * @param $line
95 95
 	 * @return void
96 96
 	 */
97
-	public static function error_handler( $code, $message, $file, $line ) {
98
-		$type = EE_Error::error_type( $code );
97
+	public static function error_handler($code, $message, $file, $line) {
98
+		$type = EE_Error::error_type($code);
99 99
 		$site = site_url();
100
-		switch ( $site ) {
100
+		switch ($site) {
101 101
 			case 'http://ee4.eventespresso.com/' :
102 102
 			case 'http://ee4decaf.eventespresso.com/' :
103 103
 			case 'http://ee4hf.eventespresso.com/' :
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 				$to = '[email protected]';
111 111
 				break;
112 112
 			default :
113
-				$to = get_option( 'admin_email' );
113
+				$to = get_option('admin_email');
114 114
 		}
115
-		$subject = $type . ' ' . $message . ' in ' . EVENT_ESPRESSO_VERSION . ' on ' . site_url();
116
-		$msg = EE_Error::_format_error( $type, $message, $file, $line );
117
-		if ( function_exists( 'wp_mail' )) {
118
-			add_filter( 'wp_mail_content_type', array( 'EE_Error', 'set_content_type' ));
119
-			wp_mail( $to, $subject, $msg );
115
+		$subject = $type.' '.$message.' in '.EVENT_ESPRESSO_VERSION.' on '.site_url();
116
+		$msg = EE_Error::_format_error($type, $message, $file, $line);
117
+		if (function_exists('wp_mail')) {
118
+			add_filter('wp_mail_content_type', array('EE_Error', 'set_content_type'));
119
+			wp_mail($to, $subject, $msg);
120 120
 		}
121 121
 		echo '<div id="message" class="espresso-notices error"><p>';
122
-		echo $type . ': ' . $message . '<br />' . $file . ' line ' . $line;
122
+		echo $type.': '.$message.'<br />'.$file.' line '.$line;
123 123
 		echo '<br /></p></div>';
124 124
 	}
125 125
 
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 	 * @param $code
133 133
 	 * @return string
134 134
 	 */
135
-	public static function error_type( $code ) {
136
-		switch( $code ) {
135
+	public static function error_type($code) {
136
+		switch ($code) {
137 137
 			case E_ERROR: // 1 //
138 138
 			return 'E_ERROR';
139 139
 			case E_WARNING: // 2 //
@@ -179,8 +179,8 @@  discard block
 block discarded – undo
179 179
 	*/
180 180
 	public static function fatal_error_handler() {
181 181
 		$last_error = error_get_last();
182
-		if ( $last_error['type'] === E_ERROR ) {
183
-			EE_Error::error_handler( E_ERROR, $last_error['message'], $last_error['file'], $last_error['line'] );
182
+		if ($last_error['type'] === E_ERROR) {
183
+			EE_Error::error_handler(E_ERROR, $last_error['message'], $last_error['file'], $last_error['line']);
184 184
 		}
185 185
 	}
186 186
 
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @param $line
196 196
 	 * @return string
197 197
 	 */
198
-	private static function _format_error( $code, $message, $file, $line ) {
198
+	private static function _format_error($code, $message, $file, $line) {
199 199
 		$html  = "<table cellpadding='5'><thead bgcolor='#f8f8f8'><th>Item</th><th align='left'>Details</th></thead><tbody>";
200 200
 		$html .= "<tr valign='top'><td><b>Code</b></td><td>$code</td></tr>";
201 201
 		$html .= "<tr valign='top'><td><b>Error</b></td><td>$message</td></tr>";
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 	 * @param $content_type
214 214
 	 * @return string
215 215
 	 */
216
-	public static function set_content_type( $content_type ) {
216
+	public static function set_content_type($content_type) {
217 217
 		return 'text/html';
218 218
 	}
219 219
 
@@ -227,24 +227,24 @@  discard block
 block discarded – undo
227 227
 	*/
228 228
     public function get_error() {
229 229
 
230
-		if( apply_filters( 'FHEE__EE_Error__get_error__show_normal_exceptions', FALSE ) ){
230
+		if (apply_filters('FHEE__EE_Error__get_error__show_normal_exceptions', FALSE)) {
231 231
 			throw $this;
232 232
 		}
233 233
 		// get separate user and developer messages if they exist
234
-		$msg = explode( '||', $this->getMessage() );
234
+		$msg = explode('||', $this->getMessage());
235 235
 		$user_msg = $msg[0];
236
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
236
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
237 237
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
238 238
 
239 239
 		// add details to _all_exceptions array
240 240
 		$x_time = time();
241
-		self::$_all_exceptions[ $x_time ]['name'] 	= get_class( $this );
242
-		self::$_all_exceptions[ $x_time ]['file'] 		= $this->getFile();
243
-		self::$_all_exceptions[ $x_time ]['line'] 		= $this->getLine();
244
-		self::$_all_exceptions[ $x_time ]['msg'] 	= $msg;
245
-		self::$_all_exceptions[ $x_time ]['code'] 	= $this->getCode();
246
-		self::$_all_exceptions[ $x_time ]['trace'] 	= $this->getTrace();
247
-		self::$_all_exceptions[ $x_time ]['string'] 	= $this->getTraceAsString();
241
+		self::$_all_exceptions[$x_time]['name'] = get_class($this);
242
+		self::$_all_exceptions[$x_time]['file'] 		= $this->getFile();
243
+		self::$_all_exceptions[$x_time]['line'] 		= $this->getLine();
244
+		self::$_all_exceptions[$x_time]['msg'] = $msg;
245
+		self::$_all_exceptions[$x_time]['code'] = $this->getCode();
246
+		self::$_all_exceptions[$x_time]['trace'] 	= $this->getTrace();
247
+		self::$_all_exceptions[$x_time]['string'] = $this->getTraceAsString();
248 248
 		self::$_error_count++;
249 249
 
250 250
 		//add_action( 'shutdown', array( $this, 'display_errors' ));
@@ -261,12 +261,12 @@  discard block
 block discarded – undo
261 261
 	 * @param bool $check_stored
262 262
 	 * @return bool
263 263
 	 */
264
-    public static function has_error( $check_stored = false ){
264
+    public static function has_error($check_stored = false) {
265 265
 	    $has_error = self::$_error_count ? true : false;
266
-	    if ( $check_stored && ! $has_error ) {
267
-		    $notices = (array) get_option( 'ee_notices', array() );
268
-		    foreach ( $notices as $type => $notice ) {
269
-			    if ( $type === 'errors' && $notice ) {
266
+	    if ($check_stored && ! $has_error) {
267
+		    $notices = (array) get_option('ee_notices', array());
268
+		    foreach ($notices as $type => $notice) {
269
+			    if ($type === 'errors' && $notice) {
270 270
 				    return true;
271 271
 			    }
272 272
 		    }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 	*	@access public
282 282
 	*	@echo string
283 283
 	*/
284
-    public function display_errors(){
284
+    public function display_errors() {
285 285
 
286 286
 		$trace_details = '';
287 287
 
@@ -342,18 +342,18 @@  discard block
 block discarded – undo
342 342
 </style>
343 343
 <div id="ee-error-message" class="error">';
344 344
 
345
-		if ( ! WP_DEBUG ) {
345
+		if ( ! WP_DEBUG) {
346 346
 			$output .= '
347 347
 	<p>';
348 348
 		}
349 349
 
350 350
 		// cycle thru errors
351
-		foreach ( self::$_all_exceptions as $time => $ex ) {
351
+		foreach (self::$_all_exceptions as $time => $ex) {
352 352
 
353 353
 			// process trace info
354
-			if ( empty( $ex['trace'] )) {
354
+			if (empty($ex['trace'])) {
355 355
 
356
-	            $trace_details .= __( 'Sorry, but no trace information was available for this exception.', 'event_espresso' );
356
+	            $trace_details .= __('Sorry, but no trace information was available for this exception.', 'event_espresso');
357 357
 
358 358
 			} else {
359 359
 
@@ -368,50 +368,50 @@  discard block
 block discarded – undo
368 368
 					<th scope="col" align="left">Method( arguments )</th>
369 369
 				</tr>';
370 370
 
371
-				$last_on_stack = count( $ex['trace'] ) - 1;
371
+				$last_on_stack = count($ex['trace']) - 1;
372 372
 				// reverse array so that stack is in proper chronological order
373
-				$sorted_trace = array_reverse( $ex['trace'] );
373
+				$sorted_trace = array_reverse($ex['trace']);
374 374
 
375
-				foreach ( $sorted_trace as $nmbr => $trace ) {
375
+				foreach ($sorted_trace as $nmbr => $trace) {
376 376
 
377
-					$file = isset( $trace['file'] ) ? $trace['file'] : '' ;
378
-					$class = isset( $trace['class'] ) ? $trace['class'] : '';
379
-					$type = isset( $trace['type'] ) ? $trace['type'] : '';
380
-					$function = isset( $trace['function'] ) ? $trace['function'] : '';
381
-					$args = isset( $trace['args'] ) ? $this->_convert_args_to_string( $trace['args'] ) : '';
382
-					$line = isset( $trace['line'] ) ? $trace['line'] : '';
377
+					$file = isset($trace['file']) ? $trace['file'] : '';
378
+					$class = isset($trace['class']) ? $trace['class'] : '';
379
+					$type = isset($trace['type']) ? $trace['type'] : '';
380
+					$function = isset($trace['function']) ? $trace['function'] : '';
381
+					$args = isset($trace['args']) ? $this->_convert_args_to_string($trace['args']) : '';
382
+					$line = isset($trace['line']) ? $trace['line'] : '';
383 383
 					$zebra = $nmbr % 2 ? ' odd' : '';
384 384
 
385
-					if ( empty( $file ) && ! empty( $class )) {
386
-						$a = new ReflectionClass( $class );
385
+					if (empty($file) && ! empty($class)) {
386
+						$a = new ReflectionClass($class);
387 387
 						$file = $a->getFileName();
388
-						if ( empty( $line ) && ! empty( $function )) {
389
-							$b = new ReflectionMethod( $class, $function );
388
+						if (empty($line) && ! empty($function)) {
389
+							$b = new ReflectionMethod($class, $function);
390 390
 							$line = $b->getStartLine();
391 391
 						}
392 392
 					}
393 393
 
394
-					if ( $nmbr == $last_on_stack ) {
394
+					if ($nmbr == $last_on_stack) {
395 395
 						$file = $ex['file'] != '' ? $ex['file'] : $file;
396 396
 						$line = $ex['line'] != '' ? $ex['line'] : $line;
397
-						$error_code = self::generate_error_code ( $file, $trace['function'], $line );
397
+						$error_code = self::generate_error_code($file, $trace['function'], $line);
398 398
 					}
399 399
 
400
-					$nmbr_dsply = ! empty( $nmbr ) ? $nmbr : '&nbsp;';
401
-					$line_dsply = ! empty( $line ) ? $line : '&nbsp;';
402
-					$file_dsply = ! empty( $file ) ? $file : '&nbsp;';
403
-					$class_dsply = ! empty( $class ) ? $class : '&nbsp;';
404
-					$type_dsply = ! empty( $type ) ? $type : '&nbsp;';
405
-					$function_dsply = ! empty( $function ) ? $function : '&nbsp;';
406
-					$args_dsply = ! empty( $args ) ? '( ' . $args . ' )' : '';
400
+					$nmbr_dsply = ! empty($nmbr) ? $nmbr : '&nbsp;';
401
+					$line_dsply = ! empty($line) ? $line : '&nbsp;';
402
+					$file_dsply = ! empty($file) ? $file : '&nbsp;';
403
+					$class_dsply = ! empty($class) ? $class : '&nbsp;';
404
+					$type_dsply = ! empty($type) ? $type : '&nbsp;';
405
+					$function_dsply = ! empty($function) ? $function : '&nbsp;';
406
+					$args_dsply = ! empty($args) ? '( '.$args.' )' : '';
407 407
 
408 408
 		              $trace_details .= '
409 409
 					<tr>
410
-						<td align="right" class="' . $zebra . '">' . $nmbr_dsply . '</td>
411
-						<td align="right" class="' . $zebra . '">' . $line_dsply . '</td>
412
-						<td align="left" class="' . $zebra . '">' . $file_dsply . '</td>
413
-						<td align="left" class="' . $zebra . '">' . $class_dsply . '</td>
414
-						<td align="left" class="' . $zebra . '">' . $type_dsply . $function_dsply . $args_dsply . '</td>
410
+						<td align="right" class="' . $zebra.'">'.$nmbr_dsply.'</td>
411
+						<td align="right" class="' . $zebra.'">'.$line_dsply.'</td>
412
+						<td align="left" class="' . $zebra.'">'.$file_dsply.'</td>
413
+						<td align="left" class="' . $zebra.'">'.$class_dsply.'</td>
414
+						<td align="left" class="' . $zebra.'">'.$type_dsply.$function_dsply.$args_dsply.'</td>
415 415
 					</tr>';
416 416
 
417 417
 
@@ -426,9 +426,9 @@  discard block
 block discarded – undo
426 426
 			$ex['code'] = $ex['code'] ? $ex['code'] : $error_code;
427 427
 
428 428
 			// add generic non-identifying messages for non-privileged uesrs
429
-			if ( ! WP_DEBUG ) {
429
+			if ( ! WP_DEBUG) {
430 430
 
431
-				$output .= '<span class="ee-error-user-msg-spn">' . trim( $ex['msg'] )  . '</span> &nbsp; <sup>' . $ex['code'] . '</sup><br />';
431
+				$output .= '<span class="ee-error-user-msg-spn">'.trim($ex['msg']).'</span> &nbsp; <sup>'.$ex['code'].'</sup><br />';
432 432
 
433 433
 			} else {
434 434
 
@@ -436,24 +436,24 @@  discard block
 block discarded – undo
436 436
 				$output .= '
437 437
 		<div class="ee-error-dev-msg-dv">
438 438
 			<p class="ee-error-dev-msg-pg">
439
-				<strong class="ee-error-dev-msg-str">An ' . $ex['name'] . ' exception was thrown!</strong>  &nbsp; <span>code: ' . $ex['code'] . '</span><br />
440
-				<span class="big-text">"' . trim( $ex['msg'] ) . '"</span><br/>
441
-				<a id="display-ee-error-trace-' . self::$_error_count . $time . '" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-' . self::$_error_count . $time . '">
442
-					' . __( 'click to view backtrace and class/method details', 'event_espresso' ) . '
439
+				<strong class="ee-error-dev-msg-str">An ' . $ex['name'].' exception was thrown!</strong>  &nbsp; <span>code: '.$ex['code'].'</span><br />
440
+				<span class="big-text">"' . trim($ex['msg']).'"</span><br/>
441
+				<a id="display-ee-error-trace-' . self::$_error_count.$time.'" class="display-ee-error-trace-lnk small-text" rel="ee-error-trace-'.self::$_error_count.$time.'">
442
+					' . __('click to view backtrace and class/method details', 'event_espresso').'
443 443
 				</a><br />
444 444
 				<span class="small-text lt-grey-text">'.$ex['file'].' &nbsp; ( line no: '.$ex['line'].' )</span>
445 445
 			</p>
446
-			<div id="ee-error-trace-' . self::$_error_count . $time . '-dv" class="ee-error-trace-dv" style="display: none;">
446
+			<div id="ee-error-trace-' . self::$_error_count.$time.'-dv" class="ee-error-trace-dv" style="display: none;">
447 447
 				' . $trace_details;
448 448
 
449
-				if ( ! empty( $class )) {
449
+				if ( ! empty($class)) {
450 450
 					$output .= '
451 451
 				<div style="padding:3px; margin:0 0 1em; border:1px solid #666; background:#fff; border-radius:3px;">
452 452
 					<div style="padding:1em 2em; border:1px solid #666; background:#f9f9f9;">
453 453
 						<h3>Class Details</h3>';
454
-						$a = new ReflectionClass( $class );
454
+						$a = new ReflectionClass($class);
455 455
 						$output .= '
456
-						<pre>' . $a . '</pre>
456
+						<pre>' . $a.'</pre>
457 457
 					</div>
458 458
 				</div>';
459 459
 				}
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
 
466 466
 			}
467 467
 
468
-			$this->write_to_error_log( $time, $ex );
468
+			$this->write_to_error_log($time, $ex);
469 469
 
470 470
 		}
471 471
 
472 472
 		// remove last linebreak
473
-		$output = substr( $output, 0, ( count( $output ) - 7 ));
473
+		$output = substr($output, 0, (count($output) - 7));
474 474
 
475
-		if ( ! WP_DEBUG ) {
475
+		if ( ! WP_DEBUG) {
476 476
 			$output .= '
477 477
 	</p>';
478 478
 		}
@@ -480,10 +480,10 @@  discard block
 block discarded – undo
480 480
 		$output .= '
481 481
 </div>';
482 482
 
483
-		$output .= self::_print_scripts( TRUE );
483
+		$output .= self::_print_scripts(TRUE);
484 484
 
485
-		if ( defined( 'DOING_AJAX' )) {
486
-			echo json_encode( array( 'error' => $output ));
485
+		if (defined('DOING_AJAX')) {
486
+			echo json_encode(array('error' => $output));
487 487
 			exit();
488 488
 		}
489 489
 
@@ -503,29 +503,29 @@  discard block
 block discarded – undo
503 503
 	*	@ param array $arguments
504 504
 	*	@ return string
505 505
 	*/
506
-	private function _convert_args_to_string ( $arguments = array(), $array = FALSE ) {
506
+	private function _convert_args_to_string($arguments = array(), $array = FALSE) {
507 507
 
508 508
 		$arg_string = '';
509
-		if ( ! empty( $arguments )) {
509
+		if ( ! empty($arguments)) {
510 510
 
511 511
 			$args = array();
512 512
 
513
-			foreach ( $arguments as $arg ) {
513
+			foreach ($arguments as $arg) {
514 514
 
515
-				if ( ! empty( $arg )) {
515
+				if ( ! empty($arg)) {
516 516
 
517
-					if ( is_string( $arg )) {
518
-						$args[] = " '" . $arg . "'";
519
-					} elseif ( is_array( $arg )) {
520
-						$args[] = 'ARRAY(' . $this->_convert_args_to_string( $arg, TRUE );
521
-					} elseif ( is_null( $arg )) {
517
+					if (is_string($arg)) {
518
+						$args[] = " '".$arg."'";
519
+					} elseif (is_array($arg)) {
520
+						$args[] = 'ARRAY('.$this->_convert_args_to_string($arg, TRUE);
521
+					} elseif (is_null($arg)) {
522 522
 						$args[] = ' NULL';
523
-					} elseif ( is_bool( $arg )) {
524
-						$args[] = ( $arg ) ? ' TRUE' : ' FALSE';
525
-					} elseif ( is_object( $arg )) {
526
-						$args[] = ' OBJECT ' . get_class( $arg );
527
-					} elseif ( is_resource( $arg )) {
528
-						$args[] = get_resource_type( $arg );
523
+					} elseif (is_bool($arg)) {
524
+						$args[] = ($arg) ? ' TRUE' : ' FALSE';
525
+					} elseif (is_object($arg)) {
526
+						$args[] = ' OBJECT '.get_class($arg);
527
+					} elseif (is_resource($arg)) {
528
+						$args[] = get_resource_type($arg);
529 529
 					} else {
530 530
 						$args[] = $arg;
531 531
 					}
@@ -533,9 +533,9 @@  discard block
 block discarded – undo
533 533
 				}
534 534
 
535 535
 			}
536
-			$arg_string = implode( ', ', $args );
536
+			$arg_string = implode(', ', $args);
537 537
 		}
538
-		if ( $array ) {
538
+		if ($array) {
539 539
 			$arg_string .= ' )';
540 540
 		}
541 541
 		return $arg_string;
@@ -555,8 +555,8 @@  discard block
 block discarded – undo
555 555
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
556 556
 	* 	@return 		void
557 557
 	*/
558
-	public static function add_error( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
559
-		self::_add_notice ( 'errors', $msg, $file, $func, $line );
558
+	public static function add_error($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
559
+		self::_add_notice('errors', $msg, $file, $func, $line);
560 560
 		self::$_error_count++;
561 561
 	}
562 562
 
@@ -569,11 +569,11 @@  discard block
 block discarded – undo
569 569
 	 * @param string $line
570 570
 	 * @throws EE_Error
571 571
 	 */
572
-	public static function throw_exception_if_debugging( $msg = null, $file = null, $func = null, $line = null ) {
573
-		if( WP_DEBUG ) {
574
-			throw new EE_Error( $msg );
575
-		} else  {
576
-			EE_Error::add_error( $msg, $file, $func, $line );
572
+	public static function throw_exception_if_debugging($msg = null, $file = null, $func = null, $line = null) {
573
+		if (WP_DEBUG) {
574
+			throw new EE_Error($msg);
575
+		} else {
576
+			EE_Error::add_error($msg, $file, $func, $line);
577 577
 		}
578 578
 	}
579 579
 
@@ -591,8 +591,8 @@  discard block
 block discarded – undo
591 591
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
592 592
 	* 	@return 		void
593 593
 	*/
594
-	public static function add_success( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
595
-		self::_add_notice ( 'success', $msg, $file, $func, $line );
594
+	public static function add_success($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
595
+		self::_add_notice('success', $msg, $file, $func, $line);
596 596
 	}
597 597
 
598 598
 
@@ -609,8 +609,8 @@  discard block
 block discarded – undo
609 609
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
610 610
 	* 	@return 		void
611 611
 	*/
612
-	public static function add_attention( $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
613
-		self::_add_notice ( 'attention', $msg, $file, $func, $line );
612
+	public static function add_attention($msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
613
+		self::_add_notice('attention', $msg, $file, $func, $line);
614 614
 	}
615 615
 
616 616
 
@@ -628,12 +628,12 @@  discard block
 block discarded – undo
628 628
 	* 	@param		string		$line	the line number where the error occurred - just use __LINE__
629 629
 	* 	@return 		void
630 630
 	*/
631
-	private static function _add_notice( $type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL ) {
632
-		if ( empty( $msg )) {
631
+	private static function _add_notice($type = 'success', $msg = NULL, $file = NULL, $func = NULL, $line = NULL) {
632
+		if (empty($msg)) {
633 633
 			EE_Error::doing_it_wrong(
634
-				'EE_Error::add_' . $type . '()',
634
+				'EE_Error::add_'.$type.'()',
635 635
 				sprintf(
636
-					__( 'Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso' ),
636
+					__('Notifications are not much use without a message! Please add a message to the EE_Error::add_%s() call made in %s on line %d', 'event_espresso'),
637 637
 					$type,
638 638
 					$file,
639 639
 					$line
@@ -641,17 +641,17 @@  discard block
 block discarded – undo
641 641
 				EVENT_ESPRESSO_VERSION
642 642
 			);
643 643
 		}
644
-		if ( $type == 'errors' && ( empty( $file ) || empty( $func ) || empty( $line ))) {
644
+		if ($type == 'errors' && (empty($file) || empty($func) || empty($line))) {
645 645
 			EE_Error::doing_it_wrong(
646 646
 				'EE_Error::add_error()',
647
-				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso' ),
647
+				__('You need to provide the file name, function name, and line number that the error occurred on in order to better assist with debugging.', 'event_espresso'),
648 648
 				EVENT_ESPRESSO_VERSION
649 649
 			);
650 650
 		}
651 651
 		// get separate user and developer messages if they exist
652
-		$msg = explode( '||', $msg );
652
+		$msg = explode('||', $msg);
653 653
 		$user_msg = $msg[0];
654
-		$dev_msg = isset( $msg[1] ) ? $msg[1] : $msg[0];
654
+		$dev_msg = isset($msg[1]) ? $msg[1] : $msg[0];
655 655
 		/**
656 656
 		 * Do an action so other code can be triggered when a notice is created
657 657
 		 * @param string $type can be 'errors', 'attention', or 'success'
@@ -661,22 +661,22 @@  discard block
 block discarded – undo
661 661
 		 * @param string $func function where error was generated
662 662
 		 * @param string $line line where error was generated
663 663
 		 */
664
-		do_action( 'AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line );
664
+		do_action('AHEE__EE_Error___add_notice', $type, $user_msg, $dev_msg, $file, $func, $line);
665 665
 		$msg = WP_DEBUG ? $dev_msg : $user_msg;
666 666
 		// add notice if message exists
667
-		if ( ! empty( $msg )) {
667
+		if ( ! empty($msg)) {
668 668
 			// get error code
669
-			$notice_code = EE_Error::generate_error_code( $file, $func, $line );
670
-			if ( WP_DEBUG && $type == 'errors' ) {
671
-				$msg .= '<br/><span class="tiny-text">' . $notice_code . '</span>';
669
+			$notice_code = EE_Error::generate_error_code($file, $func, $line);
670
+			if (WP_DEBUG && $type == 'errors') {
671
+				$msg .= '<br/><span class="tiny-text">'.$notice_code.'</span>';
672 672
 			}
673 673
 			// add notice. Index by code if it's not blank
674
-			if( $notice_code ) {
675
-				self::$_espresso_notices[ $type ][ $notice_code ] = $msg;
674
+			if ($notice_code) {
675
+				self::$_espresso_notices[$type][$notice_code] = $msg;
676 676
 			} else {
677
-				self::$_espresso_notices[ $type ][] = $msg;
677
+				self::$_espresso_notices[$type][] = $msg;
678 678
 			}
679
-			add_action( 'wp_footer', array( 'EE_Error', 'enqueue_error_scripts' ), 1 );
679
+			add_action('wp_footer', array('EE_Error', 'enqueue_error_scripts'), 1);
680 680
 		}
681 681
 
682 682
 	}
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
 	*	@access private
731 731
 	*	@return void
732 732
 	*/
733
-	public static function reset_notices(){
733
+	public static function reset_notices() {
734 734
     	self::$_espresso_notices['success'] = FALSE;
735 735
     	self::$_espresso_notices['attention'] = FALSE;
736 736
     	self::$_espresso_notices['errors'] = FALSE;
@@ -743,14 +743,14 @@  discard block
 block discarded – undo
743 743
 	*	@access public
744 744
 	*	@return int
745 745
 	*/
746
-    public static function has_notices(){
746
+    public static function has_notices() {
747 747
 		$has_notices = 0;
748 748
 		// check for success messages
749
-		$has_notices = self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] ) ? 3 : $has_notices;
749
+		$has_notices = self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success']) ? 3 : $has_notices;
750 750
 		// check for attention messages
751
-		$has_notices = self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ? 2 : $has_notices;
751
+		$has_notices = self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention']) ? 2 : $has_notices;
752 752
 		// check for error messages
753
-		$has_notices = self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ? 1 : $has_notices;
753
+		$has_notices = self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors']) ? 1 : $has_notices;
754 754
 		return $has_notices;
755 755
 	}
756 756
 
@@ -765,9 +765,9 @@  discard block
 block discarded – undo
765 765
 	 */
766 766
 	public static function get_vanilla_notices() {
767 767
 		return array(
768
-			'success' => isset( self::$_espresso_notices['success'] ) ? self::$_espresso_notices['success'] : array(),
769
-			'attention' => isset( self::$_espresso_notices['attention'] )  ? self::$_espresso_notices['attention'] : array(),
770
-			'errors' => isset( self::$_espresso_notices['errors'] ) ? self::$_espresso_notices['errors'] : array(),
768
+			'success' => isset(self::$_espresso_notices['success']) ? self::$_espresso_notices['success'] : array(),
769
+			'attention' => isset(self::$_espresso_notices['attention']) ? self::$_espresso_notices['attention'] : array(),
770
+			'errors' => isset(self::$_espresso_notices['errors']) ? self::$_espresso_notices['errors'] : array(),
771 771
 		);
772 772
 	}
773 773
 
@@ -783,8 +783,8 @@  discard block
 block discarded – undo
783 783
 	* 	@param		boolean		$remove_empty		whether or not to unset empty messages
784 784
 	* 	@return 		array
785 785
 	*/
786
-	public static function get_notices( $format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE ) {
787
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
786
+	public static function get_notices($format_output = TRUE, $save_to_transient = FALSE, $remove_empty = TRUE) {
787
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
788 788
 
789 789
 		$success_messages = '';
790 790
 		$attention_messages = '';
@@ -794,44 +794,44 @@  discard block
 block discarded – undo
794 794
 		// EEH_Debug_Tools::printr( self::$_espresso_notices, 'espresso_notices  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
795 795
 
796 796
 		// either save notices to the db
797
-		if ( $save_to_transient ) {
798
-			update_option( 'ee_notices', self::$_espresso_notices );
797
+		if ($save_to_transient) {
798
+			update_option('ee_notices', self::$_espresso_notices);
799 799
 			return;
800 800
 		}
801 801
 		// grab any notices that have been previously saved
802
-		if ( $notices = get_option( 'ee_notices', FALSE )) {
803
-			foreach ( $notices as $type => $notice ) {
804
-				if ( is_array( $notice ) && ! empty( $notice )) {
802
+		if ($notices = get_option('ee_notices', FALSE)) {
803
+			foreach ($notices as $type => $notice) {
804
+				if (is_array($notice) && ! empty($notice)) {
805 805
 					// make sure that existing notice type is an array
806
-					self::$_espresso_notices[ $type ] =  is_array( self::$_espresso_notices[ $type ] ) && ! empty( self::$_espresso_notices[ $type ] ) ? self::$_espresso_notices[ $type ] : array();
806
+					self::$_espresso_notices[$type] = is_array(self::$_espresso_notices[$type]) && ! empty(self::$_espresso_notices[$type]) ? self::$_espresso_notices[$type] : array();
807 807
 					// merge stored notices with any newly created ones
808
-					self::$_espresso_notices[ $type ] = array_merge( self::$_espresso_notices[ $type ], $notice );
808
+					self::$_espresso_notices[$type] = array_merge(self::$_espresso_notices[$type], $notice);
809 809
 					$print_scripts = TRUE;
810 810
 				}
811 811
 			}
812 812
 			// now clear any stored notices
813
-			update_option( 'ee_notices', FALSE );
813
+			update_option('ee_notices', FALSE);
814 814
 		}
815 815
 
816 816
 		// check for success messages
817
-		if ( self::$_espresso_notices['success'] && ! empty(  self::$_espresso_notices['success'] )) {
817
+		if (self::$_espresso_notices['success'] && ! empty(self::$_espresso_notices['success'])) {
818 818
 			// combine messages
819
-			$success_messages .= implode( self::$_espresso_notices['success'], '<br />' );
819
+			$success_messages .= implode(self::$_espresso_notices['success'], '<br />');
820 820
 			$print_scripts = TRUE;
821 821
 		}
822 822
 
823 823
 		// check for attention messages
824
-		if ( self::$_espresso_notices['attention'] && ! empty(  self::$_espresso_notices['attention'] ) ) {
824
+		if (self::$_espresso_notices['attention'] && ! empty(self::$_espresso_notices['attention'])) {
825 825
 			// combine messages
826
-			$attention_messages .= implode( self::$_espresso_notices['attention'], '<br />' );
826
+			$attention_messages .= implode(self::$_espresso_notices['attention'], '<br />');
827 827
 			$print_scripts = TRUE;
828 828
 		}
829 829
 
830 830
 		// check for error messages
831
-		if ( self::$_espresso_notices['errors'] && ! empty(  self::$_espresso_notices['errors'] ) ) {
832
-			$error_messages .= count( self::$_espresso_notices['errors'] ) > 1 ? __( 'The following errors have occurred:<br />', 'event_espresso' ) : __( 'An error has occurred:<br />', 'event_espresso' );
831
+		if (self::$_espresso_notices['errors'] && ! empty(self::$_espresso_notices['errors'])) {
832
+			$error_messages .= count(self::$_espresso_notices['errors']) > 1 ? __('The following errors have occurred:<br />', 'event_espresso') : __('An error has occurred:<br />', 'event_espresso');
833 833
 			// combine messages
834
-			$error_messages .= implode( self::$_espresso_notices['errors'], '<br />' );
834
+			$error_messages .= implode(self::$_espresso_notices['errors'], '<br />');
835 835
 			$print_scripts = TRUE;
836 836
 		}
837 837
 
@@ -845,21 +845,21 @@  discard block
 block discarded – undo
845 845
 				$css_id = is_admin() ? 'message' : 'espresso-notices-success';
846 846
 				$css_class = is_admin() ? 'updated fade' : 'success fade-away';
847 847
 				//showMessage( $success_messages );
848
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $success_messages . '</p>' . $close . '</div>';
848
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$success_messages.'</p>'.$close.'</div>';
849 849
 			}
850 850
 
851 851
 			if ($attention_messages != '') {
852 852
 				$css_id = is_admin() ? 'message' : 'espresso-notices-attention';
853 853
 				$css_class = is_admin() ? 'updated ee-notices-attention' : 'attention fade-away';
854 854
 				//showMessage( $error_messages, TRUE );
855
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $attention_messages . '</p>' . $close . '</div>';
855
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$attention_messages.'</p>'.$close.'</div>';
856 856
 			}
857 857
 
858 858
 			if ($error_messages != '') {
859 859
 				$css_id = is_admin() ? 'message' : 'espresso-notices-error';
860 860
 				$css_class = is_admin() ? 'error' : 'error fade-away';
861 861
 				//showMessage( $error_messages, TRUE );
862
-				$notices .= '<div id="' . $css_id . '" class="espresso-notices ' . $css_class . '" style="display:none;"><p>' . $error_messages . '</p>' . $close . '</div>';
862
+				$notices .= '<div id="'.$css_id.'" class="espresso-notices '.$css_class.'" style="display:none;"><p>'.$error_messages.'</p>'.$close.'</div>';
863 863
 			}
864 864
 
865 865
 			$notices .= '</div>';
@@ -872,7 +872,7 @@  discard block
 block discarded – undo
872 872
 					'errors' => $error_messages
873 873
 			);
874 874
 
875
-			if ( $remove_empty ) {
875
+			if ($remove_empty) {
876 876
 				// remove empty notices
877 877
 				foreach ($notices as $type => $notice) {
878 878
 					if (empty($notice)) {
@@ -882,7 +882,7 @@  discard block
 block discarded – undo
882 882
 			}
883 883
 		}
884 884
 
885
-		if ( $print_scripts ) {
885
+		if ($print_scripts) {
886 886
 			self::_print_scripts();
887 887
 		}
888 888
 
@@ -902,17 +902,17 @@  discard block
 block discarded – undo
902 902
 	* 	@param bool $force_update allows one to enforce the reappearance of a persistent message.
903 903
 	* 	@return 		void
904 904
 	*/
905
-	public static function add_persistent_admin_notice( $pan_name = '', $pan_message, $force_update = FALSE ) {
906
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
907
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
905
+	public static function add_persistent_admin_notice($pan_name = '', $pan_message, $force_update = FALSE) {
906
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
907
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
908 908
 			//maybe initialize persistent_admin_notices
909
-			if ( empty( $persistent_admin_notices )) {
910
-				add_option( 'ee_pers_admin_notices', array(), '', 'no' );
909
+			if (empty($persistent_admin_notices)) {
910
+				add_option('ee_pers_admin_notices', array(), '', 'no');
911 911
 			}
912
-			$pan_name = sanitize_key( $pan_name );
913
-			if ( ! array_key_exists( $pan_name, $persistent_admin_notices ) || $force_update ) {
914
-				$persistent_admin_notices[ $pan_name ] = $pan_message;
915
-				update_option( 'ee_pers_admin_notices', $persistent_admin_notices );
912
+			$pan_name = sanitize_key($pan_name);
913
+			if ( ! array_key_exists($pan_name, $persistent_admin_notices) || $force_update) {
914
+				$persistent_admin_notices[$pan_name] = $pan_message;
915
+				update_option('ee_pers_admin_notices', $persistent_admin_notices);
916 916
 			}
917 917
 		}
918 918
 	}
@@ -928,34 +928,34 @@  discard block
 block discarded – undo
928 928
 	 * @param bool          $return_immediately
929 929
 	 * @return        void
930 930
 	 */
931
-	public static function dismiss_persistent_admin_notice( $pan_name = '', $purge = FALSE, $return_immediately = FALSE ) {
932
-		$pan_name = EE_Registry::instance()->REQ->is_set( 'ee_nag_notice' ) ? EE_Registry::instance()->REQ->get( 'ee_nag_notice' ) : $pan_name;
933
-		if ( ! empty( $pan_name )) {
934
-			$persistent_admin_notices = get_option( 'ee_pers_admin_notices', array() );
931
+	public static function dismiss_persistent_admin_notice($pan_name = '', $purge = FALSE, $return_immediately = FALSE) {
932
+		$pan_name = EE_Registry::instance()->REQ->is_set('ee_nag_notice') ? EE_Registry::instance()->REQ->get('ee_nag_notice') : $pan_name;
933
+		if ( ! empty($pan_name)) {
934
+			$persistent_admin_notices = get_option('ee_pers_admin_notices', array());
935 935
 			// check if notice we wish to dismiss is actually in the $persistent_admin_notices array
936
-			if ( is_array( $persistent_admin_notices ) && isset( $persistent_admin_notices[ $pan_name ] )) {
936
+			if (is_array($persistent_admin_notices) && isset($persistent_admin_notices[$pan_name])) {
937 937
 				// completely delete nag notice, or just NULL message so that it can NOT be added again ?
938
-				if ( $purge ) {
939
-					unset( $persistent_admin_notices[ $pan_name ] );
938
+				if ($purge) {
939
+					unset($persistent_admin_notices[$pan_name]);
940 940
 				} else {
941
-					$persistent_admin_notices[ $pan_name ] = NULL;
941
+					$persistent_admin_notices[$pan_name] = NULL;
942 942
 				}
943
-				if ( update_option( 'ee_pers_admin_notices', $persistent_admin_notices ) === FALSE ) {
944
-					EE_Error::add_error( sprintf( __( 'The persistent admin notice for "%s" could not be deleted.', 'event_espresso' ), $pan_name ), __FILE__, __FUNCTION__, __LINE__ );
943
+				if (update_option('ee_pers_admin_notices', $persistent_admin_notices) === FALSE) {
944
+					EE_Error::add_error(sprintf(__('The persistent admin notice for "%s" could not be deleted.', 'event_espresso'), $pan_name), __FILE__, __FUNCTION__, __LINE__);
945 945
 				}
946 946
 			}
947 947
 		}
948
-		if ( $return_immediately ) {
948
+		if ($return_immediately) {
949 949
 			return;
950
-		} else if ( EE_Registry::instance()->REQ->ajax ) {
950
+		} else if (EE_Registry::instance()->REQ->ajax) {
951 951
 			// grab any notices and concatenate into string
952
-			echo json_encode( array( 'errors' => implode( '<br />', EE_Error::get_notices( FALSE ))));
952
+			echo json_encode(array('errors' => implode('<br />', EE_Error::get_notices(FALSE))));
953 953
 			exit();
954 954
 		} else {
955 955
 			// save errors to a transient to be displayed on next request (after redirect)
956
-			EE_Error::get_notices( FALSE, TRUE );
957
-			$return_url = EE_Registry::instance()->REQ->is_set( 'return_url' ) ? EE_Registry::instance()->REQ->get( 'return_url' ) : '';
958
-			wp_safe_redirect( urldecode( $return_url ));
956
+			EE_Error::get_notices(FALSE, TRUE);
957
+			$return_url = EE_Registry::instance()->REQ->is_set('return_url') ? EE_Registry::instance()->REQ->get('return_url') : '';
958
+			wp_safe_redirect(urldecode($return_url));
959 959
 		}
960 960
 	}
961 961
 
@@ -970,20 +970,20 @@  discard block
 block discarded – undo
970 970
 	 * @param  string $return_url  URL to go back to after nag notice is dismissed
971 971
 	 * @return string
972 972
 	 */
973
-	public static function display_persistent_admin_notices( $pan_name = '', $pan_message = '', $return_url = '' ) {
974
-		if ( ! empty( $pan_name ) && ! empty( $pan_message )) {
973
+	public static function display_persistent_admin_notices($pan_name = '', $pan_message = '', $return_url = '') {
974
+		if ( ! empty($pan_name) && ! empty($pan_message)) {
975 975
 			$args = array(
976 976
 				'nag_notice' => $pan_name,
977
-				'return_url' => urlencode( $return_url ),
977
+				'return_url' => urlencode($return_url),
978 978
 				'ajax_url' => WP_AJAX_URL,
979
-				'unknown_error' => __( 'An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso' )
979
+				'unknown_error' => __('An unknown error has occurred on the server while attempting to dismiss this notice.', 'event_espresso')
980 980
 			);
981
-			wp_localize_script( 'espresso_core', 'ee_dismiss', $args );
981
+			wp_localize_script('espresso_core', 'ee_dismiss', $args);
982 982
 			return '
983
-			<div id="' . $pan_name . '" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
-				<p>' . $pan_message . '</p>
985
-				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name . '">
986
-					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__( 'Dismiss', 'event_espresso' ) .'
983
+			<div id="' . $pan_name.'" class="espresso-notices updated ee-nag-notice clearfix" style="border-left: 4px solid #fcb93c;">
984
+				<p>' . $pan_message.'</p>
985
+				<a class="dismiss-ee-nag-notice hide-if-no-js" style="float: right; cursor: pointer; text-decoration:none;" rel="' . $pan_name.'">
986
+					<span class="dashicons dashicons-dismiss" style="position:relative; top:-1px; margin-right:.25em;"></span>'.__('Dismiss', 'event_espresso').'
987 987
 				</a>
988 988
 				<div style="clear:both;"></div>
989 989
 			</div>';
@@ -1000,24 +1000,24 @@  discard block
 block discarded – undo
1000 1000
 	 * @param string $return_url
1001 1001
 	 * @return    array
1002 1002
 	 */
1003
-	public static function get_persistent_admin_notices( $return_url = '' ) {
1003
+	public static function get_persistent_admin_notices($return_url = '') {
1004 1004
 		$notices = '';
1005 1005
 		// check for persistent admin notices
1006 1006
 		//filter the list though so plugins can notify the admin in a different way if they want
1007 1007
 		$persistent_admin_notices = apply_filters(
1008 1008
 			'FHEE__EE_Error__get_persistent_admin_notices',
1009
-			get_option( 'ee_pers_admin_notices', FALSE ),
1009
+			get_option('ee_pers_admin_notices', FALSE),
1010 1010
 			'ee_pers_admin_notices',
1011 1011
 			$return_url
1012 1012
 		);
1013
-		if ( $persistent_admin_notices ) {
1013
+		if ($persistent_admin_notices) {
1014 1014
 			// load scripts
1015
-			wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
1016
-			wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE );
1017
-			wp_enqueue_script( 'ee_error_js' );
1015
+			wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
1016
+			wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, TRUE);
1017
+			wp_enqueue_script('ee_error_js');
1018 1018
 			// and display notices
1019
-			foreach( $persistent_admin_notices as $pan_name => $pan_message ) {
1020
-				$notices .= self::display_persistent_admin_notices( $pan_name, $pan_message, $return_url );
1019
+			foreach ($persistent_admin_notices as $pan_name => $pan_message) {
1020
+				$notices .= self::display_persistent_admin_notices($pan_name, $pan_message, $return_url);
1021 1021
 			}
1022 1022
 		}
1023 1023
 		return $notices;
@@ -1032,26 +1032,26 @@  discard block
 block discarded – undo
1032 1032
 	 * @param 	bool $force_print
1033 1033
 	 * @return 	void
1034 1034
 	 */
1035
-	private static function _print_scripts( $force_print = FALSE ) {
1036
-		if (( did_action( 'admin_enqueue_scripts' ) || did_action( 'wp_enqueue_scripts' )) && ! $force_print ) {
1037
-			if ( wp_script_is( 'ee_error_js', 'enqueued' )) {
1035
+	private static function _print_scripts($force_print = FALSE) {
1036
+		if ((did_action('admin_enqueue_scripts') || did_action('wp_enqueue_scripts')) && ! $force_print) {
1037
+			if (wp_script_is('ee_error_js', 'enqueued')) {
1038 1038
 				return;
1039
-			} else if ( wp_script_is( 'ee_error_js', 'registered' )) {
1040
-				add_filter( 'FHEE_load_css', '__return_true' );
1041
-				add_filter( 'FHEE_load_js', '__return_true' );
1042
-				wp_enqueue_script( 'ee_error_js' );
1043
-				wp_localize_script( 'ee_error_js','ee_settings', array( 'wp_debug'=>WP_DEBUG ));
1039
+			} else if (wp_script_is('ee_error_js', 'registered')) {
1040
+				add_filter('FHEE_load_css', '__return_true');
1041
+				add_filter('FHEE_load_js', '__return_true');
1042
+				wp_enqueue_script('ee_error_js');
1043
+				wp_localize_script('ee_error_js', 'ee_settings', array('wp_debug'=>WP_DEBUG));
1044 1044
 			}
1045 1045
 		} else {
1046 1046
 			return '
1047 1047
 <script>
1048 1048
 /* <![CDATA[ */
1049
-var ee_settings = {"wp_debug":"' . WP_DEBUG . '"};
1049
+var ee_settings = {"wp_debug":"' . WP_DEBUG.'"};
1050 1050
 /* ]]> */
1051 1051
 </script>
1052
-<script src="' . includes_url() . 'js/jquery/jquery.js" type="text/javascript"></script>
1053
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1054
-<script src="' . EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js' . '?ver=' . espresso_version() . '" type="text/javascript"></script>
1052
+<script src="' . includes_url().'js/jquery/jquery.js" type="text/javascript"></script>
1053
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1054
+<script src="' . EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js'.'?ver='.espresso_version().'" type="text/javascript"></script>
1055 1055
 ';
1056 1056
 
1057 1057
 		}
@@ -1085,11 +1085,11 @@  discard block
 block discarded – undo
1085 1085
 	*	@param string $line
1086 1086
 	*	@return string
1087 1087
 	*/
1088
-	public static function generate_error_code ( $file = '', $func = '', $line = '' ) {
1089
-		$file = explode( '.', basename( $file ));
1090
-		$error_code = ! empty( $file[0] ) ? $file[0] : '';
1091
-		$error_code .= ! empty( $func ) ? ' - ' . $func : '';
1092
-		$error_code .= ! empty( $line ) ? ' - ' . $line : '';
1088
+	public static function generate_error_code($file = '', $func = '', $line = '') {
1089
+		$file = explode('.', basename($file));
1090
+		$error_code = ! empty($file[0]) ? $file[0] : '';
1091
+		$error_code .= ! empty($func) ? ' - '.$func : '';
1092
+		$error_code .= ! empty($line) ? ' - '.$line : '';
1093 1093
 		return $error_code;
1094 1094
 	}
1095 1095
 
@@ -1105,36 +1105,36 @@  discard block
 block discarded – undo
1105 1105
 	*	@ param object $ex
1106 1106
 	*	@ return void
1107 1107
 	*/
1108
-	public function write_to_error_log ( $time = FALSE, $ex = FALSE, $clear = FALSE ) {
1108
+	public function write_to_error_log($time = FALSE, $ex = FALSE, $clear = FALSE) {
1109 1109
 
1110
-		if ( ! $ex ) {
1110
+		if ( ! $ex) {
1111 1111
 			return;
1112 1112
 		}
1113 1113
 
1114
-		if ( ! $time ) {
1114
+		if ( ! $time) {
1115 1115
 			$time = time();
1116 1116
 		}
1117 1117
 
1118
-		$exception_log = '----------------------------------------------------------------------------------------' . PHP_EOL;
1119
-		$exception_log .= '[' . date( 'Y-m-d H:i:s', $time ) . ']  Exception Details' . PHP_EOL;
1120
-		$exception_log .= 'Message: ' . $ex['msg'] . PHP_EOL;
1121
-		$exception_log .= 'Code: '. $ex['code'] . PHP_EOL;
1122
-		$exception_log .= 'File: '. $ex['file'] . PHP_EOL;
1123
-		$exception_log .= 'Line No: ' . $ex['line'] . PHP_EOL;
1124
-		$exception_log .= 'Stack trace: ' . PHP_EOL;
1125
-		$exception_log .= $ex['string'] . PHP_EOL;
1126
-		$exception_log .= '----------------------------------------------------------------------------------------' . PHP_EOL;
1118
+		$exception_log = '----------------------------------------------------------------------------------------'.PHP_EOL;
1119
+		$exception_log .= '['.date('Y-m-d H:i:s', $time).']  Exception Details'.PHP_EOL;
1120
+		$exception_log .= 'Message: '.$ex['msg'].PHP_EOL;
1121
+		$exception_log .= 'Code: '.$ex['code'].PHP_EOL;
1122
+		$exception_log .= 'File: '.$ex['file'].PHP_EOL;
1123
+		$exception_log .= 'Line No: '.$ex['line'].PHP_EOL;
1124
+		$exception_log .= 'Stack trace: '.PHP_EOL;
1125
+		$exception_log .= $ex['string'].PHP_EOL;
1126
+		$exception_log .= '----------------------------------------------------------------------------------------'.PHP_EOL;
1127 1127
 
1128 1128
 		try {
1129
-			EEH_File::ensure_file_exists_and_is_writable( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file );
1130
-			EEH_File::add_htaccess_deny_from_all( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' );
1131
-			if ( ! $clear ) {
1129
+			EEH_File::ensure_file_exists_and_is_writable(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file);
1130
+			EEH_File::add_htaccess_deny_from_all(EVENT_ESPRESSO_UPLOAD_DIR.'logs');
1131
+			if ( ! $clear) {
1132 1132
 				//get existing log file and append new log info
1133
-				$exception_log = EEH_File::get_file_contents( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file ) . $exception_log;
1133
+				$exception_log = EEH_File::get_file_contents(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file).$exception_log;
1134 1134
 			}
1135
-			EEH_File::write_to_file( EVENT_ESPRESSO_UPLOAD_DIR . 'logs' . DS . self::$_exception_log_file, $exception_log );
1136
-		} catch( EE_Error $e ){
1137
-			EE_Error::add_error( sprintf( __(  'Event Espresso error logging could not be setup because: %s', 'event_espresso' ), $e->getMessage() ));
1135
+			EEH_File::write_to_file(EVENT_ESPRESSO_UPLOAD_DIR.'logs'.DS.self::$_exception_log_file, $exception_log);
1136
+		} catch (EE_Error $e) {
1137
+			EE_Error::add_error(sprintf(__('Event Espresso error logging could not be setup because: %s', 'event_espresso'), $e->getMessage()));
1138 1138
 			return;
1139 1139
 		}
1140 1140
 
@@ -1170,8 +1170,8 @@  discard block
 block discarded – undo
1170 1170
 		$applies_when = '',
1171 1171
 		$error_type = null
1172 1172
 	) {
1173
-		if ( defined('WP_DEBUG') && WP_DEBUG ) {
1174
-			EEH_Debug_Tools::instance()->doing_it_wrong( $function, $message, $version, $applies_when, $error_type );
1173
+		if (defined('WP_DEBUG') && WP_DEBUG) {
1174
+			EEH_Debug_Tools::instance()->doing_it_wrong($function, $message, $version, $applies_when, $error_type);
1175 1175
 		}
1176 1176
 	}
1177 1177
 
@@ -1205,13 +1205,13 @@  discard block
 block discarded – undo
1205 1205
  */
1206 1206
 function espresso_error_enqueue_scripts() {
1207 1207
 	// js for error handling
1208
-	wp_register_script( 'espresso_core', EE_GLOBAL_ASSETS_URL . 'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE );
1209
-	wp_register_script( 'ee_error_js', EE_GLOBAL_ASSETS_URL . 'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE );
1208
+	wp_register_script('espresso_core', EE_GLOBAL_ASSETS_URL.'scripts/espresso_core.js', array('jquery'), EVENT_ESPRESSO_VERSION, FALSE);
1209
+	wp_register_script('ee_error_js', EE_GLOBAL_ASSETS_URL.'scripts/EE_Error.js', array('espresso_core'), EVENT_ESPRESSO_VERSION, FALSE);
1210 1210
 }
1211
-if ( is_admin() ) {
1212
-	add_action( 'admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1211
+if (is_admin()) {
1212
+	add_action('admin_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1213 1213
 } else {
1214
-	add_action( 'wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2 );
1214
+	add_action('wp_enqueue_scripts', 'espresso_error_enqueue_scripts', 2);
1215 1215
 }
1216 1216
 
1217 1217
 
Please login to merge, or discard this patch.