Completed
Branch FET-8394-RULES (1d3dd5)
by
unknown
83:13 queued 71:39
created
core/libraries/batch/Helpers/JobStepResponse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@
 block discarded – undo
43 43
 	 * @param string $update_text
44 44
 	 * @param array $extra_data
45 45
 	 */
46
-	public function __construct(JobParameters $job_parameters, $update_text, $extra_data = array() ) {
47
-		$this->_job_parameters 	= $job_parameters;
46
+	public function __construct(JobParameters $job_parameters, $update_text, $extra_data = array()) {
47
+		$this->_job_parameters = $job_parameters;
48 48
 		$this->_update_text 	= $update_text;
49
-		$this->_extra_data 		= (array)$extra_data;
49
+		$this->_extra_data 		= (array) $extra_data;
50 50
 	}
51 51
 
52 52
 
Please login to merge, or discard this patch.
core/libraries/batch/JobHandlerBaseClasses/JobHandlerInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 use EventEspressoBatchRequest\Helpers\JobParameters;
21 21
 use EventEspressoBatchRequest\Helpers\JobStepResponse;
22 22
 
23
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
24
-	exit( 'No direct script access allowed' );
23
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
24
+	exit('No direct script access allowed');
25 25
 }
26 26
 
27 27
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	 * @throws BatchRequestException
36 36
 	 * @return JobStepResponse
37 37
 	 */
38
-	public function create_job( JobParameters $job_parameters );
38
+	public function create_job(JobParameters $job_parameters);
39 39
 
40 40
 	/**
41 41
 	 * Performs another step of the job
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 * @return JobStepResponse
45 45
 	 * @throws BatchRequestException
46 46
 	 */
47
-	public function continue_job( JobParameters $job_parameters, $batch_size = 50 );
47
+	public function continue_job(JobParameters $job_parameters, $batch_size = 50);
48 48
 
49 49
 	/**
50 50
 	 * Performs any clean-up logic when we know the job is completed
@@ -52,5 +52,5 @@  discard block
 block discarded – undo
52 52
 	 * @return JobStepResponse
53 53
 	 * @throws BatchRequestException
54 54
 	 */
55
-	public function cleanup_job( JobParameters $job_parameters );
55
+	public function cleanup_job(JobParameters $job_parameters);
56 56
 }
Please login to merge, or discard this patch.
core/libraries/batch/JobHandlers/AttendeesReport.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,10 +99,10 @@
 block discarded – undo
99 99
 				if( $field_name == 'STA_ID' ){
100 100
 					$state_name_field = \EEM_State::instance()->field_settings_for( 'STA_name' );
101 101
 					$csv_row[ __( 'State', 'event_espresso' ) ] = $attendee_row[ $state_name_field->get_qualified_column() ];
102
-				}elseif( $field_name == 'CNT_ISO' ){
102
+				} elseif( $field_name == 'CNT_ISO' ){
103 103
 					$country_name_field = \EEM_Country::instance()->field_settings_for( 'CNT_name' );
104 104
 					$csv_row[ __( 'Country', 'event_espresso' ) ] = $attendee_row[ $country_name_field->get_qualified_column() ];
105
-				}else{
105
+				} else{
106 106
 					$csv_row[ $field_obj->get_nicename() ] = $attendee_row[ $field_obj->get_qualified_column() ];
107 107
 				}
108 108
 			}
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 use EventEspressoBatchRequest\Helpers\JobParameters;
19 19
 use EventEspressoBatchRequest\Helpers\JobStepResponse;
20 20
 
21
-if (!defined('EVENT_ESPRESSO_VERSION')) {
21
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
22 22
 	exit('No direct script access allowed');
23 23
 }
24 24
 
@@ -27,84 +27,84 @@  discard block
 block discarded – undo
27 27
 
28 28
 
29 29
 	public function create_job(JobParameters $job_parameters) {
30
-		if( ! \EE_Capabilities::instance()->current_user_can( 'ee_read_contacts', 'generating_report' ) ) {
30
+		if ( ! \EE_Capabilities::instance()->current_user_can('ee_read_contacts', 'generating_report')) {
31 31
 			throw new BatchRequestException(
32
-				__( 'You do not have permission to view contacts', 'event_espresso')
32
+				__('You do not have permission to view contacts', 'event_espresso')
33 33
 			);
34 34
 		}
35 35
 		$filepath = $this->create_file_from_job_with_name(
36 36
 			$job_parameters->job_id(),
37 37
 			__('contact-list-report.csv', 'event_espresso')
38 38
 		);
39
-		$job_parameters->add_extra_data( 'filepath', $filepath );
40
-		$job_parameters->set_job_size( $this->count_units_to_process() );
39
+		$job_parameters->add_extra_data('filepath', $filepath);
40
+		$job_parameters->set_job_size($this->count_units_to_process());
41 41
 		//we should also set the header columns
42
-		$csv_data_for_row = $this->get_csv_data( 0, 1 );
43
-		\EEH_Export::write_data_array_to_csv( $filepath, $csv_data_for_row, true );
42
+		$csv_data_for_row = $this->get_csv_data(0, 1);
43
+		\EEH_Export::write_data_array_to_csv($filepath, $csv_data_for_row, true);
44 44
 		//if we actually processed a row there, record it
45
-		if( $job_parameters->job_size() ) {
46
-			$job_parameters->mark_processed( 1 );
45
+		if ($job_parameters->job_size()) {
46
+			$job_parameters->mark_processed(1);
47 47
 		}
48 48
 		return new JobStepResponse(
49 49
 			$job_parameters,
50
-			__( 'Contacts report started successfully...', 'event_espresso' )
50
+			__('Contacts report started successfully...', 'event_espresso')
51 51
 		);
52 52
 	}
53 53
 
54 54
 
55 55
 	public function continue_job(JobParameters $job_parameters, $batch_size = 50) {
56
-		$csv_data = $this->get_csv_data( $job_parameters->units_processed(), $batch_size );
57
-		\EEH_Export::write_data_array_to_csv( $job_parameters->extra_datum( 'filepath' ), $csv_data, false );
58
-		$units_processed = count( $csv_data );
59
-		$job_parameters->mark_processed( $units_processed );
56
+		$csv_data = $this->get_csv_data($job_parameters->units_processed(), $batch_size);
57
+		\EEH_Export::write_data_array_to_csv($job_parameters->extra_datum('filepath'), $csv_data, false);
58
+		$units_processed = count($csv_data);
59
+		$job_parameters->mark_processed($units_processed);
60 60
 		$extra_response_data = array(
61 61
 			'file_url' => ''
62 62
 		);
63
-		if( $units_processed < $batch_size ) {
64
-			$job_parameters->set_status( JobParameters::status_complete );
65
-			$extra_response_data[ 'file_url' ] = $this->get_url_to_file( $job_parameters->extra_datum( 'filepath' ) );
63
+		if ($units_processed < $batch_size) {
64
+			$job_parameters->set_status(JobParameters::status_complete);
65
+			$extra_response_data['file_url'] = $this->get_url_to_file($job_parameters->extra_datum('filepath'));
66 66
 		}
67 67
 		return new JobStepResponse(
68 68
 				$job_parameters,
69 69
 				sprintf(
70
-					__( 'Wrote %1$s rows to report CSV file...', 'event_espresso' ),
71
-					count( $csv_data ) ),
70
+					__('Wrote %1$s rows to report CSV file...', 'event_espresso'),
71
+					count($csv_data) ),
72 72
 				$extra_response_data );
73 73
 	}
74 74
 
75 75
 
76 76
 	public function cleanup_job(JobParameters $job_parameters) {
77 77
 		$this->_file_helper->delete(
78
-			\EEH_File::remove_filename_from_filepath( $job_parameters->extra_datum( 'filepath' ) ),
78
+			\EEH_File::remove_filename_from_filepath($job_parameters->extra_datum('filepath')),
79 79
 			true,
80 80
 			'd'
81 81
 		);
82
-		return new JobStepResponse( $job_parameters, __( 'Cleaned up temporary file', 'event_espresso' ) );
82
+		return new JobStepResponse($job_parameters, __('Cleaned up temporary file', 'event_espresso'));
83 83
 	}
84 84
 
85 85
 	public function count_units_to_process() {
86
-		return \EEM_Attendee::instance()->count( array( 'caps' => \EEM_Base::caps_read_admin ));
86
+		return \EEM_Attendee::instance()->count(array('caps' => \EEM_Base::caps_read_admin));
87 87
 	}
88
-	public function get_csv_data( $offset, $limit ) {
88
+	public function get_csv_data($offset, $limit) {
89 89
 		$attendee_rows = \EEM_Attendee::instance()->get_all_wpdb_results( 
90 90
 			array( 
91
-				'limit' => array( $offset, $limit ),
92
-				'force_join' => array( 'State', 'Country' ),
91
+				'limit' => array($offset, $limit),
92
+				'force_join' => array('State', 'Country'),
93 93
 				'caps' => \EEM_Base::caps_read_admin
94 94
 			) 
95 95
 		);
96 96
 		$csv_data = array();
97
-		foreach( $attendee_rows as $attendee_row ){
97
+		foreach ($attendee_rows as $attendee_row) {
98 98
 			$csv_row = array();
99
-			foreach( \EEM_Attendee::instance()->field_settings() as $field_name => $field_obj ){
100
-				if( $field_name == 'STA_ID' ){
101
-					$state_name_field = \EEM_State::instance()->field_settings_for( 'STA_name' );
102
-					$csv_row[ __( 'State', 'event_espresso' ) ] = $attendee_row[ $state_name_field->get_qualified_column() ];
103
-				}elseif( $field_name == 'CNT_ISO' ){
104
-					$country_name_field = \EEM_Country::instance()->field_settings_for( 'CNT_name' );
105
-					$csv_row[ __( 'Country', 'event_espresso' ) ] = $attendee_row[ $country_name_field->get_qualified_column() ];
106
-				}else{
107
-					$csv_row[ $field_obj->get_nicename() ] = $attendee_row[ $field_obj->get_qualified_column() ];
99
+			foreach (\EEM_Attendee::instance()->field_settings() as $field_name => $field_obj) {
100
+				if ($field_name == 'STA_ID') {
101
+					$state_name_field = \EEM_State::instance()->field_settings_for('STA_name');
102
+					$csv_row[__('State', 'event_espresso')] = $attendee_row[$state_name_field->get_qualified_column()];
103
+				}elseif ($field_name == 'CNT_ISO') {
104
+					$country_name_field = \EEM_Country::instance()->field_settings_for('CNT_name');
105
+					$csv_row[__('Country', 'event_espresso')] = $attendee_row[$country_name_field->get_qualified_column()];
106
+				} else {
107
+					$csv_row[$field_obj->get_nicename()] = $attendee_row[$field_obj->get_qualified_column()];
108 108
 				}
109 109
 			}
110 110
 			$csv_data[] = $csv_row;
Please login to merge, or discard this patch.
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -85,6 +85,11 @@
 block discarded – undo
85 85
 	public function count_units_to_process() {
86 86
 		return \EEM_Attendee::instance()->count( array( 'caps' => \EEM_Base::caps_read_admin ));
87 87
 	}
88
+
89
+	/**
90
+	 * @param integer $offset
91
+	 * @param integer $limit
92
+	 */
88 93
 	public function get_csv_data( $offset, $limit ) {
89 94
 		$attendee_rows = \EEM_Attendee::instance()->get_all_wpdb_results( 
90 95
 			array( 
Please login to merge, or discard this patch.
core/db_classes/EE_Registration.class.php 4 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -649,8 +649,9 @@
 block discarded – undo
649 649
 	 * @return EE_Registration
650 650
 	 */
651 651
 	public function get_primary_registration()  {
652
-		if ( $this->is_primary_registrant() )
653
-			return $this;
652
+		if ( $this->is_primary_registrant() ) {
653
+					return $this;
654
+		}
654 655
 
655 656
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
656 657
 		$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.
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 *
105 105
 	 * @param string  $new_STS_ID
106 106
 	 * @param boolean $use_default
107
-	 * @return bool
107
+	 * @return null|boolean
108 108
 	 * @throws \EE_Error
109 109
 	 */
110 110
 	public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) {
@@ -924,7 +924,7 @@  discard block
 block discarded – undo
924 924
 	/**
925 925
 	 * Sets deleted
926 926
 	 * @param boolean $deleted
927
-	 * @return boolean
927
+	 * @return boolean|null
928 928
 	 */
929 929
 	public function set_deleted($deleted) {
930 930
 		$this->set( 'REG_deleted', $deleted );
@@ -968,6 +968,7 @@  discard block
 block discarded – undo
968 968
 	 *
969 969
 	 * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against
970 970
 	 * @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.
971
+	 * @param integer $DTT_OR_ID
971 972
 	 *
972 973
 	 * @return bool
973 974
 	 */
@@ -1106,7 +1107,7 @@  discard block
 block discarded – undo
1106 1107
      * Returns the latest datetime related to this registration (via the ticket attached to the registration).
1107 1108
      * "Latest" is defined by the `DTT_EVT_start` column.
1108 1109
      *
1109
-     * @return EE_Datetime|null
1110
+     * @return null|EE_Base_Class
1110 1111
      * @throws \EE_Error
1111 1112
      */
1112 1113
 	public function get_latest_related_datetime() {
@@ -1377,7 +1378,7 @@  discard block
 block discarded – undo
1377 1378
 	 * This grabs the payment method corresponding to the last payment made for the amount owing on the registration.
1378 1379
 	 * Note: if there are no payments on the registration there will be no payment method returned.
1379 1380
 	 *
1380
-	 * @return EE_Payment_Method|null
1381
+	 * @return null|EE_Base_Class
1381 1382
 	 */
1382 1383
 	public function payment_method() {
1383 1384
 		return EEM_Payment_Method::instance()->get_last_used_for_registration( $this );
Please login to merge, or discard this patch.
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -119,11 +119,11 @@  discard block
 block discarded – undo
119 119
 		) {
120 120
 			// TO approved
121 121
 			if ( $new_STS_ID === EEM_Registration::status_id_approved ) {
122
-                \EEH_Debug_Tools::printr(__FUNCTION__, 'BEFORE HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
123
-                // reserve a space by incrementing ticket and datetime sold values
122
+				\EEH_Debug_Tools::printr(__FUNCTION__, 'BEFORE HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
123
+				// reserve a space by incrementing ticket and datetime sold values
124 124
 				$this->_reserve_registration_space();
125 125
 				do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID );
126
-                \EEH_Debug_Tools::printr(__FUNCTION__, 'AFTER HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
126
+				\EEH_Debug_Tools::printr(__FUNCTION__, 'AFTER HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
127 127
 				exit();
128 128
 			// OR FROM  approved
129 129
 			} else if ( $old_STS_ID === EEM_Registration::status_id_approved ) {
@@ -648,9 +648,9 @@  discard block
 block discarded – undo
648 648
 
649 649
 
650 650
 	/**
651
-	*		get  Attendee Number
652
-	* 		@access		public
653
-	*/
651
+	 *		get  Attendee Number
652
+	 * 		@access		public
653
+	 */
654 654
 	public function count() {
655 655
 		return $this->get( 'REG_count' );
656 656
 	}
@@ -1032,20 +1032,20 @@  discard block
 block discarded – undo
1032 1032
 
1033 1033
 
1034 1034
 
1035
-    /**
1036
-     * toggle Check-in status for this registration
1037
-     * Check-ins are toggled in the following order:
1038
-     * never checked in -> checked in
1039
-     * checked in -> checked out
1040
-     * checked out -> checked in
1041
-     *
1042
-     * @param  int $DTT_ID  include specific datetime to toggle Check-in for.
1043
-     *                      If not included or null, then it is assumed latest datetime is being toggled.
1044
-     * @param bool $verify  If true then can_checkin() is used to verify whether the person
1045
-     *                      can be checked in or not.  Otherwise this forces change in checkin status.
1046
-     * @return bool|int     the chk_in status toggled to OR false if nothing got changed.
1047
-     * @throws EE_Error
1048
-     */
1035
+	/**
1036
+	 * toggle Check-in status for this registration
1037
+	 * Check-ins are toggled in the following order:
1038
+	 * never checked in -> checked in
1039
+	 * checked in -> checked out
1040
+	 * checked out -> checked in
1041
+	 *
1042
+	 * @param  int $DTT_ID  include specific datetime to toggle Check-in for.
1043
+	 *                      If not included or null, then it is assumed latest datetime is being toggled.
1044
+	 * @param bool $verify  If true then can_checkin() is used to verify whether the person
1045
+	 *                      can be checked in or not.  Otherwise this forces change in checkin status.
1046
+	 * @return bool|int     the chk_in status toggled to OR false if nothing got changed.
1047
+	 * @throws EE_Error
1048
+	 */
1049 1049
 	public function toggle_checkin_status( $DTT_ID = null, $verify = false ) {
1050 1050
 		if ( empty( $DTT_ID ) ) {
1051 1051
 			$datetime = $this->get_latest_related_datetime();
@@ -1102,13 +1102,13 @@  discard block
 block discarded – undo
1102 1102
 
1103 1103
 
1104 1104
 
1105
-    /**
1106
-     * Returns the latest datetime related to this registration (via the ticket attached to the registration).
1107
-     * "Latest" is defined by the `DTT_EVT_start` column.
1108
-     *
1109
-     * @return EE_Datetime|null
1110
-     * @throws \EE_Error
1111
-     */
1105
+	/**
1106
+	 * Returns the latest datetime related to this registration (via the ticket attached to the registration).
1107
+	 * "Latest" is defined by the `DTT_EVT_start` column.
1108
+	 *
1109
+	 * @return EE_Datetime|null
1110
+	 * @throws \EE_Error
1111
+	 */
1112 1112
 	public function get_latest_related_datetime() {
1113 1113
 		return EEM_Datetime::instance()->get_one(
1114 1114
 			array(
@@ -1122,12 +1122,12 @@  discard block
 block discarded – undo
1122 1122
 
1123 1123
 
1124 1124
 
1125
-    /**
1126
-     * Returns the earliest datetime related to this registration (via the ticket attached to the registration).
1127
-     * "Earliest" is defined by the `DTT_EVT_start` column.
1128
-     *
1129
-     * @throws \EE_Error
1130
-     */
1125
+	/**
1126
+	 * Returns the earliest datetime related to this registration (via the ticket attached to the registration).
1127
+	 * "Earliest" is defined by the `DTT_EVT_start` column.
1128
+	 *
1129
+	 * @throws \EE_Error
1130
+	 */
1131 1131
 	public function get_earliest_related_datetime() {
1132 1132
 		return EEM_Datetime::instance()->get_one(
1133 1133
 			array(
@@ -1141,18 +1141,18 @@  discard block
 block discarded – undo
1141 1141
 
1142 1142
 
1143 1143
 
1144
-    /**
1145
-     * This method simply returns the check-in status for this registration and the given datetime.
1146
-     * If neither the datetime nor the checkin values are provided as arguments,
1147
-     * then this will return the LATEST check-in status for the registration across all datetimes it belongs to.
1148
-     *
1149
-     * @param  int $DTT_ID        The ID of the datetime we're checking against
1150
-     *                            (if empty we'll get the primary datetime for
1151
-     *                            this registration (via event) and use it's ID);
1152
-     * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id.
1153
-     * @return int                Integer representing Check-in status.
1154
-     * @throws \EE_Error
1155
-     */
1144
+	/**
1145
+	 * This method simply returns the check-in status for this registration and the given datetime.
1146
+	 * If neither the datetime nor the checkin values are provided as arguments,
1147
+	 * then this will return the LATEST check-in status for the registration across all datetimes it belongs to.
1148
+	 *
1149
+	 * @param  int $DTT_ID        The ID of the datetime we're checking against
1150
+	 *                            (if empty we'll get the primary datetime for
1151
+	 *                            this registration (via event) and use it's ID);
1152
+	 * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id.
1153
+	 * @return int                Integer representing Check-in status.
1154
+	 * @throws \EE_Error
1155
+	 */
1156 1156
 	public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = null ) {
1157 1157
 		$checkin_query_params = array(
1158 1158
 			'order_by' => array( 'CHK_timestamp' => 'DESC' )
@@ -1164,8 +1164,8 @@  discard block
 block discarded – undo
1164 1164
 
1165 1165
 		//get checkin object (if exists)
1166 1166
 		$checkin = $checkin instanceof EE_Checkin
1167
-            ? $checkin
1168
-            : $this->get_first_related( 'Checkin', $checkin_query_params );
1167
+			? $checkin
1168
+			: $this->get_first_related( 'Checkin', $checkin_query_params );
1169 1169
 		if ( $checkin instanceof EE_Checkin ) {
1170 1170
 			if ( $checkin->get( 'CHK_in' ) ) {
1171 1171
 				return EE_Registration::checkin_status_in; //checked in
@@ -1418,7 +1418,7 @@  discard block
 block discarded – undo
1418 1418
 
1419 1419
 
1420 1420
 
1421
-    /*************************** DEPRECATED ***************************/
1421
+	/*************************** DEPRECATED ***************************/
1422 1422
 
1423 1423
 
1424 1424
 
@@ -1468,24 +1468,24 @@  discard block
 block discarded – undo
1468 1468
 
1469 1469
 
1470 1470
 
1471
-    /**
1472
-     * Gets the primary datetime related to this registration via the related Event to this registration
1473
-     *
1474
-     * @deprecated 4.9.17
1475
-     * @return EE_Datetime
1476
-     */
1477
-    public function get_related_primary_datetime() {
1478
-        EE_Error::doing_it_wrong(
1479
-            __METHOD__,
1480
-            esc_html__(
1481
-                'Use EE_Registration::get_latest_related_datetime() or EE_Registration::get_earliest_related_datetime()',
1482
-                'event_espresso'
1483
-            ),
1484
-            '4.9.17',
1485
-            '5.0.0'
1486
-        );
1487
-        return $this->event()->primary_datetime();
1488
-    }
1471
+	/**
1472
+	 * Gets the primary datetime related to this registration via the related Event to this registration
1473
+	 *
1474
+	 * @deprecated 4.9.17
1475
+	 * @return EE_Datetime
1476
+	 */
1477
+	public function get_related_primary_datetime() {
1478
+		EE_Error::doing_it_wrong(
1479
+			__METHOD__,
1480
+			esc_html__(
1481
+				'Use EE_Registration::get_latest_related_datetime() or EE_Registration::get_earliest_related_datetime()',
1482
+				'event_espresso'
1483
+			),
1484
+			'4.9.17',
1485
+			'5.0.0'
1486
+		);
1487
+		return $this->event()->primary_datetime();
1488
+	}
1489 1489
 
1490 1490
 
1491 1491
 }
Please login to merge, or discard this patch.
Spacing   +197 added lines, -197 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php use EventEspresso\core\exceptions\EntityNotFoundException;
2 2
 
3
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
4
-	exit( 'No direct script access allowed' );
3
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
4
+	exit('No direct script access allowed');
5 5
 }
6 6
 /**
7 7
  * EE_Registration class
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 	 *                             		    date_format and the second value is the time format
44 44
 	 * @return EE_Registration
45 45
 	 */
46
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
47
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
48
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
46
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
47
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
48
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
49 49
 	}
50 50
 
51 51
 
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	 *                          		the website will be used.
57 57
 	 * @return EE_Registration
58 58
 	 */
59
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
60
-		return new self( $props_n_values, TRUE, $timezone );
59
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
60
+		return new self($props_n_values, TRUE, $timezone);
61 61
 	}
62 62
 
63 63
 
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 	 *
68 68
 	 * @param        int $EVT_ID Event ID
69 69
 	 */
70
-	public function set_event( $EVT_ID = 0 ) {
71
-		$this->set( 'EVT_ID', $EVT_ID );
70
+	public function set_event($EVT_ID = 0) {
71
+		$this->set('EVT_ID', $EVT_ID);
72 72
 	}
73 73
 
74 74
 
@@ -79,18 +79,18 @@  discard block
 block discarded – undo
79 79
 	 * @param mixed  $field_value
80 80
 	 * @param bool   $use_default
81 81
 	 */
82
-	public function set( $field_name, $field_value, $use_default = FALSE ) {
83
-		switch( $field_name ) {
82
+	public function set($field_name, $field_value, $use_default = FALSE) {
83
+		switch ($field_name) {
84 84
 			case 'REG_code' :
85
-				if ( ! empty( $field_value ) && $this->reg_code() == '' ) {
86
-					$this->set_reg_code( $field_value, $use_default );
85
+				if ( ! empty($field_value) && $this->reg_code() == '') {
86
+					$this->set_reg_code($field_value, $use_default);
87 87
 				}
88 88
 				break;
89 89
 			case 'STS_ID' :
90
-				$this->set_status( $field_value, $use_default );
90
+				$this->set_status($field_value, $use_default);
91 91
 				break;
92 92
 			default :
93
-				parent::set( $field_name, $field_value, $use_default );
93
+				parent::set($field_name, $field_value, $use_default);
94 94
 		}
95 95
 	}
96 96
 
@@ -107,45 +107,45 @@  discard block
 block discarded – undo
107 107
 	 * @return bool
108 108
 	 * @throws \EE_Error
109 109
 	 */
110
-	public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) {
110
+	public function set_status($new_STS_ID = NULL, $use_default = FALSE) {
111 111
 		// get current REG_Status
112 112
 		$old_STS_ID = $this->status_ID();
113 113
 		// if status has changed
114 114
 		if (
115 115
 			$this->ID() // ensure registration is in the db
116 116
 			&& $old_STS_ID != $new_STS_ID // and that status has actually changed
117
-			&& ! empty( $old_STS_ID ) // and that old status is actually set
118
-			&& ! empty( $new_STS_ID ) // as well as the new status
117
+			&& ! empty($old_STS_ID) // and that old status is actually set
118
+			&& ! empty($new_STS_ID) // as well as the new status
119 119
 		) {
120 120
 			// TO approved
121
-			if ( $new_STS_ID === EEM_Registration::status_id_approved ) {
122
-                \EEH_Debug_Tools::printr(__FUNCTION__, 'BEFORE HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
121
+			if ($new_STS_ID === EEM_Registration::status_id_approved) {
122
+                \EEH_Debug_Tools::printr(__FUNCTION__, 'BEFORE HOOK '.__CLASS__, __FILE__, __LINE__, 2);
123 123
                 // reserve a space by incrementing ticket and datetime sold values
124 124
 				$this->_reserve_registration_space();
125
-				do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID );
126
-                \EEH_Debug_Tools::printr(__FUNCTION__, 'AFTER HOOK ' . __CLASS__, __FILE__, __LINE__, 2);
125
+				do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID);
126
+                \EEH_Debug_Tools::printr(__FUNCTION__, 'AFTER HOOK '.__CLASS__, __FILE__, __LINE__, 2);
127 127
 				exit();
128 128
 			// OR FROM  approved
129
-			} else if ( $old_STS_ID === EEM_Registration::status_id_approved ) {
129
+			} else if ($old_STS_ID === EEM_Registration::status_id_approved) {
130 130
 				// release a space by decrementing ticket and datetime sold values
131 131
 				$this->_release_registration_space();
132
-				do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID );
132
+				do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID);
133 133
 			}
134 134
 			// update status
135
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
135
+			parent::set('STS_ID', $new_STS_ID, $use_default);
136 136
 			/** @type EE_Registration_Processor $registration_processor */
137
-			$registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' );
137
+			$registration_processor = EE_Registry::instance()->load_class('Registration_Processor');
138 138
 			/** @type EE_Transaction_Processor $transaction_processor */
139
-			$transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' );
139
+			$transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor');
140 140
 			/** @type EE_Transaction_Payments $transaction_payments */
141
-			$transaction_payments = EE_Registry::instance()->load_class( 'Transaction_Payments' );
141
+			$transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments');
142 142
 			// these reg statuses should not be considered in any calculations involving monies owing
143
-			$closed_reg_statuses = ! empty( $closed_reg_statuses )
143
+			$closed_reg_statuses = ! empty($closed_reg_statuses)
144 144
 				? $closed_reg_statuses
145 145
 				: EEM_Registration::closed_reg_statuses();
146 146
 			if (
147
-				in_array( $new_STS_ID, $closed_reg_statuses )
148
-				&& ! in_array( $old_STS_ID, $closed_reg_statuses )
147
+				in_array($new_STS_ID, $closed_reg_statuses)
148
+				&& ! in_array($old_STS_ID, $closed_reg_statuses)
149 149
 			) {
150 150
 				// cancelled or declined registration
151 151
 				$registration_processor->update_registration_after_being_canceled_or_declined(
@@ -158,24 +158,24 @@  discard block
 block discarded – undo
158 158
 					false
159 159
 				);
160 160
 			} else if (
161
-				in_array( $old_STS_ID, $closed_reg_statuses )
162
-				&& ! in_array( $new_STS_ID, $closed_reg_statuses )
161
+				in_array($old_STS_ID, $closed_reg_statuses)
162
+				&& ! in_array($new_STS_ID, $closed_reg_statuses)
163 163
 			) {
164 164
 				// reinstating cancelled or declined registration
165 165
 				$registration_processor->update_canceled_or_declined_registration_after_being_reinstated(
166 166
 					$this,
167 167
 					$closed_reg_statuses
168 168
 				);
169
-				$transaction_processor->update_transaction_after_reinstating_canceled_registration( $this );
169
+				$transaction_processor->update_transaction_after_reinstating_canceled_registration($this);
170 170
 			}
171
-			$transaction_payments->recalculate_transaction_total( $this->transaction(), false );
172
-			$this->transaction()->update_status_based_on_total_paid( true );
173
-			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
171
+			$transaction_payments->recalculate_transaction_total($this->transaction(), false);
172
+			$this->transaction()->update_status_based_on_total_paid(true);
173
+			do_action('AHEE__EE_Registration__set_status__after_update', $this);
174 174
 			return TRUE;
175 175
 		} else {
176 176
 			//even though the old value matches the new value, it's still good to
177 177
 			//allow the parent set method to have a say
178
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
178
+			parent::set('STS_ID', $new_STS_ID, $use_default);
179 179
 			return TRUE;
180 180
 		}
181 181
 	}
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 *        get Status ID
187 187
 	 */
188 188
 	public function status_ID() {
189
-		return $this->get( 'STS_ID' );
189
+		return $this->get('STS_ID');
190 190
 	}
191 191
 
192 192
 
@@ -211,12 +211,12 @@  discard block
 block discarded – undo
211 211
 	 * @param boolean $include_archived whether to include archived tickets or not.
212 212
 	 * @return EE_Ticket
213 213
 	 */
214
-	public function ticket( $include_archived = TRUE ) {
214
+	public function ticket($include_archived = TRUE) {
215 215
 		$query_params = array();
216
-		if ( $include_archived ) {
217
-			$query_params[ 'default_where_conditions' ] = 'none';
216
+		if ($include_archived) {
217
+			$query_params['default_where_conditions'] = 'none';
218 218
 		}
219
-		return $this->get_first_related( 'Ticket', $query_params );
219
+		return $this->get_first_related('Ticket', $query_params);
220 220
 	}
221 221
 
222 222
 
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 	 */
245 245
 	public function wp_user() {
246 246
 		$event = $this->event();
247
-		if ( $event instanceof EE_Event ) {
247
+		if ($event instanceof EE_Event) {
248 248
 			return $event->wp_user();
249 249
 		}
250 250
 		return 0;
@@ -269,8 +269,8 @@  discard block
 block discarded – undo
269 269
 	 *
270 270
 	 * @param        int $ATT_ID Attendee ID
271 271
 	 */
272
-	public function set_attendee_id( $ATT_ID = 0 ) {
273
-		$this->set( 'ATT_ID', $ATT_ID );
272
+	public function set_attendee_id($ATT_ID = 0) {
273
+		$this->set('ATT_ID', $ATT_ID);
274 274
 	}
275 275
 
276 276
 
@@ -280,8 +280,8 @@  discard block
 block discarded – undo
280 280
 	 *
281 281
 	 * @param        int $TXN_ID Transaction ID
282 282
 	 */
283
-	public function set_transaction_id( $TXN_ID = 0 ) {
284
-		$this->set( 'TXN_ID', $TXN_ID );
283
+	public function set_transaction_id($TXN_ID = 0) {
284
+		$this->set('TXN_ID', $TXN_ID);
285 285
 	}
286 286
 
287 287
 
@@ -291,8 +291,8 @@  discard block
 block discarded – undo
291 291
 	 *
292 292
 	 * @param    string $REG_session PHP Session ID
293 293
 	 */
294
-	public function set_session( $REG_session = '' ) {
295
-		$this->set( 'REG_session', $REG_session );
294
+	public function set_session($REG_session = '') {
295
+		$this->set('REG_session', $REG_session);
296 296
 	}
297 297
 
298 298
 
@@ -302,8 +302,8 @@  discard block
 block discarded – undo
302 302
 	 *
303 303
 	 * @param    string $REG_url_link Registration URL Link
304 304
 	 */
305
-	public function set_reg_url_link( $REG_url_link = '' ) {
306
-		$this->set( 'REG_url_link', $REG_url_link );
305
+	public function set_reg_url_link($REG_url_link = '') {
306
+		$this->set('REG_url_link', $REG_url_link);
307 307
 	}
308 308
 
309 309
 
@@ -313,8 +313,8 @@  discard block
 block discarded – undo
313 313
 	 *
314 314
 	 * @param        int $REG_count Primary Attendee
315 315
 	 */
316
-	public function set_count( $REG_count = 1 ) {
317
-		$this->set( 'REG_count', $REG_count );
316
+	public function set_count($REG_count = 1) {
317
+		$this->set('REG_count', $REG_count);
318 318
 	}
319 319
 
320 320
 
@@ -324,8 +324,8 @@  discard block
 block discarded – undo
324 324
 	 *
325 325
 	 * @param        boolean $REG_group_size Group Registration
326 326
 	 */
327
-	public function set_group_size( $REG_group_size = FALSE ) {
328
-		$this->set( 'REG_group_size', $REG_group_size );
327
+	public function set_group_size($REG_group_size = FALSE) {
328
+		$this->set('REG_group_size', $REG_group_size);
329 329
 	}
330 330
 
331 331
 
@@ -401,8 +401,8 @@  discard block
 block discarded – undo
401 401
 	 *
402 402
 	 * @param        mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date
403 403
 	 */
404
-	public function set_reg_date( $REG_date = FALSE ) {
405
-		$this->set( 'REG_date', $REG_date );
404
+	public function set_reg_date($REG_date = FALSE) {
405
+		$this->set('REG_date', $REG_date);
406 406
 	}
407 407
 
408 408
 
@@ -413,8 +413,8 @@  discard block
 block discarded – undo
413 413
 	 * @access    public
414 414
 	 * @param    float $REG_final_price
415 415
 	 */
416
-	public function set_final_price( $REG_final_price = 0.00 ) {
417
-		$this->set( 'REG_final_price', $REG_final_price );
416
+	public function set_final_price($REG_final_price = 0.00) {
417
+		$this->set('REG_final_price', $REG_final_price);
418 418
 	}
419 419
 
420 420
 
@@ -425,8 +425,8 @@  discard block
 block discarded – undo
425 425
 	 * @access    public
426 426
 	 * @param    float $REG_paid
427 427
 	 */
428
-	public function set_paid( $REG_paid = 0.00 ) {
429
-		$this->set( 'REG_paid', $REG_paid );
428
+	public function set_paid($REG_paid = 0.00) {
429
+		$this->set('REG_paid', $REG_paid);
430 430
 	}
431 431
 
432 432
 
@@ -436,8 +436,8 @@  discard block
 block discarded – undo
436 436
 	 *
437 437
 	 * @param        boolean $REG_att_is_going Attendee Is Going
438 438
 	 */
439
-	public function set_att_is_going( $REG_att_is_going = FALSE ) {
440
-		$this->set( 'REG_att_is_going', $REG_att_is_going );
439
+	public function set_att_is_going($REG_att_is_going = FALSE) {
440
+		$this->set('REG_att_is_going', $REG_att_is_going);
441 441
 	}
442 442
 
443 443
 
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
 	 * @return EE_Attendee
448 448
 	 */
449 449
 	public function attendee() {
450
-		return $this->get_first_related( 'Attendee' );
450
+		return $this->get_first_related('Attendee');
451 451
 	}
452 452
 
453 453
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 	 *        get Event ID
457 457
 	 */
458 458
 	public function event_ID() {
459
-		return $this->get( 'EVT_ID' );
459
+		return $this->get('EVT_ID');
460 460
 	}
461 461
 
462 462
 
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 	 */
467 467
 	public function event_name() {
468 468
 		$event = $this->event_obj();
469
-		if ( $event ) {
469
+		if ($event) {
470 470
 			return $event->name();
471 471
 		} else {
472 472
 			return NULL;
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 	 * @return EE_Event
481 481
 	 */
482 482
 	public function event_obj() {
483
-		return $this->get_first_related( 'Event' );
483
+		return $this->get_first_related('Event');
484 484
 	}
485 485
 
486 486
 
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
 	 *        get Attendee ID
490 490
 	 */
491 491
 	public function attendee_ID() {
492
-		return $this->get( 'ATT_ID' );
492
+		return $this->get('ATT_ID');
493 493
 	}
494 494
 
495 495
 
@@ -498,7 +498,7 @@  discard block
 block discarded – undo
498 498
 	 *        get PHP Session ID
499 499
 	 */
500 500
 	public function session_ID() {
501
-		return $this->get( 'REG_session' );
501
+		return $this->get('REG_session');
502 502
 	}
503 503
 
504 504
 
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
509 509
 	 * @return string
510 510
 	 */
511
-	public function receipt_url( $messenger = 'html' ) {
511
+	public function receipt_url($messenger = 'html') {
512 512
 
513 513
 		/**
514 514
 		 * 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.
@@ -516,12 +516,12 @@  discard block
 block discarded – undo
516 516
 		 * @since 4.5.0
517 517
 		 */
518 518
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php';
519
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
519
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
520 520
 
521
-		if ( $has_custom ) {
522
-			return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) );
521
+		if ($has_custom) {
522
+			return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch'));
523 523
 		}
524
-		return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' );
524
+		return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt');
525 525
 	}
526 526
 
527 527
 
@@ -532,28 +532,28 @@  discard block
 block discarded – undo
532 532
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
533 533
 	 * @return string
534 534
 	 */
535
-	public function invoice_url( $messenger = 'html' ) {
535
+	public function invoice_url($messenger = 'html') {
536 536
 		/**
537 537
 		 * 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.
538 538
 		 *
539 539
 		 * @since 4.5.0
540 540
 		 */
541 541
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php';
542
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
542
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
543 543
 
544
-		if ( $has_custom ) {
545
-			if ( $messenger == 'html' ) {
546
-				return $this->invoice_url( 'launch' );
544
+		if ($has_custom) {
545
+			if ($messenger == 'html') {
546
+				return $this->invoice_url('launch');
547 547
 			}
548 548
 			$route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice';
549 549
 
550
-			$query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() );
551
-			if ( $messenger == 'html' ) {
550
+			$query_args = array('ee' => $route, 'id' => $this->reg_url_link());
551
+			if ($messenger == 'html') {
552 552
 				$query_args['html'] = TRUE;
553 553
 			}
554
-			return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) );
554
+			return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id));
555 555
 		}
556
-		return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' );
556
+		return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice');
557 557
 	}
558 558
 
559 559
 
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
 	 * @throws \EE_Error
567 567
 	 */
568 568
 	public function reg_url_link() {
569
-		return (string)$this->get( 'REG_url_link' );
569
+		return (string) $this->get('REG_url_link');
570 570
 	}
571 571
 
572 572
 
@@ -576,8 +576,8 @@  discard block
 block discarded – undo
576 576
 	 * @param string $type 'download','launch', or 'html' (default is 'launch')
577 577
 	 * @return void
578 578
 	 */
579
-	public function e_invoice_url( $type = 'launch' ) {
580
-		echo $this->invoice_url( $type );
579
+	public function e_invoice_url($type = 'launch') {
580
+		echo $this->invoice_url($type);
581 581
 	}
582 582
 
583 583
 
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 	 * @return string
598 598
 	 */
599 599
 	public function payment_overview_url() {
600
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() );
600
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url());
601 601
 	}
602 602
 
603 603
 
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
 	 * @return string
609 609
 	 */
610 610
 	public function edit_attendee_information_url() {
611
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() );
611
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url());
612 612
 	}
613 613
 
614 614
 
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
 	 * @return string
619 619
 	 */
620 620
 	public function get_admin_edit_url() {
621
-		return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) );
621
+		return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php'));
622 622
 	}
623 623
 
624 624
 
@@ -627,7 +627,7 @@  discard block
 block discarded – undo
627 627
 	 *    is_primary_registrant?
628 628
 	 */
629 629
 	public function is_primary_registrant() {
630
-		return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE;
630
+		return $this->get('REG_count') == 1 ? TRUE : FALSE;
631 631
 	}
632 632
 
633 633
 
@@ -636,12 +636,12 @@  discard block
 block discarded – undo
636 636
 	 * This returns the primary registration object for this registration group (which may be this object).
637 637
 	 * @return EE_Registration
638 638
 	 */
639
-	public function get_primary_registration()  {
640
-		if ( $this->is_primary_registrant() )
639
+	public function get_primary_registration() {
640
+		if ($this->is_primary_registrant())
641 641
 			return $this;
642 642
 
643 643
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
644
-		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
644
+		$primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1)));
645 645
 		return $primary_registrant;
646 646
 	}
647 647
 
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
 	* 		@access		public
653 653
 	*/
654 654
 	public function count() {
655
-		return $this->get( 'REG_count' );
655
+		return $this->get('REG_count');
656 656
 	}
657 657
 
658 658
 
@@ -661,7 +661,7 @@  discard block
 block discarded – undo
661 661
 	 *        get Group Size
662 662
 	 */
663 663
 	public function group_size() {
664
-		return $this->get( 'REG_group_size' );
664
+		return $this->get('REG_group_size');
665 665
 	}
666 666
 
667 667
 
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
 	 *        get Registration Date
671 671
 	 */
672 672
 	public function date() {
673
-		return $this->get( 'REG_date' );
673
+		return $this->get('REG_date');
674 674
 	}
675 675
 
676 676
 
@@ -681,8 +681,8 @@  discard block
 block discarded – undo
681 681
 	 * @param string $time_format
682 682
 	 * @return string
683 683
 	 */
684
-	public function pretty_date( $date_format = NULL, $time_format = NULL ) {
685
-		return $this->get_datetime( 'REG_date', $date_format, $time_format );
684
+	public function pretty_date($date_format = NULL, $time_format = NULL) {
685
+		return $this->get_datetime('REG_date', $date_format, $time_format);
686 686
 	}
687 687
 
688 688
 
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
 	 * @return    float
695 695
 	 */
696 696
 	public function final_price() {
697
-		return $this->get( 'REG_final_price' );
697
+		return $this->get('REG_final_price');
698 698
 	}
699 699
 
700 700
 
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
 	 * @return string
706 706
 	 */
707 707
 	public function pretty_final_price() {
708
-		return $this->get_pretty( 'REG_final_price' );
708
+		return $this->get_pretty('REG_final_price');
709 709
 	}
710 710
 
711 711
 
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
 	 * @return 	float
716 716
 	 */
717 717
 	public function paid() {
718
-		return $this->get( 'REG_paid' );
718
+		return $this->get('REG_paid');
719 719
 	}
720 720
 
721 721
 
@@ -725,7 +725,7 @@  discard block
 block discarded – undo
725 725
 	 * @return 	float
726 726
 	 */
727 727
 	public function pretty_paid() {
728
-		return $this->get_pretty( 'REG_paid' );
728
+		return $this->get_pretty('REG_paid');
729 729
 	}
730 730
 
731 731
 
@@ -736,11 +736,11 @@  discard block
 block discarded – undo
736 736
 	 * @param array $requires_payment
737 737
 	 * @return bool
738 738
 	 */
739
-	public function owes_monies_and_can_pay( $requires_payment = array()) {
739
+	public function owes_monies_and_can_pay($requires_payment = array()) {
740 740
 		// these reg statuses require payment (if event is not free)
741
-		$requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
741
+		$requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
742 742
 		if (
743
-			in_array( $this->status_ID(), $requires_payment ) &&
743
+			in_array($this->status_ID(), $requires_payment) &&
744 744
 			$this->final_price() != 0 &&
745 745
 			$this->final_price() != $this->paid()
746 746
 		) {
@@ -757,8 +757,8 @@  discard block
 block discarded – undo
757 757
 	 * @param bool $show_icons
758 758
 	 * @return void
759 759
 	 */
760
-	public function e_pretty_status( $show_icons = FALSE ) {
761
-		echo $this->pretty_status( $show_icons );
760
+	public function e_pretty_status($show_icons = FALSE) {
761
+		echo $this->pretty_status($show_icons);
762 762
 	}
763 763
 
764 764
 
@@ -769,10 +769,10 @@  discard block
 block discarded – undo
769 769
 	 * @param bool $show_icons
770 770
 	 * @return string
771 771
 	 */
772
-	public function pretty_status( $show_icons = FALSE ) {
773
-		$status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' );
772
+	public function pretty_status($show_icons = FALSE) {
773
+		$status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence');
774 774
 		$icon = '';
775
-		switch ( $this->status_ID() ) {
775
+		switch ($this->status_ID()) {
776 776
 			case EEM_Registration::status_id_approved:
777 777
 				$icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : '';
778 778
 				break;
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
 				$icon = $show_icons ? '<span class="dashicons dashicons-clipboard ee-icon-size-16 purple-text"></span>' : '';
796 796
 				break;
797 797
 		}
798
-		return $icon . $status[ $this->status_ID() ];
798
+		return $icon.$status[$this->status_ID()];
799 799
 	}
800 800
 
801 801
 
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
 	 *        get Attendee Is Going
805 805
 	 */
806 806
 	public function att_is_going() {
807
-		return $this->get( 'REG_att_is_going' );
807
+		return $this->get('REG_att_is_going');
808 808
 	}
809 809
 
810 810
 
@@ -814,8 +814,8 @@  discard block
 block discarded – undo
814 814
 	 * @param array $query_params like EEM_Base::get_all
815 815
 	 * @return EE_Answer[]
816 816
 	 */
817
-	public function answers( $query_params = NULL ) {
818
-		return $this->get_many_related( 'Answer', $query_params );
817
+	public function answers($query_params = NULL) {
818
+		return $this->get_many_related('Answer', $query_params);
819 819
 	}
820 820
 
821 821
 
@@ -829,9 +829,9 @@  discard block
 block discarded – undo
829 829
 	 * (because the answer might be an array of answer values, so passing pretty_value=true
830 830
 	 * will convert it into some kind of string)
831 831
 	 */
832
-	public function answer_value_to_question( $question, $pretty_value=true ) {
832
+	public function answer_value_to_question($question, $pretty_value = true) {
833 833
 		$question_id = EEM_Question::instance()->ensure_is_ID($question);
834
-		return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value);
834
+		return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value);
835 835
 	}
836 836
 
837 837
 
@@ -844,13 +844,13 @@  discard block
 block discarded – undo
844 844
 	 */
845 845
 	public function question_groups() {
846 846
 		$question_groups = array();
847
-		if ( $this->event() instanceof EE_Event ) {
847
+		if ($this->event() instanceof EE_Event) {
848 848
 			$question_groups = $this->event()->question_groups(
849 849
 				array(
850 850
 					array(
851 851
 						'Event_Question_Group.EQG_primary' => $this->count() == 1 ? true : false
852 852
 					),
853
-					'order_by' => array( 'QSG_order' => 'ASC' )
853
+					'order_by' => array('QSG_order' => 'ASC')
854 854
 				)
855 855
 			);
856 856
 		}
@@ -867,7 +867,7 @@  discard block
 block discarded – undo
867 867
 	 */
868 868
 	public function count_question_groups() {
869 869
 		$qg_count = 0;
870
-		if ( $this->event() instanceof EE_Event ) {
870
+		if ($this->event() instanceof EE_Event) {
871 871
 			$qg_count = $this->event()->count_related(
872 872
 				'Question_Group',
873 873
 				array(
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
 	 * @return string
889 889
 	 */
890 890
 	public function reg_date() {
891
-		return $this->get_datetime( 'REG_date' );
891
+		return $this->get_datetime('REG_date');
892 892
 	}
893 893
 
894 894
 
@@ -900,7 +900,7 @@  discard block
 block discarded – undo
900 900
 	 * @return EE_Datetime_Ticket
901 901
 	 */
902 902
 	public function datetime_ticket() {
903
-		return $this->get_first_related( 'Datetime_Ticket' );
903
+		return $this->get_first_related('Datetime_Ticket');
904 904
 	}
905 905
 
906 906
 
@@ -910,15 +910,15 @@  discard block
 block discarded – undo
910 910
 	 * @param EE_Datetime_Ticket $datetime_ticket
911 911
 	 * @return EE_Datetime_Ticket
912 912
 	 */
913
-	public function set_datetime_ticket( $datetime_ticket ) {
914
-		return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' );
913
+	public function set_datetime_ticket($datetime_ticket) {
914
+		return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket');
915 915
 	}
916 916
 	/**
917 917
 	 * Gets deleted
918 918
 	 * @return boolean
919 919
 	 */
920 920
 	public function deleted() {
921
-		return $this->get( 'REG_deleted' );
921
+		return $this->get('REG_deleted');
922 922
 	}
923 923
 
924 924
 	/**
@@ -927,7 +927,7 @@  discard block
 block discarded – undo
927 927
 	 * @return boolean
928 928
 	 */
929 929
 	public function set_deleted($deleted) {
930
-		$this->set( 'REG_deleted', $deleted );
930
+		$this->set('REG_deleted', $deleted);
931 931
 	}
932 932
 
933 933
 
@@ -937,7 +937,7 @@  discard block
 block discarded – undo
937 937
 	 * @return EE_Status
938 938
 	 */
939 939
 	public function status_obj() {
940
-		return $this->get_first_related( 'Status' );
940
+		return $this->get_first_related('Status');
941 941
 	}
942 942
 
943 943
 
@@ -948,7 +948,7 @@  discard block
 block discarded – undo
948 948
 	 * @return int
949 949
 	 */
950 950
 	public function count_checkins() {
951
-		return $this->get_model()->count_related( $this, 'Checkin' );
951
+		return $this->get_model()->count_related($this, 'Checkin');
952 952
 	}
953 953
 
954 954
 
@@ -958,7 +958,7 @@  discard block
 block discarded – undo
958 958
 	 * @return int
959 959
 	 */
960 960
 	public function count_checkins_not_checkedout() {
961
-		return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) );
961
+		return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1)));
962 962
 	}
963 963
 
964 964
 
@@ -971,20 +971,20 @@  discard block
 block discarded – undo
971 971
 	 *
972 972
 	 * @return bool
973 973
 	 */
974
-	public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) {
975
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
974
+	public function can_checkin($DTT_OR_ID, $check_approved = TRUE) {
975
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
976 976
 
977 977
 		//first check registration status
978
-		if (  ( $check_approved && ! $this->is_approved() ) || ! $DTT_ID ) {
978
+		if (($check_approved && ! $this->is_approved()) || ! $DTT_ID) {
979 979
 			return false;
980 980
 		}
981 981
 		//is there a datetime ticket that matches this dtt_ID?
982
-		if ( ! ( EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) ) ) ) {
982
+		if ( ! (EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID))))) {
983 983
 			return false;
984 984
 		}
985 985
 
986 986
 		//final check is against TKT_uses
987
-		return $this->verify_can_checkin_against_TKT_uses( $DTT_ID );
987
+		return $this->verify_can_checkin_against_TKT_uses($DTT_ID);
988 988
 	}
989 989
 
990 990
 
@@ -997,10 +997,10 @@  discard block
 block discarded – undo
997 997
 	 * @param int | EE_Datetime  $DTT_OR_ID  The datetime the registration is being checked against
998 998
 	 * @return bool   true means can checkin.  false means cannot checkin.
999 999
 	 */
1000
-	public function verify_can_checkin_against_TKT_uses( $DTT_OR_ID ) {
1001
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
1000
+	public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) {
1001
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
1002 1002
 
1003
-		if ( ! $DTT_ID ) {
1003
+		if ( ! $DTT_ID) {
1004 1004
 			return false;
1005 1005
 		}
1006 1006
 
@@ -1008,23 +1008,23 @@  discard block
 block discarded – undo
1008 1008
 
1009 1009
 		// if max uses is not set or equals infinity then return true cause its not a factor for whether user can check-in
1010 1010
 		// or not.
1011
-		if ( ! $max_uses || $max_uses === EE_INF ) {
1011
+		if ( ! $max_uses || $max_uses === EE_INF) {
1012 1012
 			return true;
1013 1013
 		}
1014 1014
 
1015 1015
 		//does this datetime have a checkin record?  If so, then the dtt count has already been verified so we can just
1016 1016
 		//go ahead and toggle.
1017
-		if ( EEM_Checkin::instance()->exists( array( array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID ) ) ) ) {
1017
+		if (EEM_Checkin::instance()->exists(array(array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID)))) {
1018 1018
 			return true;
1019 1019
 		}
1020 1020
 
1021 1021
 		//made it here so the last check is whether the number of checkins per unique datetime on this registration
1022 1022
 		//disallows further check-ins.
1023
-		$count_unique_dtt_checkins = EEM_Checkin::instance()->count( array( array( 'REG_ID' => $this->ID(), 'CHK_in' => true ) ), 'DTT_ID', true );
1023
+		$count_unique_dtt_checkins = EEM_Checkin::instance()->count(array(array('REG_ID' => $this->ID(), 'CHK_in' => true)), 'DTT_ID', true);
1024 1024
 		// checkins have already reached their max number of uses
1025 1025
 		// so registrant can NOT checkin
1026
-		if ( $count_unique_dtt_checkins >= $max_uses ) {
1027
-			EE_Error::add_error( __( 'Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
1026
+		if ($count_unique_dtt_checkins >= $max_uses) {
1027
+			EE_Error::add_error(__('Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1028 1028
 			return false;
1029 1029
 		}
1030 1030
 		return true;
@@ -1046,15 +1046,15 @@  discard block
 block discarded – undo
1046 1046
      * @return bool|int     the chk_in status toggled to OR false if nothing got changed.
1047 1047
      * @throws EE_Error
1048 1048
      */
1049
-	public function toggle_checkin_status( $DTT_ID = null, $verify = false ) {
1050
-		if ( empty( $DTT_ID ) ) {
1049
+	public function toggle_checkin_status($DTT_ID = null, $verify = false) {
1050
+		if (empty($DTT_ID)) {
1051 1051
 			$datetime = $this->get_latest_related_datetime();
1052 1052
 			$DTT_ID = $datetime instanceof EE_Datetime ? $datetime->ID() : 0;
1053 1053
 		// verify the registration can checkin for the given DTT_ID
1054
-		} elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) {
1054
+		} elseif ( ! $this->can_checkin($DTT_ID, $verify)) {
1055 1055
 			EE_Error::add_error(
1056 1056
 					sprintf(
1057
-						__( 'The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'),
1057
+						__('The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'),
1058 1058
 						$this->ID(),
1059 1059
 						$DTT_ID
1060 1060
 					),
@@ -1068,8 +1068,8 @@  discard block
 block discarded – undo
1068 1068
 			EE_Registration::checkin_status_out => EE_Registration::checkin_status_in
1069 1069
 		);
1070 1070
 		//start by getting the current status so we know what status we'll be changing to.
1071
-		$cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL );
1072
-		$status_to = $status_paths[ $cur_status ];
1071
+		$cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL);
1072
+		$status_to = $status_paths[$cur_status];
1073 1073
 		// database only records true for checked IN or false for checked OUT
1074 1074
 		// no record ( null ) means checked in NEVER, but we obviously don't save that
1075 1075
 		$new_status = $status_to === EE_Registration::checkin_status_in ? true : false;
@@ -1077,24 +1077,24 @@  discard block
 block discarded – undo
1077 1077
 		// because we are keeping track of Check-ins over time.
1078 1078
 		// Eventually we'll probably want to show a list table
1079 1079
 		// for the individual Check-ins so that they can be managed.
1080
-		$checkin = EE_Checkin::new_instance( array(
1080
+		$checkin = EE_Checkin::new_instance(array(
1081 1081
 				'REG_ID' => $this->ID(),
1082 1082
 				'DTT_ID' => $DTT_ID,
1083 1083
 				'CHK_in' => $new_status
1084
-		) );
1084
+		));
1085 1085
 		// if the record could not be saved then return false
1086
-		if ( $checkin->save() === 0 ) {
1087
-			if ( WP_DEBUG ) {
1086
+		if ($checkin->save() === 0) {
1087
+			if (WP_DEBUG) {
1088 1088
 				global $wpdb;
1089 1089
 				$error = sprintf(
1090
-					__( 'Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso' ),
1090
+					__('Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso'),
1091 1091
 					'<br />',
1092 1092
 					$wpdb->last_error
1093 1093
 				);
1094 1094
 			} else {
1095
-				$error = __( 'Registration check in update failed because of an unknown database error', 'event_espresso' );
1095
+				$error = __('Registration check in update failed because of an unknown database error', 'event_espresso');
1096 1096
 			}
1097
-			EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
1097
+			EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
1098 1098
 			return false;
1099 1099
 		}
1100 1100
 		return $status_to;
@@ -1115,7 +1115,7 @@  discard block
 block discarded – undo
1115 1115
 				array(
1116 1116
 					'Ticket.Registration.REG_ID' => $this->ID()
1117 1117
 				),
1118
-				'order_by' => array( 'DTT_EVT_start' => 'DESC' )
1118
+				'order_by' => array('DTT_EVT_start' => 'DESC')
1119 1119
 			)
1120 1120
 		);
1121 1121
 	}
@@ -1134,7 +1134,7 @@  discard block
 block discarded – undo
1134 1134
 				array(
1135 1135
 					'Ticket.Registration.REG_ID' => $this->ID()
1136 1136
 				),
1137
-				'order_by' => array( 'DTT_EVT_start' => 'ASC' )
1137
+				'order_by' => array('DTT_EVT_start' => 'ASC')
1138 1138
 			)
1139 1139
 		);
1140 1140
 	}
@@ -1153,21 +1153,21 @@  discard block
 block discarded – undo
1153 1153
      * @return int                Integer representing Check-in status.
1154 1154
      * @throws \EE_Error
1155 1155
      */
1156
-	public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = null ) {
1156
+	public function check_in_status_for_datetime($DTT_ID = 0, $checkin = null) {
1157 1157
 		$checkin_query_params = array(
1158
-			'order_by' => array( 'CHK_timestamp' => 'DESC' )
1158
+			'order_by' => array('CHK_timestamp' => 'DESC')
1159 1159
 		);
1160 1160
 
1161
-		if ( $DTT_ID > 0 ) {
1162
-			$checkin_query_params[0] = array( 'DTT_ID' => $DTT_ID );
1161
+		if ($DTT_ID > 0) {
1162
+			$checkin_query_params[0] = array('DTT_ID' => $DTT_ID);
1163 1163
 		}
1164 1164
 
1165 1165
 		//get checkin object (if exists)
1166 1166
 		$checkin = $checkin instanceof EE_Checkin
1167 1167
             ? $checkin
1168
-            : $this->get_first_related( 'Checkin', $checkin_query_params );
1169
-		if ( $checkin instanceof EE_Checkin ) {
1170
-			if ( $checkin->get( 'CHK_in' ) ) {
1168
+            : $this->get_first_related('Checkin', $checkin_query_params);
1169
+		if ($checkin instanceof EE_Checkin) {
1170
+			if ($checkin->get('CHK_in')) {
1171 1171
 				return EE_Registration::checkin_status_in; //checked in
1172 1172
 			}
1173 1173
 			return EE_Registration::checkin_status_out; //had checked in but is now checked out.
@@ -1183,28 +1183,28 @@  discard block
 block discarded – undo
1183 1183
 	 * @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.
1184 1184
 	 * @return string         internationalized message
1185 1185
 	 */
1186
-	public function get_checkin_msg( $DTT_ID, $error = FALSE ) {
1186
+	public function get_checkin_msg($DTT_ID, $error = FALSE) {
1187 1187
 		//let's get the attendee first so we can include the name of the attendee
1188
-		$attendee = $this->get_first_related( 'Attendee' );
1189
-		if ( $attendee instanceof EE_Attendee ) {
1190
-			if ( $error ) {
1191
-				return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() );
1188
+		$attendee = $this->get_first_related('Attendee');
1189
+		if ($attendee instanceof EE_Attendee) {
1190
+			if ($error) {
1191
+				return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name());
1192 1192
 			}
1193
-			$cur_status = $this->check_in_status_for_datetime( $DTT_ID );
1193
+			$cur_status = $this->check_in_status_for_datetime($DTT_ID);
1194 1194
 			//what is the status message going to be?
1195
-			switch ( $cur_status ) {
1195
+			switch ($cur_status) {
1196 1196
 				case EE_Registration::checkin_status_never :
1197
-					return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() );
1197
+					return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name());
1198 1198
 					break;
1199 1199
 				case EE_Registration::checkin_status_in :
1200
-					return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() );
1200
+					return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name());
1201 1201
 					break;
1202 1202
 				case EE_Registration::checkin_status_out :
1203
-					return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() );
1203
+					return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name());
1204 1204
 					break;
1205 1205
 			}
1206 1206
 		}
1207
-		return __( "The check-in status could not be determined.", "event_espresso" );
1207
+		return __("The check-in status could not be determined.", "event_espresso");
1208 1208
 	}
1209 1209
 
1210 1210
 
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
 	 *        get Registration Code
1229 1229
 	 */
1230 1230
 	public function reg_code() {
1231
-		return $this->get( 'REG_code' );
1231
+		return $this->get('REG_code');
1232 1232
 	}
1233 1233
 
1234 1234
 
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
 	 *        get Transaction ID
1238 1238
 	 */
1239 1239
 	public function transaction_ID() {
1240
-		return $this->get( 'TXN_ID' );
1240
+		return $this->get('TXN_ID');
1241 1241
 	}
1242 1242
 
1243 1243
 
@@ -1246,7 +1246,7 @@  discard block
 block discarded – undo
1246 1246
 	 * @return int
1247 1247
 	 */
1248 1248
 	public function ticket_ID() {
1249
-		return $this->get( 'TKT_ID' );
1249
+		return $this->get('TKT_ID');
1250 1250
 	}
1251 1251
 
1252 1252
 
@@ -1258,17 +1258,17 @@  discard block
 block discarded – undo
1258 1258
 	 * @param    string $REG_code Registration Code
1259 1259
 	 * @param	boolean $use_default
1260 1260
 	 */
1261
-	public function set_reg_code( $REG_code, $use_default = FALSE ) {
1262
-		if ( empty( $REG_code )) {
1263
-			EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ );
1261
+	public function set_reg_code($REG_code, $use_default = FALSE) {
1262
+		if (empty($REG_code)) {
1263
+			EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1264 1264
 			return;
1265 1265
 		}
1266
-		if ( ! $this->reg_code() ) {
1267
-			parent::set( 'REG_code', $REG_code, $use_default );
1266
+		if ( ! $this->reg_code()) {
1267
+			parent::set('REG_code', $REG_code, $use_default);
1268 1268
 		} else {
1269 1269
 			EE_Error::doing_it_wrong(
1270
-				__CLASS__ . '::' . __FUNCTION__,
1271
-				__( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ),
1270
+				__CLASS__.'::'.__FUNCTION__,
1271
+				__('Can not change a registration REG_code once it has been set.', 'event_espresso'),
1272 1272
 				'4.6.0'
1273 1273
 			);
1274 1274
 		}
@@ -1288,17 +1288,17 @@  discard block
 block discarded – undo
1288 1288
 	 * @return EE_Registration[]  or empty array if this isn't a group registration.
1289 1289
 	 */
1290 1290
 	public function get_all_other_registrations_in_group() {
1291
-		if ( $this->group_size() < 2 ) {
1291
+		if ($this->group_size() < 2) {
1292 1292
 			return array();
1293 1293
 		}
1294 1294
 
1295 1295
 		$query[0] = array(
1296 1296
 			'TXN_ID' => $this->transaction_ID(),
1297
-			'REG_ID' => array( '!=', $this->ID() ),
1297
+			'REG_ID' => array('!=', $this->ID()),
1298 1298
 			'TKT_ID' => $this->ticket_ID()
1299 1299
 			);
1300 1300
 
1301
-		$registrations = $this->get_model()->get_all( $query );
1301
+		$registrations = $this->get_model()->get_all($query);
1302 1302
 		return $registrations;
1303 1303
 	}
1304 1304
 
@@ -1307,14 +1307,14 @@  discard block
 block discarded – undo
1307 1307
 	 * @return string
1308 1308
 	 */
1309 1309
 	public function get_admin_details_link() {
1310
-		EE_Registry::instance()->load_helper( 'URL' );
1310
+		EE_Registry::instance()->load_helper('URL');
1311 1311
 		return EEH_URL::add_query_args_and_nonce(
1312 1312
 			array(
1313 1313
 				'page' => 'espresso_registrations',
1314 1314
 				'action' => 'view_registration',
1315 1315
 				'_REG_ID' => $this->ID()
1316 1316
 			),
1317
-			admin_url( 'admin.php' )
1317
+			admin_url('admin.php')
1318 1318
 		);
1319 1319
 	}
1320 1320
 
@@ -1339,12 +1339,12 @@  discard block
 block discarded – undo
1339 1339
 	 * @return string
1340 1340
 	 */
1341 1341
 	public function get_admin_overview_link() {
1342
-		EE_Registry::instance()->load_helper( 'URL' );
1342
+		EE_Registry::instance()->load_helper('URL');
1343 1343
 		return EEH_URL::add_query_args_and_nonce(
1344 1344
 			array(
1345 1345
 				'page' => 'espresso_registrations'
1346 1346
 			),
1347
-			admin_url( 'admin.php' )
1347
+			admin_url('admin.php')
1348 1348
 		);
1349 1349
 	}
1350 1350
 
@@ -1355,8 +1355,8 @@  discard block
 block discarded – undo
1355 1355
 	 * @return \EE_Registration[]
1356 1356
 	 * @throws \EE_Error
1357 1357
 	 */
1358
-	public function payments( $query_params = array() ) {
1359
-		return $this->get_many_related( 'Payment', $query_params );
1358
+	public function payments($query_params = array()) {
1359
+		return $this->get_many_related('Payment', $query_params);
1360 1360
 	}
1361 1361
 
1362 1362
 
@@ -1366,8 +1366,8 @@  discard block
 block discarded – undo
1366 1366
 	 * @return \EE_Registration_Payment[]
1367 1367
 	 * @throws \EE_Error
1368 1368
 	 */
1369
-	public function registration_payments( $query_params = array() ) {
1370
-		return $this->get_many_related( 'Registration_Payment', $query_params );
1369
+	public function registration_payments($query_params = array()) {
1370
+		return $this->get_many_related('Registration_Payment', $query_params);
1371 1371
 	}
1372 1372
 
1373 1373
 
@@ -1380,7 +1380,7 @@  discard block
 block discarded – undo
1380 1380
 	 * @return EE_Payment_Method|null
1381 1381
 	 */
1382 1382
 	public function payment_method() {
1383
-		return EEM_Payment_Method::instance()->get_last_used_for_registration( $this );
1383
+		return EEM_Payment_Method::instance()->get_last_used_for_registration($this);
1384 1384
 	}
1385 1385
 
1386 1386
 
Please login to merge, or discard this patch.
core/helpers/EEH_Tabbed_Content.helper.php 2 patches
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -46,22 +46,22 @@  discard block
 block discarded – undo
46 46
 	 * @return string the assembled html string containing the tabbed content for display.
47 47
 	 * @throws \EE_Error
48 48
 	 */
49
-	public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE ) {
49
+	public static function display($tabs_contents, $tabs_names = array(), $small_tabs = true, $tabs_content = TRUE) {
50 50
 
51 51
 		//first check if $tabs_names is not empty then the count must match the count of $tabs_content otherwise we've got a problem houston
52
-		if ( !empty( $tabs_names) && ( count( (array) $tabs_names) != count( (array) $tabs_content) ) ) {
53
-			throw new EE_Error( __('The count for $tabs_names and $tabs_content does not match.', 'event_espresso') );
52
+		if ( ! empty($tabs_names) && (count((array) $tabs_names) != count((array) $tabs_content))) {
53
+			throw new EE_Error(__('The count for $tabs_names and $tabs_content does not match.', 'event_espresso'));
54 54
 		}
55 55
 
56 56
 		//make sure we've got incoming data setup properly
57
-		$tabs = !empty( $tabs_names ) ? (array) $tabs_names : array_keys( (array) $tabs_contents );
58
-		$tabs_content = !empty( $tabs_names ) ? array_combine( (array) $tabs_names, (array) $tabs_content ) : $tabs_contents;
57
+		$tabs = ! empty($tabs_names) ? (array) $tabs_names : array_keys((array) $tabs_contents);
58
+		$tabs_content = ! empty($tabs_names) ? array_combine((array) $tabs_names, (array) $tabs_content) : $tabs_contents;
59 59
 
60
-		$all_tabs = '<h2 class="nav-tab-wrapper">' . "\n";
60
+		$all_tabs = '<h2 class="nav-tab-wrapper">'."\n";
61 61
 		$all_tabs_content = '';
62 62
 
63 63
 		$index = 0;
64
-		foreach ( $tabs as $tab ) {
64
+		foreach ($tabs as $tab) {
65 65
 			$active = $index === 0 ? true : false;
66 66
 			$all_tabs .= self::tab($tab, $active);
67 67
 			$all_tabs_content .= self::tab_content($tab, $tabs_content[$tab], $active);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
 		$tab_container_class = $small_tabs ? 'ee-nav-tabs ee-nav-tabs-small' : 'ee-nav-tabs';
80 80
 
81
-		return '<div class="'. $tab_container_class . '">' . "\n\t" . $all_tabs . $all_tabs_content . "\n" . '</div>';
81
+		return '<div class="'.$tab_container_class.'">'."\n\t".$all_tabs.$all_tabs_content."\n".'</div>';
82 82
 	}
83 83
 
84 84
 
@@ -102,11 +102,11 @@  discard block
 block discarded – undo
102 102
 	 * @throws \EE_Error
103 103
 	 */
104 104
 	public static function display_admin_nav_tabs($nav_tabs = array()) {
105
-		if ( empty($nav_tabs) )
106
-			throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) );
105
+		if (empty($nav_tabs))
106
+			throw new EE_Error(__('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso'));
107 107
 
108
-		$all_tabs = '<h2 class="nav-tab-wrapper">' . "\n";
109
-		foreach ( $nav_tabs as $slug => $tab ) {
108
+		$all_tabs = '<h2 class="nav-tab-wrapper">'."\n";
109
+		foreach ($nav_tabs as $slug => $tab) {
110 110
 			$all_tabs .= self::tab($slug, false, $tab['link_text'], $tab['url'], $tab['css_class']);
111 111
 		}
112 112
 		$all_tabs .= '</h2>';
@@ -122,13 +122,13 @@  discard block
 block discarded – undo
122 122
 	 * @param bool|string $css If string given then the generated tab will include that as the class.
123 123
 	 * @return string          html for tab
124 124
 	 */
125
-	private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE ) {
125
+	private static function tab($name, $active = false, $nice_name = FALSE, $url = FALSE, $css = FALSE) {
126 126
 		$name = str_replace(' ', '-', $name);
127 127
 		$class = $active ? 'nav-tab nav-tab-active' : 'nav-tab';
128
-		$class = $css ? $class . ' ' . $css : $class;
129
-		$nice_name = $nice_name ? $nice_name : ucwords( preg_replace('/(-|_)/', ' ', $name) );
130
-		$url = $url ? $url : '#' . $name;
131
-		$tab = '<a class="' . $class . '" rel="ee-tab-' . $name . '" href="' . $url . '">' . $nice_name . '</a>' . "\n\t";
128
+		$class = $css ? $class.' '.$css : $class;
129
+		$nice_name = $nice_name ? $nice_name : ucwords(preg_replace('/(-|_)/', ' ', $name));
130
+		$url = $url ? $url : '#'.$name;
131
+		$tab = '<a class="'.$class.'" rel="ee-tab-'.$name.'" href="'.$url.'">'.$nice_name.'</a>'."\n\t";
132 132
 		return $tab;
133 133
 	}
134 134
 
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	private static function tab_content($name, $tab_content, $active = false) {
146 146
 		$class = $active ? 'nav-tab-content' : 'nav-tab-content hidden';
147
-		$name = str_replace( ' ', '-', $name);
148
-		$content = "\t" . '<div class="'. $class . '" id="ee-tab-' . $name . '">' . "\n";
149
-		$content .= "\t" . $tab_content . "\n";
147
+		$name = str_replace(' ', '-', $name);
148
+		$content = "\t".'<div class="'.$class.'" id="ee-tab-'.$name.'">'."\n";
149
+		$content .= "\t".$tab_content."\n";
150 150
 		$content .= '<div style="clear:both"></div></div>';
151 151
 		return $content;
152 152
 	}
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 	 * @param string $default 			You can include a string for the item that will receive the "item_display" class for the js.
173 173
 	 * @return string                  a html snippet of of all the formatted link elements.
174 174
 	 */
175
-	public static function tab_text_links( $item_array, $container_class = '', $sep = '|', $default = '' ) {
176
-		$item_array = apply_filters( 'FHEE__EEH_Tabbed_Content__tab_text_links', $item_array, $container_class );
177
-		if ( !is_array($item_array) || empty( $item_array ) )
175
+	public static function tab_text_links($item_array, $container_class = '', $sep = '|', $default = '') {
176
+		$item_array = apply_filters('FHEE__EEH_Tabbed_Content__tab_text_links', $item_array, $container_class);
177
+		if ( ! is_array($item_array) || empty($item_array))
178 178
 			return false; //get out we don't have even the basic thing we need!
179 179
 
180 180
 
@@ -185,15 +185,15 @@  discard block
 block discarded – undo
185 185
 			'title' => esc_attr__('Link for Item', 'event_espresso'),
186 186
 			'slug' => 'item_slug'
187 187
 		);
188
-		$container_class = !empty($container_class) ? 'ee-text-links ' . $container_class : 'ee-text-links';
189
-		$list = '<ul class="' . $container_class . '">';
188
+		$container_class = ! empty($container_class) ? 'ee-text-links '.$container_class : 'ee-text-links';
189
+		$list = '<ul class="'.$container_class.'">';
190 190
 
191 191
 		$ci = 1;
192
-		foreach ( $item_array as $item ) {
193
-			$item = wp_parse_args( $item, $defaults );
194
-			$item['class'] = !empty($default) && $default == $item['slug'] ? 'item_display ' . $item['class'] : $item['class'];
192
+		foreach ($item_array as $item) {
193
+			$item = wp_parse_args($item, $defaults);
194
+			$item['class'] = ! empty($default) && $default == $item['slug'] ? 'item_display '.$item['class'] : $item['class'];
195 195
 			$list .= self::_text_link_item($item);
196
-			if ( !empty($sep) && $ci != count($item_array) )
196
+			if ( ! empty($sep) && $ci != count($item_array))
197 197
 				$list .= self::_text_link_item($sep);
198 198
 			$ci++;
199 199
 		}
@@ -204,9 +204,9 @@  discard block
 block discarded – undo
204 204
 
205 205
 
206 206
 
207
-	private static function _text_link_item( $item ) {
207
+	private static function _text_link_item($item) {
208 208
 		//if this isn't an array then we're doing a separator
209
-		if ( !is_array( $item ) ) {
209
+		if ( ! is_array($item)) {
210 210
 			$label = $item;
211 211
 			$class = 'ee-text-link-sep';
212 212
 			$href = '';
@@ -215,12 +215,12 @@  discard block
 block discarded – undo
215 215
 			extract($item);
216 216
 		}
217 217
 
218
-		$class = $class != 'ee-text-link-sep'  ? 'class="ee-text-link-li ' . $class . '"' : 'class="ee-text-link-sep"';
218
+		$class = $class != 'ee-text-link-sep' ? 'class="ee-text-link-li '.$class.'"' : 'class="ee-text-link-sep"';
219 219
 
220
-		$content = '<li ' . $class . '>';
221
-		$content .= !empty($href) ? '<a class="ee-text-link" href="#' . $href . '" title="' . $title . '">' : '';
220
+		$content = '<li '.$class.'>';
221
+		$content .= ! empty($href) ? '<a class="ee-text-link" href="#'.$href.'" title="'.$title.'">' : '';
222 222
 		$content .= $label;
223
-		$content .= !empty($href) ? '</a>' : '';
223
+		$content .= ! empty($href) ? '</a>' : '';
224 224
 		$content .= '</li>';
225 225
 		return $content;
226 226
 	}
Please login to merge, or discard this patch.
Braces   +12 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,6 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
3 3
 	exit('NO direct script access allowed');
4
+}
4 5
 
5 6
 /**
6 7
  * Event Espresso
@@ -102,8 +103,9 @@  discard block
 block discarded – undo
102 103
 	 * @throws \EE_Error
103 104
 	 */
104 105
 	public static function display_admin_nav_tabs($nav_tabs = array()) {
105
-		if ( empty($nav_tabs) )
106
-			throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) );
106
+		if ( empty($nav_tabs) ) {
107
+					throw new EE_Error( __('Nav Tabs cannot be generated because the tab array is missing', 'event_espresso' ) );
108
+		}
107 109
 
108 110
 		$all_tabs = '<h2 class="nav-tab-wrapper">' . "\n";
109 111
 		foreach ( $nav_tabs as $slug => $tab ) {
@@ -174,8 +176,10 @@  discard block
 block discarded – undo
174 176
 	 */
175 177
 	public static function tab_text_links( $item_array, $container_class = '', $sep = '|', $default = '' ) {
176 178
 		$item_array = apply_filters( 'FHEE__EEH_Tabbed_Content__tab_text_links', $item_array, $container_class );
177
-		if ( !is_array($item_array) || empty( $item_array ) )
178
-			return false; //get out we don't have even the basic thing we need!
179
+		if ( !is_array($item_array) || empty( $item_array ) ) {
180
+					return false;
181
+		}
182
+		//get out we don't have even the basic thing we need!
179 183
 
180 184
 
181 185
 		$defaults = array(
@@ -193,8 +197,9 @@  discard block
 block discarded – undo
193 197
 			$item = wp_parse_args( $item, $defaults );
194 198
 			$item['class'] = !empty($default) && $default == $item['slug'] ? 'item_display ' . $item['class'] : $item['class'];
195 199
 			$list .= self::_text_link_item($item);
196
-			if ( !empty($sep) && $ci != count($item_array) )
197
-				$list .= self::_text_link_item($sep);
200
+			if ( !empty($sep) && $ci != count($item_array) ) {
201
+							$list .= self::_text_link_item($sep);
202
+			}
198 203
 			$ci++;
199 204
 		}
200 205
 
Please login to merge, or discard this patch.
caffeinated/modules/recaptcha/ReCaptcha/RequestMethod/Post.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -34,37 +34,37 @@
 block discarded – undo
34 34
  */
35 35
 class Post implements RequestMethod
36 36
 {
37
-    /**
38
-     * URL to which requests are POSTed.
39
-     * @const string
40
-     */
41
-    const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
37
+	/**
38
+	 * URL to which requests are POSTed.
39
+	 * @const string
40
+	 */
41
+	const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
42 42
 
43
-    /**
44
-     * Submit the POST request with the specified parameters.
45
-     *
46
-     * @param RequestParameters $params Request parameters
47
-     * @return string Body of the reCAPTCHA response
48
-     */
49
-    public function submit(RequestParameters $params)
50
-    {
51
-        /**
52
-         * PHP 5.6.0 changed the way you specify the peer name for SSL context options.
53
-         * Using "CN_name" will still work, but it will raise deprecated errors.
54
-         */
55
-        $peer_key = version_compare(PHP_VERSION, '5.6.0', '<') ? 'CN_name' : 'peer_name';
56
-        $options = array(
57
-            'http' => array(
58
-                'header' => "Content-type: application/x-www-form-urlencoded\r\n",
59
-                'method' => 'POST',
60
-                'content' => $params->toQueryString(),
61
-                // Force the peer to validate (not needed in 5.6.0+, but still works
62
-                'verify_peer' => true,
63
-                // Force the peer validation to use www.google.com
64
-                $peer_key => 'www.google.com',
65
-            ),
66
-        );
67
-        $context = stream_context_create($options);
68
-        return file_get_contents(self::SITE_VERIFY_URL, false, $context);
69
-    }
43
+	/**
44
+	 * Submit the POST request with the specified parameters.
45
+	 *
46
+	 * @param RequestParameters $params Request parameters
47
+	 * @return string Body of the reCAPTCHA response
48
+	 */
49
+	public function submit(RequestParameters $params)
50
+	{
51
+		/**
52
+		 * PHP 5.6.0 changed the way you specify the peer name for SSL context options.
53
+		 * Using "CN_name" will still work, but it will raise deprecated errors.
54
+		 */
55
+		$peer_key = version_compare(PHP_VERSION, '5.6.0', '<') ? 'CN_name' : 'peer_name';
56
+		$options = array(
57
+			'http' => array(
58
+				'header' => "Content-type: application/x-www-form-urlencoded\r\n",
59
+				'method' => 'POST',
60
+				'content' => $params->toQueryString(),
61
+				// Force the peer to validate (not needed in 5.6.0+, but still works
62
+				'verify_peer' => true,
63
+				// Force the peer validation to use www.google.com
64
+				$peer_key => 'www.google.com',
65
+			),
66
+		);
67
+		$context = stream_context_create($options);
68
+		return file_get_contents(self::SITE_VERIFY_URL, false, $context);
69
+	}
70 70
 }
Please login to merge, or discard this patch.
registrations/templates/attendee_registrations_main_meta_box.template.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -5,42 +5,42 @@
 block discarded – undo
5 5
 		<table class="admin-primary-mbox-tbl">
6 6
 			<thead>
7 7
 				<tr>
8
-					<th class="jst-left"><?php esc_html_e( 'Event Name', 'event_espresso' );?></th>
9
-					<th class="jst-left"><?php esc_html_e( 'REG ID', 'event_espresso' );?></th>
10
-					<th class="jst-left"><?php esc_html_e( 'TXN ID', 'event_espresso' );?></th>
11
-					<th class="jst-left"><?php esc_html_e( 'Reg Code', 'event_espresso' );?></th>
12
-					<th class="jst-rght"><?php esc_html_e( 'Ticket Price', 'event_espresso' );?></th>
8
+					<th class="jst-left"><?php esc_html_e('Event Name', 'event_espresso'); ?></th>
9
+					<th class="jst-left"><?php esc_html_e('REG ID', 'event_espresso'); ?></th>
10
+					<th class="jst-left"><?php esc_html_e('TXN ID', 'event_espresso'); ?></th>
11
+					<th class="jst-left"><?php esc_html_e('Reg Code', 'event_espresso'); ?></th>
12
+					<th class="jst-rght"><?php esc_html_e('Ticket Price', 'event_espresso'); ?></th>
13 13
 				</tr>
14 14
 			</thead>
15 15
 			<tbody>
16
-			<?php foreach( $registrations as $registration ) : ?>
16
+			<?php foreach ($registrations as $registration) : ?>
17 17
 				<tr>
18 18
 					<td class="jst-left">
19 19
 					<?php
20
-						$event_url = add_query_arg( array( 'action' => 'edit', 'post' => $registration->event_ID() ), admin_url( 'admin.php?page=espresso_events' ));
21
-						echo EE_Registry::instance()->CAP->current_user_can( 'ee_edit_event', 'espresso_events_edit', $registration->event_ID() ) ?  '<a href="'. $event_url .'"  title="'. esc_attr__( 'Edit Event', 'event_espresso' ) .'">' . $registration->event_name() . '</a>' : $registration->event_name();
20
+						$event_url = add_query_arg(array('action' => 'edit', 'post' => $registration->event_ID()), admin_url('admin.php?page=espresso_events'));
21
+						echo EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $registration->event_ID()) ? '<a href="'.$event_url.'"  title="'.esc_attr__('Edit Event', 'event_espresso').'">'.$registration->event_name().'</a>' : $registration->event_name();
22 22
 					?>
23 23
 					</td>
24 24
 					<td class="jst-left">
25 25
 					<?php
26
-							$reg_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_registration', '_REG_ID'=>$registration->ID() ), REG_ADMIN_URL );
27
-							echo EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $registration->ID() ) ? '
28
-							<a href="'.$reg_url.'" title="' . esc_attr__( 'View Registration Details', 'event_espresso' ) . '">' . 
29
-								esc_html__( 'View Registration', 'event_espresso' ) .
26
+							$reg_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_registration', '_REG_ID'=>$registration->ID()), REG_ADMIN_URL);
27
+							echo EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $registration->ID()) ? '
28
+							<a href="'.$reg_url.'" title="'.esc_attr__('View Registration Details', 'event_espresso').'">'. 
29
+								esc_html__('View Registration', 'event_espresso').
30 30
 							'</a>' : $registration->ID();
31 31
 					?>
32 32
 					</td>
33 33
 					<td class="jst-left">
34 34
 					<?php
35
-						$txn_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=>$registration->transaction_ID() ), TXN_ADMIN_URL );
36
-						echo EE_Registry::instance()->CAP->current_user_can( 'ee_read_transaction', 'espresso_transactions_view_transaction' ) ? '
37
-						<a href="'.$txn_url.'" title="' . esc_attr__( 'View Transaction Details', 'event_espresso' ) . '">' .
38
-							sprintf( esc_html__('View Transaction %d', 'event_espresso'), $registration->transaction_ID() ) .
35
+						$txn_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=>$registration->transaction_ID()), TXN_ADMIN_URL);
36
+						echo EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction') ? '
37
+						<a href="'.$txn_url.'" title="'.esc_attr__('View Transaction Details', 'event_espresso').'">'.
38
+							sprintf(esc_html__('View Transaction %d', 'event_espresso'), $registration->transaction_ID()).
39 39
 						'</a>' : $registration->transaction_ID();
40 40
 					?>
41 41
 					</td>
42
-					<td class="jst-left"><?php echo $registration->reg_code();?></td>
43
-					<td class="jst-rght"><?php echo EEH_Template::format_currency( $registration->final_price() );?></td>
42
+					<td class="jst-left"><?php echo $registration->reg_code(); ?></td>
43
+					<td class="jst-rght"><?php echo EEH_Template::format_currency($registration->final_price()); ?></td>
44 44
 				</tr>
45 45
 			<?php endforeach; ?>
46 46
 			</tbody>
Please login to merge, or discard this patch.
strategies/validation/EE_Max_Length_Validation_Strategy.strategy.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,36 +8,36 @@
 block discarded – undo
8 8
  * @subpackage	Expression package is undefined on line 19, column 19 in Templates/Scripting/PHPClass.php.
9 9
  * @author				Mike Nelson
10 10
  */
11
-class EE_Max_Length_Validation_Strategy extends EE_Validation_Strategy_Base{
11
+class EE_Max_Length_Validation_Strategy extends EE_Validation_Strategy_Base {
12 12
 
13 13
 	protected $_max_length;
14 14
 
15
-	public function __construct( $validation_error_message = NULL, $max_length = EE_INF ) {
15
+	public function __construct($validation_error_message = NULL, $max_length = EE_INF) {
16 16
 		$this->_max_length = $max_length;
17
-		if( $validation_error_message === null ) {
18
-			$validation_error_message = sprintf( __( 'Input is too long. Maximum number of characters is %1$s', 'event_espresso' ), $max_length );
17
+		if ($validation_error_message === null) {
18
+			$validation_error_message = sprintf(__('Input is too long. Maximum number of characters is %1$s', 'event_espresso'), $max_length);
19 19
 		}
20
-		parent::__construct( $validation_error_message );
20
+		parent::__construct($validation_error_message);
21 21
 	}
22 22
 
23 23
 	/**
24 24
 	 * @param $normalized_value
25 25
 	 */
26 26
 	public function validate($normalized_value) {
27
-		if( $this->_max_length !== EE_INF &&
27
+		if ($this->_max_length !== EE_INF &&
28 28
 				$normalized_value &&
29
-				is_string( $normalized_value ) &&
30
-				 strlen( $normalized_value ) > $this->_max_length){
31
-			throw new EE_Validation_Error( $this->get_validation_error_message(), 'maxlength' );
29
+				is_string($normalized_value) &&
30
+				 strlen($normalized_value) > $this->_max_length) {
31
+			throw new EE_Validation_Error($this->get_validation_error_message(), 'maxlength');
32 32
 		}
33 33
 	}
34 34
 
35 35
 	/**
36 36
 	 * @return array
37 37
 	 */
38
-	function get_jquery_validation_rule_array(){
39
-		if( $this->_max_length !== EE_INF ) {
40
-			return array( 'maxlength'=> $this->_max_length, 'messages' => array( 'maxlength' => $this->get_validation_error_message() ) );
38
+	function get_jquery_validation_rule_array() {
39
+		if ($this->_max_length !== EE_INF) {
40
+			return array('maxlength'=> $this->_max_length, 'messages' => array('maxlength' => $this->get_validation_error_message()));
41 41
 		} else {
42 42
 			return array();
43 43
 		}
Please login to merge, or discard this patch.
core/db_models/EEM_Extra_Join.model.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -21,26 +21,26 @@
 block discarded – undo
21 21
  * @since		 	   $VID:$
22 22
  *
23 23
  */
24
-if (!defined('EVENT_ESPRESSO_VERSION')) {
24
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
25 25
 	exit('No direct script access allowed');
26 26
 }
27 27
 
28
-class EEM_Extra_Join extends EEM_Base{
28
+class EEM_Extra_Join extends EEM_Base {
29 29
 	// private instance of the Extra Join object
30 30
 	protected static $_instance = NULL;
31 31
 	
32 32
 	public function __construct($timezone = NULL) {
33
-		$models_this_can_join = array_keys( EE_Registry::instance()->non_abstract_db_models );
33
+		$models_this_can_join = array_keys(EE_Registry::instance()->non_abstract_db_models);
34 34
 		$this->_tables = array(
35
-			'Extra_Join' => new EE_Primary_Table( 'esp_extra_join', 'EXJ_ID' ),
35
+			'Extra_Join' => new EE_Primary_Table('esp_extra_join', 'EXJ_ID'),
36 36
 		);
37 37
 		$this->_fields = array(
38 38
 			'Extra_Join' => array(
39
-				'EXJ_ID' => new EE_Primary_Key_Int_Field( 'EXJ_ID', __( 'Extra Join ID', 'event_espresso' ) ),
40
-				'EXJ_first_model_ID' => new EE_Foreign_Key_String_Field( 'EXJ_first_model_ID', __( 'First Model ID', 'event_espresso' ), true, 0, $models_this_can_join ),
41
-				'EXJ_first_model_name' => new EE_Any_Foreign_Model_Name_Field( 'EXJ_first_model_name', __( 'First Model Name', 'event_espresso'), true, '', $models_this_can_join ),
42
-				'EXJ_second_model_ID' => new EE_Foreign_Key_String_Field( 'EXJ_second_model_ID', __( 'Second Model ID', 'event_espresso' ), true, 0, $models_this_can_join ),
43
-				'EXJ_second_model_name' => new EE_Any_Foreign_Model_Name_Field( 'EXJ_second_model_name', __( 'Second Model Name', 'event_espresso'), true, '', $models_this_can_join ),
39
+				'EXJ_ID' => new EE_Primary_Key_Int_Field('EXJ_ID', __('Extra Join ID', 'event_espresso')),
40
+				'EXJ_first_model_ID' => new EE_Foreign_Key_String_Field('EXJ_first_model_ID', __('First Model ID', 'event_espresso'), true, 0, $models_this_can_join),
41
+				'EXJ_first_model_name' => new EE_Any_Foreign_Model_Name_Field('EXJ_first_model_name', __('First Model Name', 'event_espresso'), true, '', $models_this_can_join),
42
+				'EXJ_second_model_ID' => new EE_Foreign_Key_String_Field('EXJ_second_model_ID', __('Second Model ID', 'event_espresso'), true, 0, $models_this_can_join),
43
+				'EXJ_second_model_name' => new EE_Any_Foreign_Model_Name_Field('EXJ_second_model_name', __('Second Model Name', 'event_espresso'), true, '', $models_this_can_join),
44 44
 				
45 45
 			)
46 46
 		);
Please login to merge, or discard this patch.