Completed
Branch FET-8394-move-rules-into-core (5a0f96)
by
unknown
62:42 queued 53:38
created
core/db_classes/EE_Event_Question_Group.class.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@  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
  * Required  by EEM_Event_Question_Group in case someone queries for all its model objects
6 6
  */
7
-class EE_Event_Question_Group extends EE_Base_Class{
7
+class EE_Event_Question_Group extends EE_Base_Class {
8 8
 
9 9
 	/**
10 10
 	 * @param array $props_n_values
11 11
 	 * @return EE_Event_Question_Group|mixed
12 12
 	 */
13
-	public static function new_instance( $props_n_values = array() ) {
14
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
15
-		return $has_object ? $has_object : new self( $props_n_values);
13
+	public static function new_instance($props_n_values = array()) {
14
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
15
+		return $has_object ? $has_object : new self($props_n_values);
16 16
 	}
17 17
 
18 18
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 * @param array $props_n_values
22 22
 	 * @return EE_Event_Question_Group
23 23
 	 */
24
-	public static function new_instance_from_db ( $props_n_values = array() ) {
25
-		return new self( $props_n_values, TRUE );
24
+	public static function new_instance_from_db($props_n_values = array()) {
25
+		return new self($props_n_values, TRUE);
26 26
 	}
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
core/db_classes/EE_Event_Venue.class.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Required  by EEM_Event_Question_Group in case someone queries for all its model objects
4 4
  */
5
-class EE_Event_Venue extends EE_Base_Class{
5
+class EE_Event_Venue extends EE_Base_Class {
6 6
 
7 7
 	/**
8 8
 	 * @param array $props_n_values
9 9
 	 * @return EE_Event_Venue|mixed
10 10
 	 */
11
-	public static function new_instance( $props_n_values = array() ) {
12
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
13
-		return $has_object ? $has_object : new self( $props_n_values);
11
+	public static function new_instance($props_n_values = array()) {
12
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
13
+		return $has_object ? $has_object : new self($props_n_values);
14 14
 	}
15 15
 
16 16
 
@@ -19,8 +19,8 @@  discard block
 block discarded – undo
19 19
 	 * @param array $props_n_values
20 20
 	 * @return EE_Event_Venue
21 21
 	 */
22
-	public static function new_instance_from_db ( $props_n_values = array() ) {
23
-		return new self( $props_n_values, TRUE );
22
+	public static function new_instance_from_db($props_n_values = array()) {
23
+		return new self($props_n_values, TRUE);
24 24
 	}
25 25
 
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
core/db_classes/EE_Question_Group_Question.class.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Required  by EEM_Question_Group_Question in case someone queries for all its model objects
4 4
  */
5
-class EE_Question_Group_Question extends EE_Base_Class{
5
+class EE_Question_Group_Question extends EE_Base_Class {
6 6
 
7 7
 	/**
8 8
 	 * @param array $props_n_values
9 9
 	 * @return EE_Question_Group_Question|mixed
10 10
 	 */
11
-	public static function new_instance( $props_n_values = array() ) {
12
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
13
-		return $has_object ? $has_object : new self( $props_n_values );
11
+	public static function new_instance($props_n_values = array()) {
12
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
13
+		return $has_object ? $has_object : new self($props_n_values);
14 14
 	}
15 15
 
16 16
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 * @param array $props_n_values
20 20
 	 * @return EE_Question_Group_Question
21 21
 	 */
22
-	public static function new_instance_from_db ( $props_n_values = array() ) {
23
-		return new self( $props_n_values, TRUE );
22
+	public static function new_instance_from_db($props_n_values = array()) {
23
+		return new self($props_n_values, TRUE);
24 24
 	}
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
core/db_classes/EE_Registration.class.php 4 patches
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 			parent::set( 'STS_ID', $new_STS_ID, $use_default );
127 127
 			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
128 128
 			return TRUE;
129
-		}else{
129
+		} else{
130 130
 			//even though the old value matches the new value, it's still good to
131 131
 			//allow the parent set method to have a say
132 132
 			parent::set( 'STS_ID', $new_STS_ID, $use_default );
@@ -625,8 +625,9 @@  discard block
 block discarded – undo
625 625
 	 * @return EE_Registration
626 626
 	 */
627 627
 	public function get_primary_registration()  {
628
-		if ( $this->is_primary_registrant() )
629
-			return $this;
628
+		if ( $this->is_primary_registrant() ) {
629
+					return $this;
630
+		}
630 631
 
631 632
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
632 633
 		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
Please login to merge, or discard this patch.
Spacing   +173 added lines, -173 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
  * EE_Registration class
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 	 *                             		    date_format and the second value is the time format
20 20
 	 * @return EE_Registration
21 21
 	 */
22
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
23
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
24
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
22
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
23
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
24
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
25 25
 	}
26 26
 
27 27
 
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 	 *                          		the website will be used.
33 33
 	 * @return EE_Registration
34 34
 	 */
35
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
36
-		return new self( $props_n_values, TRUE, $timezone );
35
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
36
+		return new self($props_n_values, TRUE, $timezone);
37 37
 	}
38 38
 
39 39
 
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 	 * @access        public
45 45
 	 * @param        int $EVT_ID Event ID
46 46
 	 */
47
-	public function set_event( $EVT_ID = 0 ) {
48
-		$this->set( 'EVT_ID', $EVT_ID );
47
+	public function set_event($EVT_ID = 0) {
48
+		$this->set('EVT_ID', $EVT_ID);
49 49
 	}
50 50
 
51 51
 
@@ -56,18 +56,18 @@  discard block
 block discarded – undo
56 56
 	 * @param mixed  $field_value
57 57
 	 * @param bool   $use_default
58 58
 	 */
59
-	public function set( $field_name, $field_value, $use_default = FALSE ) {
60
-		switch( $field_name ) {
59
+	public function set($field_name, $field_value, $use_default = FALSE) {
60
+		switch ($field_name) {
61 61
 			case 'REG_code' :
62
-				if ( ! empty( $field_value ) && $this->reg_code() == '' ) {
63
-					$this->set_reg_code( $field_value, $use_default );
62
+				if ( ! empty($field_value) && $this->reg_code() == '') {
63
+					$this->set_reg_code($field_value, $use_default);
64 64
 				}
65 65
 				break;
66 66
 			case 'STS_ID' :
67
-				$this->set_status( $field_value, $use_default );
67
+				$this->set_status($field_value, $use_default);
68 68
 				break;
69 69
 			default :
70
-				parent::set( $field_name, $field_value, $use_default );
70
+				parent::set($field_name, $field_value, $use_default);
71 71
 		}
72 72
 	}
73 73
 
@@ -84,30 +84,30 @@  discard block
 block discarded – undo
84 84
 	 * @param boolean $use_default
85 85
 	 * @return bool
86 86
 	 */
87
-	public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) {
87
+	public function set_status($new_STS_ID = NULL, $use_default = FALSE) {
88 88
 		// get current REG_Status
89 89
 		$old_STS_ID = $this->status_ID();
90 90
 		// if status has changed
91
-		if ( $old_STS_ID != $new_STS_ID  ) {
91
+		if ($old_STS_ID != $new_STS_ID) {
92 92
 			// TO approved
93
-			if ( $new_STS_ID == EEM_Registration::status_id_approved ) {
93
+			if ($new_STS_ID == EEM_Registration::status_id_approved) {
94 94
 				// reserve a space by incrementing ticket and datetime sold values
95 95
 				$this->_reserve_registration_space();
96
-				do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID );
96
+				do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID);
97 97
 			// OR FROM  approved
98
-			} else if ( $old_STS_ID == EEM_Registration::status_id_approved ) {
98
+			} else if ($old_STS_ID == EEM_Registration::status_id_approved) {
99 99
 				// release a space by decrementing ticket and datetime sold values
100 100
 				$this->_release_registration_space();
101
-				do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID );
101
+				do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID);
102 102
 			}
103 103
 			// update status
104
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
105
-			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
104
+			parent::set('STS_ID', $new_STS_ID, $use_default);
105
+			do_action('AHEE__EE_Registration__set_status__after_update', $this);
106 106
 			return TRUE;
107
-		}else{
107
+		} else {
108 108
 			//even though the old value matches the new value, it's still good to
109 109
 			//allow the parent set method to have a say
110
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
110
+			parent::set('STS_ID', $new_STS_ID, $use_default);
111 111
 			return TRUE;
112 112
 		}
113 113
 		return FALSE;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 * @access        public
121 121
 	 */
122 122
 	public function status_ID() {
123
-		return $this->get( 'STS_ID' );
123
+		return $this->get('STS_ID');
124 124
 	}
125 125
 
126 126
 
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
 		$ticket->increase_sold();
135 135
 		$ticket->save();
136 136
 		$datetimes = $ticket->datetimes();
137
-		if ( is_array( $datetimes ) ) {
138
-			foreach ( $datetimes as $datetime ) {
139
-				if ( $datetime instanceof EE_Datetime ) {
137
+		if (is_array($datetimes)) {
138
+			foreach ($datetimes as $datetime) {
139
+				if ($datetime instanceof EE_Datetime) {
140 140
 					$datetime->increase_sold();
141 141
 					$datetime->save();
142 142
 				}
@@ -154,12 +154,12 @@  discard block
 block discarded – undo
154 154
 	 * @param boolean $include_archived whether to include archived tickets or not.
155 155
 	 * @return EE_Ticket
156 156
 	 */
157
-	public function ticket( $include_archived = TRUE ) {
157
+	public function ticket($include_archived = TRUE) {
158 158
 		$query_params = array();
159
-		if ( $include_archived ) {
160
-			$query_params[ 'default_where_conditions' ] = 'none';
159
+		if ($include_archived) {
160
+			$query_params['default_where_conditions'] = 'none';
161 161
 		}
162
-		return $this->get_first_related( 'Ticket', $query_params );
162
+		return $this->get_first_related('Ticket', $query_params);
163 163
 	}
164 164
 
165 165
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @return EE_Event
170 170
 	 */
171 171
 	public function event() {
172
-		return $this->get_first_related( 'Event' );
172
+		return $this->get_first_related('Event');
173 173
 	}
174 174
 
175 175
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 */
184 184
 	public function wp_user() {
185 185
 		$event = $this->event();
186
-		if ( $event instanceof EE_Event ) {
186
+		if ($event instanceof EE_Event) {
187 187
 			return $event->wp_user();
188 188
 		}
189 189
 		return 0;
@@ -200,9 +200,9 @@  discard block
 block discarded – undo
200 200
 		$ticket->decrease_sold();
201 201
 		$ticket->save();
202 202
 		$datetimes = $ticket->datetimes();
203
-		if ( is_array( $datetimes ) ) {
204
-			foreach ( $datetimes as $datetime ) {
205
-				if ( $datetime instanceof EE_Datetime ) {
203
+		if (is_array($datetimes)) {
204
+			foreach ($datetimes as $datetime) {
205
+				if ($datetime instanceof EE_Datetime) {
206 206
 					$datetime->decrease_sold();
207 207
 					$datetime->save();
208 208
 				}
@@ -218,8 +218,8 @@  discard block
 block discarded – undo
218 218
 	 * @access        public
219 219
 	 * @param        int $ATT_ID Attendee ID
220 220
 	 */
221
-	public function set_attendee_id( $ATT_ID = 0 ) {
222
-		$this->set( 'ATT_ID', $ATT_ID );
221
+	public function set_attendee_id($ATT_ID = 0) {
222
+		$this->set('ATT_ID', $ATT_ID);
223 223
 	}
224 224
 
225 225
 
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
 	 * @access        public
231 231
 	 * @param        int $TXN_ID Transaction ID
232 232
 	 */
233
-	public function set_transaction_id( $TXN_ID = 0 ) {
234
-		$this->set( 'TXN_ID', $TXN_ID );
233
+	public function set_transaction_id($TXN_ID = 0) {
234
+		$this->set('TXN_ID', $TXN_ID);
235 235
 	}
236 236
 
237 237
 
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
 	 * @access    public
243 243
 	 * @param    string $REG_session PHP Session ID
244 244
 	 */
245
-	public function set_session( $REG_session = '' ) {
246
-		$this->set( 'REG_session', $REG_session );
245
+	public function set_session($REG_session = '') {
246
+		$this->set('REG_session', $REG_session);
247 247
 	}
248 248
 
249 249
 
@@ -254,8 +254,8 @@  discard block
 block discarded – undo
254 254
 	 * @access    public
255 255
 	 * @param    string $REG_url_link Registration URL Link
256 256
 	 */
257
-	public function set_reg_url_link( $REG_url_link = '' ) {
258
-		$this->set( 'REG_url_link', $REG_url_link );
257
+	public function set_reg_url_link($REG_url_link = '') {
258
+		$this->set('REG_url_link', $REG_url_link);
259 259
 	}
260 260
 
261 261
 
@@ -266,8 +266,8 @@  discard block
 block discarded – undo
266 266
 	 * @access        public
267 267
 	 * @param        int $REG_count Primary Attendee
268 268
 	 */
269
-	public function set_count( $REG_count = 1 ) {
270
-		$this->set( 'REG_count', $REG_count );
269
+	public function set_count($REG_count = 1) {
270
+		$this->set('REG_count', $REG_count);
271 271
 	}
272 272
 
273 273
 
@@ -278,8 +278,8 @@  discard block
 block discarded – undo
278 278
 	 * @access        public
279 279
 	 * @param        boolean $REG_group_size Group Registration
280 280
 	 */
281
-	public function set_group_size( $REG_group_size = FALSE ) {
282
-		$this->set( 'REG_group_size', $REG_group_size );
281
+	public function set_group_size($REG_group_size = FALSE) {
282
+		$this->set('REG_group_size', $REG_group_size);
283 283
 	}
284 284
 
285 285
 
@@ -362,8 +362,8 @@  discard block
 block discarded – undo
362 362
 	 * @access        public
363 363
 	 * @param        mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date
364 364
 	 */
365
-	public function set_reg_date( $REG_date = FALSE ) {
366
-		$this->set( 'REG_date', $REG_date );
365
+	public function set_reg_date($REG_date = FALSE) {
366
+		$this->set('REG_date', $REG_date);
367 367
 	}
368 368
 
369 369
 
@@ -374,8 +374,8 @@  discard block
 block discarded – undo
374 374
 	 * @access    public
375 375
 	 * @param    float $REG_final_price
376 376
 	 */
377
-	public function set_final_price( $REG_final_price = 0.00 ) {
378
-		$this->set( 'REG_final_price', $REG_final_price );
377
+	public function set_final_price($REG_final_price = 0.00) {
378
+		$this->set('REG_final_price', $REG_final_price);
379 379
 	}
380 380
 
381 381
 
@@ -386,8 +386,8 @@  discard block
 block discarded – undo
386 386
 	 * @access    public
387 387
 	 * @param    float $REG_paid
388 388
 	 */
389
-	public function set_paid( $REG_paid = 0.00 ) {
390
-		$this->set( 'REG_paid', $REG_paid );
389
+	public function set_paid($REG_paid = 0.00) {
390
+		$this->set('REG_paid', $REG_paid);
391 391
 	}
392 392
 
393 393
 
@@ -398,8 +398,8 @@  discard block
 block discarded – undo
398 398
 	 * @access        public
399 399
 	 * @param        boolean $REG_att_is_going Attendee Is Going
400 400
 	 */
401
-	public function set_att_is_going( $REG_att_is_going = FALSE ) {
402
-		$this->set( 'REG_att_is_going', $REG_att_is_going );
401
+	public function set_att_is_going($REG_att_is_going = FALSE) {
402
+		$this->set('REG_att_is_going', $REG_att_is_going);
403 403
 	}
404 404
 
405 405
 
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
 	 * @return EE_Attendee
410 410
 	 */
411 411
 	public function attendee() {
412
-		return $this->get_first_related( 'Attendee' );
412
+		return $this->get_first_related('Attendee');
413 413
 	}
414 414
 
415 415
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 	 * @access        public
420 420
 	 */
421 421
 	public function event_ID() {
422
-		return $this->get( 'EVT_ID' );
422
+		return $this->get('EVT_ID');
423 423
 	}
424 424
 
425 425
 
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
 	 */
431 431
 	public function event_name() {
432 432
 		$event = $this->event_obj();
433
-		if ( $event ) {
433
+		if ($event) {
434 434
 			return $event->name();
435 435
 		} else {
436 436
 			return NULL;
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 	 * @return EE_Event
445 445
 	 */
446 446
 	public function event_obj() {
447
-		return $this->get_first_related( 'Event' );
447
+		return $this->get_first_related('Event');
448 448
 	}
449 449
 
450 450
 
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 	 * @access        public
455 455
 	 */
456 456
 	public function attendee_ID() {
457
-		return $this->get( 'ATT_ID' );
457
+		return $this->get('ATT_ID');
458 458
 	}
459 459
 
460 460
 
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
 	 * @access        public
465 465
 	 */
466 466
 	public function session_ID() {
467
-		return $this->get( 'REG_session' );
467
+		return $this->get('REG_session');
468 468
 	}
469 469
 
470 470
 
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
475 475
 	 * @return string
476 476
 	 */
477
-	public function receipt_url( $messenger = 'html' ) {
477
+	public function receipt_url($messenger = 'html') {
478 478
 
479 479
 		/**
480 480
 		 * The below will be deprecated one version after this.  We check first if there is a custom receipt template already in use on old system.  If there is then we just return the standard url for it.
@@ -483,12 +483,12 @@  discard block
 block discarded – undo
483 483
 		 */
484 484
 		EE_Registry::instance()->load_helper('Template');
485 485
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php';
486
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
486
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
487 487
 
488
-		if ( $has_custom ) {
489
-			return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) );
488
+		if ($has_custom) {
489
+			return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch'));
490 490
 		}
491
-		return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' );
491
+		return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt');
492 492
 	}
493 493
 
494 494
 
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
500 500
 	 * @return string
501 501
 	 */
502
-	public function invoice_url( $messenger = 'html' ) {
502
+	public function invoice_url($messenger = 'html') {
503 503
 		/**
504 504
 		 * The below will be deprecated one version after this.  We check first if there is a custom invoice template already in use on old system.  If there is then we just return the standard url for it.
505 505
 		 *
@@ -507,21 +507,21 @@  discard block
 block discarded – undo
507 507
 		 */
508 508
 		EE_Registry::instance()->load_helper('Template');
509 509
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php';
510
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
510
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
511 511
 
512
-		if ( $has_custom ) {
513
-			if ( $messenger == 'html' ) {
514
-				return $this->invoice_url( 'launch' );
512
+		if ($has_custom) {
513
+			if ($messenger == 'html') {
514
+				return $this->invoice_url('launch');
515 515
 			}
516 516
 			$route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice';
517 517
 
518
-			$query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() );
519
-			if ( $messenger == 'html' ) {
518
+			$query_args = array('ee' => $route, 'id' => $this->reg_url_link());
519
+			if ($messenger == 'html') {
520 520
 				$query_args['html'] = TRUE;
521 521
 			}
522
-			return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) );
522
+			return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id));
523 523
 		}
524
-		return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' );
524
+		return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice');
525 525
 	}
526 526
 
527 527
 
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
 	 * @access        public
532 532
 	 */
533 533
 	public function reg_url_link() {
534
-		return $this->get( 'REG_url_link' );
534
+		return $this->get('REG_url_link');
535 535
 	}
536 536
 
537 537
 
@@ -541,8 +541,8 @@  discard block
 block discarded – undo
541 541
 	 * @param string $type 'download','launch', or 'html' (default is 'launch')
542 542
 	 * @return void
543 543
 	 */
544
-	public function e_invoice_url( $type = 'launch' ) {
545
-		echo $this->invoice_url( $type );
544
+	public function e_invoice_url($type = 'launch') {
545
+		echo $this->invoice_url($type);
546 546
 	}
547 547
 
548 548
 
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
 	 * @return string
563 563
 	 */
564 564
 	public function payment_overview_url() {
565
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), get_permalink( EE_Registry::instance()->CFG->core->reg_page_id ) );
565
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), get_permalink(EE_Registry::instance()->CFG->core->reg_page_id));
566 566
 	}
567 567
 
568 568
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 	 * @return string
574 574
 	 */
575 575
 	public function edit_attendee_information_url() {
576
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), get_permalink( EE_Registry::instance()->CFG->core->reg_page_id ) );
576
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), get_permalink(EE_Registry::instance()->CFG->core->reg_page_id));
577 577
 	}
578 578
 
579 579
 
@@ -583,8 +583,8 @@  discard block
 block discarded – undo
583 583
 	 * @return string
584 584
 	 */
585 585
 	public function get_admin_edit_url() {
586
-		EE_Registry::instance()->load_helper( 'URL' );
587
-		return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) );
586
+		EE_Registry::instance()->load_helper('URL');
587
+		return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php'));
588 588
 	}
589 589
 
590 590
 
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
 	 * @access        public
595 595
 	 */
596 596
 	public function is_primary_registrant() {
597
-		return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE;
597
+		return $this->get('REG_count') == 1 ? TRUE : FALSE;
598 598
 	}
599 599
 
600 600
 
@@ -603,12 +603,12 @@  discard block
 block discarded – undo
603 603
 	 * This returns the primary registration object for this registration group (which may be this object).
604 604
 	 * @return EE_Registration
605 605
 	 */
606
-	public function get_primary_registration()  {
607
-		if ( $this->is_primary_registrant() )
606
+	public function get_primary_registration() {
607
+		if ($this->is_primary_registrant())
608 608
 			return $this;
609 609
 
610 610
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
611
-		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
611
+		$primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1)));
612 612
 		return $primary_registrant;
613 613
 	}
614 614
 
@@ -619,7 +619,7 @@  discard block
 block discarded – undo
619 619
 	* 		@access		public
620 620
 	*/
621 621
 	public function count() {
622
-		return $this->get( 'REG_count' );
622
+		return $this->get('REG_count');
623 623
 	}
624 624
 
625 625
 
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
 	 * @access        public
630 630
 	 */
631 631
 	public function group_size() {
632
-		return $this->get( 'REG_group_size' );
632
+		return $this->get('REG_group_size');
633 633
 	}
634 634
 
635 635
 
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
 	 * @access        public
640 640
 	 */
641 641
 	public function date() {
642
-		return $this->get( 'REG_date' );
642
+		return $this->get('REG_date');
643 643
 	}
644 644
 
645 645
 
@@ -650,8 +650,8 @@  discard block
 block discarded – undo
650 650
 	 * @param string $time_format
651 651
 	 * @return string
652 652
 	 */
653
-	public function pretty_date( $date_format = NULL, $time_format = NULL ) {
654
-		return $this->get_datetime( 'REG_date', $date_format, $time_format );
653
+	public function pretty_date($date_format = NULL, $time_format = NULL) {
654
+		return $this->get_datetime('REG_date', $date_format, $time_format);
655 655
 	}
656 656
 
657 657
 
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
 	 * @return    float
664 664
 	 */
665 665
 	public function final_price() {
666
-		return $this->get( 'REG_final_price' );
666
+		return $this->get('REG_final_price');
667 667
 	}
668 668
 
669 669
 
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
 	 * @return string
675 675
 	 */
676 676
 	public function pretty_final_price() {
677
-		return $this->get_pretty( 'REG_final_price' );
677
+		return $this->get_pretty('REG_final_price');
678 678
 	}
679 679
 
680 680
 
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
 	 * @return 	float
686 686
 	 */
687 687
 	public function paid() {
688
-		return $this->get( 'REG_paid' );
688
+		return $this->get('REG_paid');
689 689
 	}
690 690
 
691 691
 
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
 	 * @return 	float
697 697
 	 */
698 698
 	public function pretty_paid() {
699
-		return $this->get_pretty( 'REG_paid' );
699
+		return $this->get_pretty('REG_paid');
700 700
 	}
701 701
 
702 702
 
@@ -708,11 +708,11 @@  discard block
 block discarded – undo
708 708
 	 * @param array $requires_payment
709 709
 	 * @return bool
710 710
 	 */
711
-	public function owes_monies_and_can_pay( $requires_payment = array()) {
711
+	public function owes_monies_and_can_pay($requires_payment = array()) {
712 712
 		// these reg statuses require payment (if event is not free)
713
-		$requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
713
+		$requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
714 714
 		if (
715
-			in_array( $this->status_ID(), $requires_payment ) &&
715
+			in_array($this->status_ID(), $requires_payment) &&
716 716
 			$this->final_price() != 0 &&
717 717
 			$this->final_price() != $this->paid()
718 718
 		) {
@@ -729,8 +729,8 @@  discard block
 block discarded – undo
729 729
 	 * @param bool $show_icons
730 730
 	 * @return void
731 731
 	 */
732
-	public function e_pretty_status( $show_icons = FALSE ) {
733
-		echo $this->pretty_status( $show_icons );
732
+	public function e_pretty_status($show_icons = FALSE) {
733
+		echo $this->pretty_status($show_icons);
734 734
 	}
735 735
 
736 736
 
@@ -741,10 +741,10 @@  discard block
 block discarded – undo
741 741
 	 * @param bool $show_icons
742 742
 	 * @return string
743 743
 	 */
744
-	public function pretty_status( $show_icons = FALSE ) {
745
-		$status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' );
744
+	public function pretty_status($show_icons = FALSE) {
745
+		$status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence');
746 746
 		$icon = '';
747
-		switch ( $this->status_ID() ) {
747
+		switch ($this->status_ID()) {
748 748
 			case EEM_Registration::status_id_approved:
749 749
 				$icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : '';
750 750
 				break;
@@ -764,7 +764,7 @@  discard block
 block discarded – undo
764 764
 				$icon = $show_icons ? '<span class="dashicons dashicons-no ee-icon-size-16 red-text"></span>' : '';
765 765
 				break;
766 766
 		}
767
-		return $icon . $status[ $this->status_ID() ];
767
+		return $icon.$status[$this->status_ID()];
768 768
 	}
769 769
 
770 770
 
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
 	 * @access        public
775 775
 	 */
776 776
 	public function att_is_going() {
777
-		return $this->get( 'REG_att_is_going' );
777
+		return $this->get('REG_att_is_going');
778 778
 	}
779 779
 
780 780
 
@@ -784,8 +784,8 @@  discard block
 block discarded – undo
784 784
 	 * @param array $query_params like EEM_Base::get_all
785 785
 	 * @return EE_Answer[]
786 786
 	 */
787
-	public function answers( $query_params = NULL ) {
788
-		return $this->get_many_related( 'Answer', $query_params );
787
+	public function answers($query_params = NULL) {
788
+		return $this->get_many_related('Answer', $query_params);
789 789
 	}
790 790
 
791 791
 
@@ -799,9 +799,9 @@  discard block
 block discarded – undo
799 799
 	 * (because the answer might be an array of answer values, so passing pretty_value=true
800 800
 	 * will convert it into some kind of string)
801 801
 	 */
802
-	public function answer_value_to_question( $question, $pretty_value=true ) {
802
+	public function answer_value_to_question($question, $pretty_value = true) {
803 803
 		$question_id = EEM_Question::instance()->ensure_is_ID($question);
804
-		return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value);
804
+		return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value);
805 805
 	}
806 806
 
807 807
 	/**
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
 	 * @return string
811 811
 	 */
812 812
 	public function reg_date() {
813
-		return $this->get_datetime( 'REG_date' );
813
+		return $this->get_datetime('REG_date');
814 814
 	}
815 815
 
816 816
 
@@ -822,7 +822,7 @@  discard block
 block discarded – undo
822 822
 	 * @return EE_Datetime_Ticket
823 823
 	 */
824 824
 	public function datetime_ticket() {
825
-		return $this->get_first_related( 'Datetime_Ticket' );
825
+		return $this->get_first_related('Datetime_Ticket');
826 826
 	}
827 827
 
828 828
 
@@ -832,15 +832,15 @@  discard block
 block discarded – undo
832 832
 	 * @param EE_Datetime_Ticket $datetime_ticket
833 833
 	 * @return EE_Datetime_Ticket
834 834
 	 */
835
-	public function set_datetime_ticket( $datetime_ticket ) {
836
-		return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' );
835
+	public function set_datetime_ticket($datetime_ticket) {
836
+		return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket');
837 837
 	}
838 838
 	/**
839 839
 	 * Gets deleted
840 840
 	 * @return boolean
841 841
 	 */
842 842
 	public function deleted() {
843
-		return $this->get( 'REG_deleted' );
843
+		return $this->get('REG_deleted');
844 844
 	}
845 845
 
846 846
 	/**
@@ -849,7 +849,7 @@  discard block
 block discarded – undo
849 849
 	 * @return boolean
850 850
 	 */
851 851
 	public function set_deleted($deleted) {
852
-		$this->set( 'REG_deleted', $deleted );
852
+		$this->set('REG_deleted', $deleted);
853 853
 	}
854 854
 
855 855
 
@@ -859,7 +859,7 @@  discard block
 block discarded – undo
859 859
 	 * @return EE_Status
860 860
 	 */
861 861
 	public function status_obj() {
862
-		return $this->get_first_related( 'Status' );
862
+		return $this->get_first_related('Status');
863 863
 	}
864 864
 
865 865
 
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
 	 * @return int
871 871
 	 */
872 872
 	public function count_checkins() {
873
-		return $this->get_model()->count_related( $this, 'Checkin' );
873
+		return $this->get_model()->count_related($this, 'Checkin');
874 874
 	}
875 875
 
876 876
 
@@ -880,7 +880,7 @@  discard block
 block discarded – undo
880 880
 	 * @return int
881 881
 	 */
882 882
 	public function count_checkins_not_checkedout() {
883
-		return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) );
883
+		return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1)));
884 884
 	}
885 885
 
886 886
 
@@ -893,15 +893,15 @@  discard block
 block discarded – undo
893 893
 	 *
894 894
 	 * @return bool
895 895
 	 */
896
-	public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) {
897
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
896
+	public function can_checkin($DTT_OR_ID, $check_approved = TRUE) {
897
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
898 898
 
899 899
 		//first check registration status
900
-		if (  $check_approved && ! $this->is_approved() ) {
900
+		if ($check_approved && ! $this->is_approved()) {
901 901
 			return false;
902 902
 		}
903 903
 		//is there a datetime ticket that matches this dtt_ID?
904
-		return EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) );
904
+		return EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID)));
905 905
 	}
906 906
 
907 907
 
@@ -917,25 +917,25 @@  discard block
 block discarded – undo
917 917
 	 * @param  bool $verify  If true then can_checkin() is used to verify whether the person can be checked in or not.  Otherwise this forces change in checkin status.
918 918
 	 * @return int|BOOL            the chk_in status toggled to OR false if nothing got changed.
919 919
 	 */
920
-	public function toggle_checkin_status( $DTT_ID = NULL, $verify = FALSE ) {
921
-		if ( empty( $DTT_ID ) ) {
920
+	public function toggle_checkin_status($DTT_ID = NULL, $verify = FALSE) {
921
+		if (empty($DTT_ID)) {
922 922
 			$datetime = $this->get_related_primary_datetime();
923 923
 			$DTT_ID = $datetime->ID();
924 924
 		//verify the registration can checkin for the given DTT_ID
925
-		} elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) {
926
-			EE_Error::add_error( sprintf( __( 'The given registration (ID:%d) can not be checked in to the given DTT_ID (%d), because the registration does not have access', 'event_espresso'), $this->ID(), $DTT_ID ), __FILE__, __FUNCTION__, __LINE__ );
925
+		} elseif ( ! $this->can_checkin($DTT_ID, $verify)) {
926
+			EE_Error::add_error(sprintf(__('The given registration (ID:%d) can not be checked in to the given DTT_ID (%d), because the registration does not have access', 'event_espresso'), $this->ID(), $DTT_ID), __FILE__, __FUNCTION__, __LINE__);
927 927
 			return FALSE;
928 928
 		}
929
-		$status_paths = array( 0 => 1, 1 => 2, 2 => 1 );
929
+		$status_paths = array(0 => 1, 1 => 2, 2 => 1);
930 930
 		//start by getting the current status so we know what status we'll be changing to.
931
-		$cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL );
932
-		$status_to = $status_paths[ $cur_status ];
931
+		$cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL);
932
+		$status_to = $status_paths[$cur_status];
933 933
 		//add relation - note Check-ins are always creating new rows because we are keeping track of Check-ins over time.  Eventually we'll probably want to show a list table for the individual Check-ins so that can be managed.
934 934
 		$new_status = $status_to == 2 ? 0 : $status_to;
935
-		$chk_data = array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID, 'CHK_in' => $new_status );
936
-		$checkin = EE_Checkin::new_instance( $chk_data );
935
+		$chk_data = array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID, 'CHK_in' => $new_status);
936
+		$checkin = EE_Checkin::new_instance($chk_data);
937 937
 		$updated = $checkin->save();
938
-		if ( $updated === 0 ) {
938
+		if ($updated === 0) {
939 939
 			$status_to = FALSE;
940 940
 		}
941 941
 		return $status_to;
@@ -959,22 +959,22 @@  discard block
 block discarded – undo
959 959
 	 * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id.
960 960
 	 * @return int            Integer representing Check-in status.
961 961
 	 */
962
-	public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = NULL ) {
963
-		if ( empty( $DTT_ID ) && ! $checkin instanceof EE_Checkin ) {
962
+	public function check_in_status_for_datetime($DTT_ID = 0, $checkin = NULL) {
963
+		if (empty($DTT_ID) && ! $checkin instanceof EE_Checkin) {
964 964
 			$datetime = $this->get_related_primary_datetime();
965
-			if ( ! $datetime instanceof EE_Datetime ) {
965
+			if ( ! $datetime instanceof EE_Datetime) {
966 966
 				return 0;
967 967
 			}
968 968
 			$DTT_ID = $datetime->ID();
969 969
 		//verify the registration can checkin for the given DTT_ID
970
-		} elseif ( ! $checkin instanceof EE_Checkin && ! $this->can_checkin( $DTT_ID, false ) ) {
971
-			EE_Error::add_error( sprintf( __( 'The checkin status for the given registration (ID:%d) and DTT_ID (%d) cannot be retrieved because the registration does not have access to that date and time.  So there is no status for this registration.', 'event_espresso'), $this->ID(), $DTT_ID ) );
970
+		} elseif ( ! $checkin instanceof EE_Checkin && ! $this->can_checkin($DTT_ID, false)) {
971
+			EE_Error::add_error(sprintf(__('The checkin status for the given registration (ID:%d) and DTT_ID (%d) cannot be retrieved because the registration does not have access to that date and time.  So there is no status for this registration.', 'event_espresso'), $this->ID(), $DTT_ID));
972 972
 			return false;
973 973
 		}
974 974
 		//get checkin object (if exists)
975
-		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related( 'Checkin', array( array( 'DTT_ID' => $DTT_ID ), 'order_by' => array( 'CHK_timestamp' => 'DESC' ) ) );
976
-		if ( $checkin instanceof EE_Checkin ) {
977
-			if ( $checkin->get( 'CHK_in' ) ) {
975
+		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related('Checkin', array(array('DTT_ID' => $DTT_ID), 'order_by' => array('CHK_timestamp' => 'DESC')));
976
+		if ($checkin instanceof EE_Checkin) {
977
+			if ($checkin->get('CHK_in')) {
978 978
 				return 1; //checked in
979 979
 			} else {
980 980
 				return 2; //had checked in but is now checked out.
@@ -992,28 +992,28 @@  discard block
 block discarded – undo
992 992
 	 * @param bool $error  This just flags that you want an error message returned. This is put in so that the error message can be customized with the attendee name.
993 993
 	 * @return string         internationalized message
994 994
 	 */
995
-	public function get_checkin_msg( $DTT_ID, $error = FALSE ) {
995
+	public function get_checkin_msg($DTT_ID, $error = FALSE) {
996 996
 		//let's get the attendee first so we can include the name of the attendee
997
-		$attendee = $this->get_first_related( 'Attendee' );
998
-		if ( $attendee instanceof EE_Attendee ) {
999
-			if ( $error ) {
1000
-				return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() );
997
+		$attendee = $this->get_first_related('Attendee');
998
+		if ($attendee instanceof EE_Attendee) {
999
+			if ($error) {
1000
+				return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name());
1001 1001
 			}
1002
-			$cur_status = $this->check_in_status_for_datetime( $DTT_ID );
1002
+			$cur_status = $this->check_in_status_for_datetime($DTT_ID);
1003 1003
 			//what is the status message going to be?
1004
-			switch ( $cur_status ) {
1004
+			switch ($cur_status) {
1005 1005
 				case 0 :
1006
-					return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() );
1006
+					return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name());
1007 1007
 					break;
1008 1008
 				case 1 :
1009
-					return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() );
1009
+					return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name());
1010 1010
 					break;
1011 1011
 				case 2 :
1012
-					return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() );
1012
+					return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name());
1013 1013
 					break;
1014 1014
 			}
1015 1015
 		}
1016
-		return __( "The check-in status could not be determined.", "event_espresso" );
1016
+		return __("The check-in status could not be determined.", "event_espresso");
1017 1017
 	}
1018 1018
 
1019 1019
 
@@ -1023,7 +1023,7 @@  discard block
 block discarded – undo
1023 1023
 	 * @return EE_Transaction
1024 1024
 	 */
1025 1025
 	public function transaction() {
1026
-		return $this->get_first_related( 'Transaction' );
1026
+		return $this->get_first_related('Transaction');
1027 1027
 	}
1028 1028
 
1029 1029
 
@@ -1034,7 +1034,7 @@  discard block
 block discarded – undo
1034 1034
 	 * @access        public
1035 1035
 	 */
1036 1036
 	public function reg_code() {
1037
-		return $this->get( 'REG_code' );
1037
+		return $this->get('REG_code');
1038 1038
 	}
1039 1039
 
1040 1040
 
@@ -1044,7 +1044,7 @@  discard block
 block discarded – undo
1044 1044
 	 * @access        public
1045 1045
 	 */
1046 1046
 	public function transaction_ID() {
1047
-		return $this->get( 'TXN_ID' );
1047
+		return $this->get('TXN_ID');
1048 1048
 	}
1049 1049
 
1050 1050
 
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
 	 * @return int
1054 1054
 	 */
1055 1055
 	public function ticket_ID() {
1056
-		return $this->get( 'TKT_ID' );
1056
+		return $this->get('TKT_ID');
1057 1057
 	}
1058 1058
 
1059 1059
 
@@ -1065,17 +1065,17 @@  discard block
 block discarded – undo
1065 1065
 	 * @param    string $REG_code Registration Code
1066 1066
 	 * @param	boolean $use_default
1067 1067
 	 */
1068
-	public function set_reg_code( $REG_code, $use_default = FALSE ) {
1069
-		if ( empty( $REG_code )) {
1070
-			EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ );
1068
+	public function set_reg_code($REG_code, $use_default = FALSE) {
1069
+		if (empty($REG_code)) {
1070
+			EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1071 1071
 			return;
1072 1072
 		}
1073
-		if ( ! $this->reg_code() ) {
1074
-			parent::set( 'REG_code', $REG_code, $use_default );
1073
+		if ( ! $this->reg_code()) {
1074
+			parent::set('REG_code', $REG_code, $use_default);
1075 1075
 		} else {
1076 1076
 			EE_Error::doing_it_wrong(
1077
-				__CLASS__ . '::' . __FUNCTION__,
1078
-				__( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ),
1077
+				__CLASS__.'::'.__FUNCTION__,
1078
+				__('Can not change a registration REG_code once it has been set.', 'event_espresso'),
1079 1079
 				'4.6.0'
1080 1080
 			);
1081 1081
 		}
@@ -1095,17 +1095,17 @@  discard block
 block discarded – undo
1095 1095
 	 * @return EE_Registration[]  or empty array if this isn't a group registration.
1096 1096
 	 */
1097 1097
 	public function get_all_other_registrations_in_group() {
1098
-		if ( $this->group_size() < 2 ) {
1098
+		if ($this->group_size() < 2) {
1099 1099
 			return array();
1100 1100
 		}
1101 1101
 
1102 1102
 		$query[0] = array(
1103 1103
 			'TXN_ID' => $this->transaction_ID(),
1104
-			'REG_ID' => array( '!=', $this->ID() ),
1104
+			'REG_ID' => array('!=', $this->ID()),
1105 1105
 			'TKT_ID' => $this->ticket_ID()
1106 1106
 			);
1107 1107
 
1108
-		$registrations = $this->get_model()->get_all( $query );
1108
+		$registrations = $this->get_model()->get_all($query);
1109 1109
 		return $registrations;
1110 1110
 	}
1111 1111
 
@@ -1117,7 +1117,7 @@  discard block
 block discarded – undo
1117 1117
 	 * @access 	public
1118 1118
 	 */
1119 1119
 	public function price_paid() {
1120
-		EE_Error::doing_it_wrong( 'EE_Registration::price_paid()', __( 'This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso' ), '4.7.0' );
1120
+		EE_Error::doing_it_wrong('EE_Registration::price_paid()', __('This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso'), '4.7.0');
1121 1121
 		return $this->final_price();
1122 1122
 	}
1123 1123
 
@@ -1129,9 +1129,9 @@  discard block
 block discarded – undo
1129 1129
 	 * @access    public
1130 1130
 	 * @param    float $REG_final_price
1131 1131
 	 */
1132
-	public function set_price_paid( $REG_final_price = 0.00 ) {
1133
-		EE_Error::doing_it_wrong( 'EE_Registration::set_price_paid()', __( 'This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso' ), '4.7.0' );
1134
-		$this->set_final_price( $REG_final_price );
1132
+	public function set_price_paid($REG_final_price = 0.00) {
1133
+		EE_Error::doing_it_wrong('EE_Registration::set_price_paid()', __('This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso'), '4.7.0');
1134
+		$this->set_final_price($REG_final_price);
1135 1135
 	}
1136 1136
 
1137 1137
 
@@ -1142,7 +1142,7 @@  discard block
 block discarded – undo
1142 1142
 	 * @return string
1143 1143
 	 */
1144 1144
 	public function pretty_price_paid() {
1145
-		EE_Error::doing_it_wrong( 'EE_Registration::pretty_price_paid()', __( 'This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso' ), '4.7.0' );
1145
+		EE_Error::doing_it_wrong('EE_Registration::pretty_price_paid()', __('This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso'), '4.7.0');
1146 1146
 		return $this->pretty_final_price();
1147 1147
 	}
1148 1148
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -618,9 +618,9 @@
 block discarded – undo
618 618
 
619 619
 
620 620
 	/**
621
-	*		get  Attendee Number
622
-	* 		@access		public
623
-	*/
621
+	 *		get  Attendee Number
622
+	 * 		@access		public
623
+	 */
624 624
 	public function count() {
625 625
 		return $this->get( 'REG_count' );
626 626
 	}
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -677,7 +677,7 @@  discard block
 block discarded – undo
677 677
 	 * final_price
678 678
 	 * total owing for this registration after all ticket/price modifications
679 679
 	 * @access        public
680
-	 * @return    float
680
+	 * @return    boolean
681 681
 	 */
682 682
 	public function final_price() {
683 683
 		return $this->get( 'REG_final_price' );
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
 	/**
700 700
 	 * get paid (yeah)
701 701
 	 * @access        public
702
-	 * @return 	float
702
+	 * @return 	boolean
703 703
 	 */
704 704
 	public function paid() {
705 705
 		return $this->get( 'REG_paid' );
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
 	/**
864 864
 	 * Sets deleted
865 865
 	 * @param boolean $deleted
866
-	 * @return boolean
866
+	 * @return boolean|null
867 867
 	 */
868 868
 	public function set_deleted($deleted) {
869 869
 		$this->set( 'REG_deleted', $deleted );
@@ -907,6 +907,7 @@  discard block
 block discarded – undo
907 907
 	 *
908 908
 	 * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against
909 909
 	 * @param bool   $check_approved   This is used to indicate whether the caller wants can_checkin to also consider registration status as well as datetime access.
910
+	 * @param integer $DTT_OR_ID
910 911
 	 *
911 912
 	 * @return bool
912 913
 	 */
@@ -1145,7 +1146,7 @@  discard block
 block discarded – undo
1145 1146
 
1146 1147
 
1147 1148
 	/**
1148
-	 * @return int
1149
+	 * @return boolean
1149 1150
 	 */
1150 1151
 	public function ticket_ID() {
1151 1152
 		return $this->get( 'TKT_ID' );
Please login to merge, or discard this patch.
core/db_classes/EE_Soft_Delete_Base_Class.class.php 1 patch
Spacing   +7 added lines, -7 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
  * Event Espresso
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	 * @return boolean success
34 34
 	 */
35 35
 	public function delete() {
36
-		return $this->delete_or_restore( TRUE );
36
+		return $this->delete_or_restore(TRUE);
37 37
 	}
38 38
 
39 39
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 * @return boolean success
44 44
 	 */
45 45
 	public function delete_permanently() {
46
-		return $this->get_model()->delete_permanently_by_ID( $this->ID() );
46
+		return $this->get_model()->delete_permanently_by_ID($this->ID());
47 47
 	}
48 48
 
49 49
 
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 	 * @param bool $delete true=>delete, false=>restore
54 54
 	 * @return bool
55 55
 	 */
56
-	public function delete_or_restore( $delete = TRUE ) {
56
+	public function delete_or_restore($delete = TRUE) {
57 57
 		$model = $this->get_model();
58
-		return $model->delete_or_restore_by_ID( $delete, $this->ID() );
58
+		return $model->delete_or_restore_by_ID($delete, $this->ID());
59 59
 	}
60 60
 
61 61
 
@@ -65,6 +65,6 @@  discard block
 block discarded – undo
65 65
 	 * @return boolean
66 66
 	 */
67 67
 	public function restore() {
68
-		return $this->delete_or_restore( FALSE );
68
+		return $this->delete_or_restore(FALSE);
69 69
 	}
70 70
 }
71 71
\ No newline at end of file
Please login to merge, or discard this patch.
core/db_classes/EE_Taxes.class.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,9 @@
 block discarded – undo
36 36
 		$tax = 0;
37 37
 		$total_tax = 0;
38 38
 		//This first checks to see if the given ticket is taxable.
39
-		if ( ! $ticket->get( 'TKT_taxable' ) )
40
-			return $tax;
39
+		if ( ! $ticket->get( 'TKT_taxable' ) ) {
40
+					return $tax;
41
+		}
41 42
 		//get subtotal (notice we're only retrieving a subtotal if there isn't one given)
42 43
 		$subtotal = self::get_subtotal_for_admin( $ticket );
43 44
 		//get taxes
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 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
  * Taxes class
@@ -32,20 +32,20 @@  discard block
 block discarded – undo
32 32
 	 * @param  EE_Ticket $ticket incoming EE_Ticket
33 33
 	 * @return float             total taxes to apply to ticket.
34 34
 	 */
35
-	public static function get_total_taxes_for_admin( EE_Ticket $ticket ) {
35
+	public static function get_total_taxes_for_admin(EE_Ticket $ticket) {
36 36
 		$tax = 0;
37 37
 		$total_tax = 0;
38 38
 		//This first checks to see if the given ticket is taxable.
39
-		if ( ! $ticket->get( 'TKT_taxable' ) )
39
+		if ( ! $ticket->get('TKT_taxable'))
40 40
 			return $tax;
41 41
 		//get subtotal (notice we're only retrieving a subtotal if there isn't one given)
42
-		$subtotal = self::get_subtotal_for_admin( $ticket );
42
+		$subtotal = self::get_subtotal_for_admin($ticket);
43 43
 		//get taxes
44 44
 		$taxes = self::get_taxes_for_admin();
45 45
 		//apply taxes to subtotal
46
-		foreach ( $taxes as $tax ) {
46
+		foreach ($taxes as $tax) {
47 47
 			//assuming taxes are not cumulative
48
-			$total_tax += $subtotal * $tax->get( 'PRC_amount' ) / 100;
48
+			$total_tax += $subtotal * $tax->get('PRC_amount') / 100;
49 49
 		}
50 50
 		return $total_tax;
51 51
 	}
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
 	 * @param EE_Ticket $ticket
57 57
 	 * @return float
58 58
 	 */
59
-	public static function get_subtotal_for_admin( EE_Ticket $ticket ) {
59
+	public static function get_subtotal_for_admin(EE_Ticket $ticket) {
60 60
 		$TKT_ID = $ticket->ID();
61
-		return isset( self::$_subtotal[ $TKT_ID ] ) ? self::$_subtotal[ $TKT_ID ] : self::_get_subtotal_for_admin( $ticket );
61
+		return isset(self::$_subtotal[$TKT_ID]) ? self::$_subtotal[$TKT_ID] : self::_get_subtotal_for_admin($ticket);
62 62
 	}
63 63
 
64 64
 
@@ -68,26 +68,26 @@  discard block
 block discarded – undo
68 68
 	 * @param  EE_Ticket $ticket
69 69
 	 * @return float     subtotal calculated from all EE_Price[] on Ticket.
70 70
 	 */
71
-	private static function _get_subtotal_for_admin( EE_Ticket $ticket ) {
71
+	private static function _get_subtotal_for_admin(EE_Ticket $ticket) {
72 72
 		$subtotal = 0;
73 73
 		//get all prices
74
-		$prices = $ticket->get_many_related( 'Price', array( 'default_where_conditions' => 'none', 'order_by' => array( 'PRC_order' => 'ASC' ) ) );
74
+		$prices = $ticket->get_many_related('Price', array('default_where_conditions' => 'none', 'order_by' => array('PRC_order' => 'ASC')));
75 75
 		//let's loop through them (base price is always the first item)
76
-		foreach ( $prices as $price ) {
77
-			if ( $price instanceof EE_Price ) {
78
-				switch ( $price->type_obj()->base_type() ) {
76
+		foreach ($prices as $price) {
77
+			if ($price instanceof EE_Price) {
78
+				switch ($price->type_obj()->base_type()) {
79 79
 					case 1: // base price
80 80
 					case 3: // surcharges
81
-						$subtotal += $price->is_percent() ? $subtotal * $price->get( 'PRC_amount' ) / 100 : $price->get( 'PRC_amount' );
81
+						$subtotal += $price->is_percent() ? $subtotal * $price->get('PRC_amount') / 100 : $price->get('PRC_amount');
82 82
 						break;
83 83
 					case 2: // discounts
84
-						$subtotal -= $price->is_percent() ? $subtotal * $price->get( 'PRC_amount' ) / 100 : $price->get( 'PRC_amount' );
84
+						$subtotal -= $price->is_percent() ? $subtotal * $price->get('PRC_amount') / 100 : $price->get('PRC_amount');
85 85
 						break;
86 86
 				}
87 87
 			}
88 88
 		}
89 89
 		$TKT_ID = $ticket->ID();
90
-		self::$_subtotal = array( $TKT_ID => $subtotal );
90
+		self::$_subtotal = array($TKT_ID => $subtotal);
91 91
 		return $subtotal;
92 92
 	}
93 93
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 * @return EE_Price[] EE_Price objects that have PRT_ID == 4
99 99
 	 */
100 100
 	public static function get_taxes_for_admin() {
101
-		self::$_default_taxes = ! empty( self::$_default_taxes ) ? self::$_default_taxes : EE_Registry::instance()->load_model( 'Price' )->get_all( array( array( 'Price_Type.PBT_ID' => 4 ) ) );
101
+		self::$_default_taxes = ! empty(self::$_default_taxes) ? self::$_default_taxes : EE_Registry::instance()->load_model('Price')->get_all(array(array('Price_Type.PBT_ID' => 4)));
102 102
 		return self::$_default_taxes;
103 103
 	}
104 104
 
Please login to merge, or discard this patch.
core/db_classes/EE_Term_Relationship.class.php 1 patch
Spacing   +7 added lines, -7 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
  * Event Espresso
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
 	 * @param array $props_n_values
31 31
 	 * @return EE_Term_Relationship
32 32
 	 */
33
-	public static function new_instance( $props_n_values = array() ) {
34
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
35
-		return $has_object ? $has_object : new self( $props_n_values );
33
+	public static function new_instance($props_n_values = array()) {
34
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
35
+		return $has_object ? $has_object : new self($props_n_values);
36 36
 	}
37 37
 
38 38
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
 	 * @param array $props_n_values
42 42
 	 * @return EE_Term_Relationship
43 43
 	 */
44
-	public static function new_instance_from_db( $props_n_values = array() ) {
45
-		return new self( $props_n_values, TRUE );
44
+	public static function new_instance_from_db($props_n_values = array()) {
45
+		return new self($props_n_values, TRUE);
46 46
 	}
47 47
 
48 48
 
Please login to merge, or discard this patch.
core/db_classes/EE_Ticket_Price.class.php 1 patch
Spacing   +7 added lines, -7 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
  * Event Espresso
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	 * @param string $timezone
36 36
 	 * @return EE_Ticket_Price|mixed
37 37
 	 */
38
-	public static function new_instance( $props_n_values = array(), $timezone = '' ) {
39
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone );
40
-		return $has_object ? $has_object : new self( $props_n_values, FALSE, $timezone );
38
+	public static function new_instance($props_n_values = array(), $timezone = '') {
39
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone);
40
+		return $has_object ? $has_object : new self($props_n_values, FALSE, $timezone);
41 41
 	}
42 42
 
43 43
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @param string $timezone
48 48
 	 * @return EE_Ticket_Price
49 49
 	 */
50
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) {
51
-		return new self( $props_n_values, TRUE, $timezone );
50
+	public static function new_instance_from_db($props_n_values = array(), $timezone = '') {
51
+		return new self($props_n_values, TRUE, $timezone);
52 52
 	}
53 53
 
54 54
 
Please login to merge, or discard this patch.
core/db_classes/EE_Ticket_Template.class.php 1 patch
Spacing   +7 added lines, -7 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
  * Event Espresso
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	 * @param string $timezone
36 36
 	 * @return EE_Ticket_Template|mixed
37 37
 	 */
38
-	public static function new_instance( $props_n_values = array(), $timezone = '' ) {
39
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone );
40
-		return $has_object ? $has_object : new self( $props_n_values, FALSE, $timezone );
38
+	public static function new_instance($props_n_values = array(), $timezone = '') {
39
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone);
40
+		return $has_object ? $has_object : new self($props_n_values, FALSE, $timezone);
41 41
 	}
42 42
 
43 43
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @param string $timezone
48 48
 	 * @return EE_Ticket_Template
49 49
 	 */
50
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) {
51
-		return new self( $props_n_values, TRUE, $timezone );
50
+	public static function new_instance_from_db($props_n_values = array(), $timezone = '') {
51
+		return new self($props_n_values, TRUE, $timezone);
52 52
 	}
53 53
 
54 54
 
Please login to merge, or discard this patch.