Completed
Branch FET-8347-separate-logging (f2247f)
by
unknown
39:36 queued 30:33
created
core/db_models/EEM_Payment.model.php 3 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 require_once ( EE_MODELS . 'EEM_Base.model.php' );
3 5
 /**
4 6
  *
Please login to merge, or discard this patch.
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
 
18 18
 
19 19
 /**
20
-	 * Status id in esp_status table that represents an approved payment
21
-	 */
20
+ * Status id in esp_status table that represents an approved payment
21
+ */
22 22
 	const status_id_approved = 'PAP';
23 23
 
24 24
 
@@ -111,14 +111,14 @@  discard block
 block discarded – undo
111 111
 
112 112
 
113 113
 	/**
114
-	*		retrieve  all payments from db for a particular transaction, optionally with
114
+	 *		retrieve  all payments from db for a particular transaction, optionally with
115 115
 	 *		a particular status
116
-	*
117
-	* 		@access		public
118
-	* 		@param		$TXN_ID
116
+	 *
117
+	 * 		@access		public
118
+	 * 		@param		$TXN_ID
119 119
 	 *		@param	string	$status_of_payment one of EEM_Payment::status_id_*, like 'PAP','PCN',etc. If none is provided, gets payments with any status
120
-	*		@return		EE_Payment[]
121
-	*/
120
+	 *		@return		EE_Payment[]
121
+	 */
122 122
 	public function get_payments_for_transaction( $TXN_ID = FALSE, $status_of_payment = null ) {
123 123
 		// all payments for a TXN ordered chronologically
124 124
 		$query_params = array( array( 'TXN_ID' => $TXN_ID ), 'order_by' => array( 'PAY_timestamp' => 'ASC' ));
@@ -145,13 +145,13 @@  discard block
 block discarded – undo
145 145
 
146 146
 
147 147
 	/**
148
-	*		retrieve  all payments from db between two dates
149
-	*
150
-	* 		@access		public
151
-	* 		@param		string		$start_date
152
-	* 		@param		string		$end_date
153
-	*		@return 	EE_Payment[]
154
-	*/
148
+	 *		retrieve  all payments from db between two dates
149
+	 *
150
+	 * 		@access		public
151
+	 * 		@param		string		$start_date
152
+	 * 		@param		string		$end_date
153
+	 *		@return 	EE_Payment[]
154
+	 */
155 155
 	public function get_payments_made_between_dates( $start_date = '', $end_date = '' ) {
156 156
 		// initial values
157 157
 		$start_date = ! empty( $start_date ) ? $start_date : date('Y-m-d',current_time('timestamp'));
Please login to merge, or discard this patch.
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-require_once ( EE_MODELS . 'EEM_Base.model.php' );
2
+require_once (EE_MODELS.'EEM_Base.model.php');
3 3
 /**
4 4
  *
5 5
  * Payment Model
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author				Michael Nelson, Brent Christensen
10 10
  *
11 11
  */
12
-class EEM_Payment extends EEM_Base implements EEMI_Payment{
12
+class EEM_Payment extends EEM_Base implements EEMI_Payment {
13 13
 
14 14
   	// private instance of the Payment object
15 15
 	protected static $_instance = NULL;
@@ -57,28 +57,28 @@  discard block
 block discarded – undo
57 57
 	 *		@param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any incoming timezone data that gets saved).  Note this just sends the timezone info to the date time model field objects.  Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option)
58 58
 	 *		@return EEM_Payment
59 59
 	 */
60
-	protected function __construct( $timezone ) {
60
+	protected function __construct($timezone) {
61 61
 
62
-		$this->singular_item = __('Payment','event_espresso');
63
-		$this->plural_item = __('Payments','event_espresso');
62
+		$this->singular_item = __('Payment', 'event_espresso');
63
+		$this->plural_item = __('Payments', 'event_espresso');
64 64
 
65 65
 		$this->_tables = array(
66
-			'Payment'=>new EE_Primary_Table('esp_payment','PAY_ID')
66
+			'Payment'=>new EE_Primary_Table('esp_payment', 'PAY_ID')
67 67
 		);
68 68
 		$this->_fields = array(
69 69
 			'Payment'=>array(
70
-				'PAY_ID'=>new EE_Primary_Key_Int_Field('PAY_ID', __('Payment ID','event_espresso')),
71
-				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID','event_espresso'), false, 0, 'Transaction'),
72
-				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID','event_espresso'), false, EEM_Payment::status_id_failed, 'Status'),
73
-				'PAY_timestamp'=> new EE_Datetime_Field('PAY_timestamp', __('Timestamp of when payment was attempted','event_espresso'), false, current_time('timestamp'), $timezone ),
74
-				'PAY_source'=>new EE_All_Caps_Text_Field('PAY_source', __('User-friendly description of payment','event_espresso'), false, 'CART'),
75
-				'PAY_amount'=>new EE_Money_Field('PAY_amount', __('Amount Payment should be for','event_espresso'), false, 0),
70
+				'PAY_ID'=>new EE_Primary_Key_Int_Field('PAY_ID', __('Payment ID', 'event_espresso')),
71
+				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID', 'event_espresso'), false, 0, 'Transaction'),
72
+				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID', 'event_espresso'), false, EEM_Payment::status_id_failed, 'Status'),
73
+				'PAY_timestamp'=> new EE_Datetime_Field('PAY_timestamp', __('Timestamp of when payment was attempted', 'event_espresso'), false, current_time('timestamp'), $timezone),
74
+				'PAY_source'=>new EE_All_Caps_Text_Field('PAY_source', __('User-friendly description of payment', 'event_espresso'), false, 'CART'),
75
+				'PAY_amount'=>new EE_Money_Field('PAY_amount', __('Amount Payment should be for', 'event_espresso'), false, 0),
76 76
 				'PMD_ID'=>new EE_Foreign_Key_Int_Field('PMD_ID', __("Payment Method ID", 'event_espresso'), false, NULL, 'Payment_Method'),
77
-				'PAY_gateway_response'=>new EE_Plain_Text_Field('PAY_gateway_response', __('Response from Gateway about the payment','event_espresso'), false, ''),
78
-				'PAY_txn_id_chq_nmbr'=>new EE_Plain_Text_Field('PAY_txn_id_chq_nmbr', __('Gateway Transaction ID or Cheque Number','event_espresso'), true, ''),
79
-				'PAY_po_number'=>new EE_Plain_Text_Field('PAY_po_number', __('Purchase or Sales Number','event_espresso'), true, ''),
80
-				'PAY_extra_accntng'=>new EE_Simple_HTML_Field('PAY_extra_accntng', __('Extra Account Info','event_espresso'), true, ''),
81
-				'PAY_details'=>new EE_Serialized_Text_Field('PAY_details', __('Full Gateway response about payment','event_espresso'), true, ''),
77
+				'PAY_gateway_response'=>new EE_Plain_Text_Field('PAY_gateway_response', __('Response from Gateway about the payment', 'event_espresso'), false, ''),
78
+				'PAY_txn_id_chq_nmbr'=>new EE_Plain_Text_Field('PAY_txn_id_chq_nmbr', __('Gateway Transaction ID or Cheque Number', 'event_espresso'), true, ''),
79
+				'PAY_po_number'=>new EE_Plain_Text_Field('PAY_po_number', __('Purchase or Sales Number', 'event_espresso'), true, ''),
80
+				'PAY_extra_accntng'=>new EE_Simple_HTML_Field('PAY_extra_accntng', __('Extra Account Info', 'event_espresso'), true, ''),
81
+				'PAY_details'=>new EE_Serialized_Text_Field('PAY_details', __('Full Gateway response about payment', 'event_espresso'), true, ''),
82 82
 				'PAY_redirect_url'=>new EE_Plain_Text_Field('PAY_redirect_url', __("Redirect URL", 'event_espresso'), true),
83 83
 				'PAY_redirect_args'=>new EE_Serialized_Text_Field('PAY_redirect_args', __("Key-Value POST vars to send along with redirect", 'event_espresso'), true)
84 84
 			)
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
 			'Transaction'=> new EE_Belongs_To_Relation(),
88 88
 			'Status'=> new EE_Belongs_To_Relation(),
89 89
 			'Payment_Method'=>new EE_Belongs_To_Relation(),
90
-			'Registration' => new EE_HABTM_Relation( 'Registration_Payment' ),
90
+			'Registration' => new EE_HABTM_Relation('Registration_Payment'),
91 91
 		);
92 92
 		$this->_model_chain_to_wp_user = 'Payment_Method';
93 93
 		$this->_caps_slug = 'transactions';
94
-		parent::__construct( $timezone );
94
+		parent::__construct($timezone);
95 95
 	}
96 96
 
97 97
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 * @param string $PAY_txn_id_chq_nmbr
104 104
 	 * @return EE_Payment
105 105
 	 */
106
-	public function get_payment_by_txn_id_chq_nmbr( $PAY_txn_id_chq_nmbr ){
106
+	public function get_payment_by_txn_id_chq_nmbr($PAY_txn_id_chq_nmbr) {
107 107
 		return $this->get_one(array(array('PAY_txn_id_chq_nmbr'=>$PAY_txn_id_chq_nmbr)));
108 108
 	}
109 109
 
@@ -119,15 +119,15 @@  discard block
 block discarded – undo
119 119
 	 *		@param	string	$status_of_payment one of EEM_Payment::status_id_*, like 'PAP','PCN',etc. If none is provided, gets payments with any status
120 120
 	*		@return		EE_Payment[]
121 121
 	*/
122
-	public function get_payments_for_transaction( $TXN_ID = FALSE, $status_of_payment = null ) {
122
+	public function get_payments_for_transaction($TXN_ID = FALSE, $status_of_payment = null) {
123 123
 		// all payments for a TXN ordered chronologically
124
-		$query_params = array( array( 'TXN_ID' => $TXN_ID ), 'order_by' => array( 'PAY_timestamp' => 'ASC' ));
124
+		$query_params = array(array('TXN_ID' => $TXN_ID), 'order_by' => array('PAY_timestamp' => 'ASC'));
125 125
 		// if provided with a status, search specifically for that status. Otherwise get them all
126
-		if ( $status_of_payment ){
126
+		if ($status_of_payment) {
127 127
 			$query_params[0]['STS_ID'] = $status_of_payment;
128 128
 		}
129 129
 		// retrieve payments
130
-		return $this->get_all ( $query_params );
130
+		return $this->get_all($query_params);
131 131
 	}
132 132
 
133 133
 
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
 	 * @param int $TXN_ID
138 138
 	 * @return EE_Payment[]
139 139
 	 */
140
-	public function get_approved_payments_for_transaction( $TXN_ID = 0 ) {
141
-		return $this->get_payments_for_transaction( $TXN_ID, EEM_Payment::status_id_approved );
140
+	public function get_approved_payments_for_transaction($TXN_ID = 0) {
141
+		return $this->get_payments_for_transaction($TXN_ID, EEM_Payment::status_id_approved);
142 142
 
143 143
 	}
144 144
 
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
 	* 		@param		string		$end_date
153 153
 	*		@return 	EE_Payment[]
154 154
 	*/
155
-	public function get_payments_made_between_dates( $start_date = '', $end_date = '' ) {
155
+	public function get_payments_made_between_dates($start_date = '', $end_date = '') {
156 156
 		// initial values
157
-		$start_date = ! empty( $start_date ) ? $start_date : date('Y-m-d',current_time('timestamp'));
158
-		$end_date = ! empty( $end_date ) ? $end_date : date('Y-m-d',current_time('timestamp'));
157
+		$start_date = ! empty($start_date) ? $start_date : date('Y-m-d', current_time('timestamp'));
158
+		$end_date = ! empty($end_date) ? $end_date : date('Y-m-d', current_time('timestamp'));
159 159
 		// make sure our timestamps start and end right at the boundaries for each day
160
-		$start_date = date( 'Y-m-d', strtotime( $start_date )) . ' 00:00:00';
161
-		$end_date = date( 'Y-m-d', strtotime( $end_date )) . ' 23:59:59';
160
+		$start_date = date('Y-m-d', strtotime($start_date)).' 00:00:00';
161
+		$end_date = date('Y-m-d', strtotime($end_date)).' 23:59:59';
162 162
 		// convert to timestamps
163
-		$start_date = strtotime( $start_date );
164
-		$end_date = strtotime( $end_date );
163
+		$start_date = strtotime($start_date);
164
+		$end_date = strtotime($end_date);
165 165
 		// make sure our start date is the lowest value and vice versa
166
-		$start_date = min( $start_date, $end_date );
167
-		$end_date = max( $start_date, $end_date );
168
-		return $this->get_all(array(array('PAY_timestamp'=>array('>=',$start_date),'PAY_timestamp*'=>array('<=',$end_date))));
166
+		$start_date = min($start_date, $end_date);
167
+		$end_date = max($start_date, $end_date);
168
+		return $this->get_all(array(array('PAY_timestamp'=>array('>=', $start_date), 'PAY_timestamp*'=>array('<=', $end_date))));
169 169
 	}
170 170
 
171 171
 	/**
@@ -175,35 +175,35 @@  discard block
 block discarded – undo
175 175
 	 * returns a string for the approved status
176 176
 	 * @return 	string
177 177
 	 */
178
-	function approved_status(){
178
+	function approved_status() {
179 179
 		return self::status_id_approved;
180 180
 	}
181 181
 	/**
182 182
 	 * returns a string for the pending status
183 183
 	 * @return 	string
184 184
 	 */
185
-	function pending_status(){
185
+	function pending_status() {
186 186
 		return self::status_id_pending;
187 187
 	}
188 188
 	/**
189 189
 	 * returns a string for the cancelled status
190 190
 	 * @return 	string
191 191
 	 */
192
-	function cancelled_status(){
192
+	function cancelled_status() {
193 193
 		return self::status_id_cancelled;
194 194
 	}
195 195
 	/**
196 196
 	 * returns a string for the failed status
197 197
 	 * @return 	string
198 198
 	 */
199
-	function failed_status(){
199
+	function failed_status() {
200 200
 		return self::status_id_failed;
201 201
 	}
202 202
 	/**
203 203
 	 * returns a string for the declined status
204 204
 	 * @return 	string
205 205
 	 */
206
-	function declined_status(){
206
+	function declined_status() {
207 207
 		return self::status_id_declined;
208 208
 	}
209 209
 
Please login to merge, or discard this patch.
core/db_models/EEM_Question_Group.model.php 2 patches
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * ------------------------------------------------------------------------
23 23
  */
24
-require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' );
25
-require_once( EE_CLASSES . 'EE_Question_Group.class.php');
24
+require_once (EE_MODELS.'EEM_Soft_Delete_Base.model.php');
25
+require_once(EE_CLASSES.'EE_Question_Group.class.php');
26 26
 class EEM_Question_Group extends EEM_Soft_Delete_Base {
27 27
 	const system_personal = 1;
28 28
 	const system_address = 2;
@@ -30,25 +30,25 @@  discard block
 block discarded – undo
30 30
 	protected static $_instance = NULL;
31 31
 
32 32
 
33
-	protected function __construct( $timezone = NULL ) {
34
-		$this->singular_item = __('Question Group','event_espresso');
35
-		$this->plural_item = __('Question Groups','event_espresso');
33
+	protected function __construct($timezone = NULL) {
34
+		$this->singular_item = __('Question Group', 'event_espresso');
35
+		$this->plural_item = __('Question Groups', 'event_espresso');
36 36
 
37 37
 		$this->_tables = array(
38
-			'Question_Group'=>new EE_Primary_Table('esp_question_group','QSG_ID')
38
+			'Question_Group'=>new EE_Primary_Table('esp_question_group', 'QSG_ID')
39 39
 		);
40 40
 		$this->_fields = array(
41 41
 			'Question_Group'=>array(
42
-				'QSG_ID'=>new EE_Primary_Key_Int_Field('QSG_ID', __('Question Group ID','event_espresso')),
43
-				'QSG_name'=>new EE_Plain_Text_Field('QSG_name', __('Question Group Name','event_espresso'), false, ''),
44
-				'QSG_identifier'=>new EE_Plain_Text_Field('QSG_identifier', __('Text ID for question Group','event_espresso'), false, ''),
45
-				'QSG_desc'=>new EE_Full_HTML_Field('QSG_desc', __('Description of Question Group','event_espresso'), true, ''),
46
-				'QSG_order'=>new EE_Integer_Field('QSG_order', __('Order in which to show the question group','event_espresso'), true, 0),
47
-				'QSG_show_group_name'=>new EE_Boolean_Field('QSG_show_group_name', __('Flag indicating whether to show the group\'s name on the registration page','event_espresso'), false, true),
48
-				'QSG_show_group_desc'=>new EE_Boolean_Field('QSG_show_group_desc', __('Flag indicating whether to show the group\s description on the registration page','event_espresso'), false, false),
49
-				'QSG_wp_user' => new EE_WP_User_Field('QSG_wp_user', __('Question Group Creator ID', 'event_espresso'), FALSE ),
50
-				'QSG_system'=>new EE_Integer_Field('QSG_system', __('Indicate IF this is a system group and if it is what system group it corresponds to.','event_espresso'), false, 0),
51
-				'QSG_deleted'=>new EE_Trashed_Flag_Field('QSG_deleted', __('Flag indicating this question group was deleted','event_espresso'), false, false)
42
+				'QSG_ID'=>new EE_Primary_Key_Int_Field('QSG_ID', __('Question Group ID', 'event_espresso')),
43
+				'QSG_name'=>new EE_Plain_Text_Field('QSG_name', __('Question Group Name', 'event_espresso'), false, ''),
44
+				'QSG_identifier'=>new EE_Plain_Text_Field('QSG_identifier', __('Text ID for question Group', 'event_espresso'), false, ''),
45
+				'QSG_desc'=>new EE_Full_HTML_Field('QSG_desc', __('Description of Question Group', 'event_espresso'), true, ''),
46
+				'QSG_order'=>new EE_Integer_Field('QSG_order', __('Order in which to show the question group', 'event_espresso'), true, 0),
47
+				'QSG_show_group_name'=>new EE_Boolean_Field('QSG_show_group_name', __('Flag indicating whether to show the group\'s name on the registration page', 'event_espresso'), false, true),
48
+				'QSG_show_group_desc'=>new EE_Boolean_Field('QSG_show_group_desc', __('Flag indicating whether to show the group\s description on the registration page', 'event_espresso'), false, false),
49
+				'QSG_wp_user' => new EE_WP_User_Field('QSG_wp_user', __('Question Group Creator ID', 'event_espresso'), FALSE),
50
+				'QSG_system'=>new EE_Integer_Field('QSG_system', __('Indicate IF this is a system group and if it is what system group it corresponds to.', 'event_espresso'), false, 0),
51
+				'QSG_deleted'=>new EE_Trashed_Flag_Field('QSG_deleted', __('Flag indicating this question group was deleted', 'event_espresso'), false, false)
52 52
 			)
53 53
 		);
54 54
 		$this->_model_relations = array(
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
 			'WP_User' => new EE_Belongs_To_Relation(),
59 59
 		);
60 60
 		//this model is generally available for reading
61
-		$this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public();
62
-		$this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Reg_Form('QSG_system');
63
-		$this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Reg_Form('QSG_system');
64
-		$this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Reg_Form('QSG_system');
65
-		parent::__construct( $timezone );
61
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Public();
62
+		$this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Reg_Form('QSG_system');
63
+		$this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Reg_Form('QSG_system');
64
+		$this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Reg_Form('QSG_system');
65
+		parent::__construct($timezone);
66 66
 
67 67
 	}
68 68
 
@@ -75,9 +75,9 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	public function get_latest_question_group_order() {
77 77
 		$columns_to_select = array(
78
-			'max_order' => array("MAX(QSG_order)","%d")
78
+			'max_order' => array("MAX(QSG_order)", "%d")
79 79
 			);
80
-		$max = $this->_get_all_wpdb_results(array(), ARRAY_A, $columns_to_select );
80
+		$max = $this->_get_all_wpdb_results(array(), ARRAY_A, $columns_to_select);
81 81
 		return $max[0]['max_order'];
82 82
 	}
83 83
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/db_models/EEM_Question_Group_Question.model.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -26,26 +26,26 @@  discard block
 block discarded – undo
26 26
  *
27 27
  * ------------------------------------------------------------------------
28 28
  */
29
-require_once ( EE_MODELS . 'EEM_Base.model.php' );
30
-require_once( EE_CLASSES . 'EE_Question_Group_Question.class.php');
29
+require_once (EE_MODELS.'EEM_Base.model.php');
30
+require_once(EE_CLASSES.'EE_Question_Group_Question.class.php');
31 31
 class EEM_Question_Group_Question extends EEM_Base {
32 32
 
33 33
   	// private instance of the Attendee object
34 34
 	protected static $_instance = NULL;
35 35
 
36 36
 
37
-	protected function __construct( $timezone = NULL ) {
38
-		$this->singular_item = __('Question Group to Question Link','event_espresso');
39
-		$this->plural_item = __('Question Group to Question Links','event_espresso');
37
+	protected function __construct($timezone = NULL) {
38
+		$this->singular_item = __('Question Group to Question Link', 'event_espresso');
39
+		$this->plural_item = __('Question Group to Question Links', 'event_espresso');
40 40
 		$this->_tables = array(
41
-			'Question_Group_Question'=>new EE_Primary_Table('esp_question_group_question','QGQ_ID')
41
+			'Question_Group_Question'=>new EE_Primary_Table('esp_question_group_question', 'QGQ_ID')
42 42
 		);
43 43
 		$this->_fields = array(
44 44
 			'Question_Group_Question'=>array(
45
-				'QGQ_ID'=>new EE_Primary_Key_Int_Field('QGQ_ID', __('Question Group to Question Link ID','event_espresso')),
46
-				'QSG_ID'=>new EE_Foreign_Key_Int_Field('QSG_ID', __('Question Group ID','event_espresso'), false, 0, 'Question_Group'),
47
-				'QST_ID'=>new EE_Foreign_Key_Int_Field('QST_ID', __('Question Id','event_espresso'), false, 0, 'Question'),
48
-				'QGQ_order' => new EE_Integer_Field('QGQ_order', __('Question Group Question Order', 'event_espresso'), false, 0 )
45
+				'QGQ_ID'=>new EE_Primary_Key_Int_Field('QGQ_ID', __('Question Group to Question Link ID', 'event_espresso')),
46
+				'QSG_ID'=>new EE_Foreign_Key_Int_Field('QSG_ID', __('Question Group ID', 'event_espresso'), false, 0, 'Question_Group'),
47
+				'QST_ID'=>new EE_Foreign_Key_Int_Field('QST_ID', __('Question Id', 'event_espresso'), false, 0, 'Question'),
48
+				'QGQ_order' => new EE_Integer_Field('QGQ_order', __('Question Group Question Order', 'event_espresso'), false, 0)
49 49
 			)
50 50
 		);
51 51
 		$this->_model_relations = array(
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
 
56 56
 		$this->_model_chain_to_wp_user = 'Question_Group';
57 57
 		//this model is generally available for reading
58
-		$this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public();
59
-		$this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
60
-		$this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
61
-		$this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
58
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Public();
59
+		$this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
60
+		$this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
61
+		$this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Reg_Form('Question_Group.QSG_system');
62 62
 		//use the caps for question groups
63 63
 		$this->_caps_slug = 'question_groups';
64
-		parent::__construct( $timezone );
64
+		parent::__construct($timezone);
65 65
 	}
66 66
 
67 67
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/db_models/EEM_Question_Option.model.php 2 patches
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * ------------------------------------------------------------------------
23 23
  */
24
-require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' );
25
-require_once( EE_CLASSES . 'EE_Question_Option.class.php');
24
+require_once (EE_MODELS.'EEM_Soft_Delete_Base.model.php');
25
+require_once(EE_CLASSES.'EE_Question_Option.class.php');
26 26
 
27 27
 
28 28
 class EEM_Question_Option extends EEM_Soft_Delete_Base {
@@ -30,21 +30,21 @@  discard block
 block discarded – undo
30 30
   	// private instance of the Attendee object
31 31
 	protected static $_instance = NULL;
32 32
 
33
-	protected function __construct( $timezone = NULL ) {
34
-		$this->singular_item = __('Question Option','event_espresso');
35
-		$this->plural_item = __('Question Options','event_espresso');
33
+	protected function __construct($timezone = NULL) {
34
+		$this->singular_item = __('Question Option', 'event_espresso');
35
+		$this->plural_item = __('Question Options', 'event_espresso');
36 36
 
37 37
 		$this->_tables = array(
38
-			'Question_Option'=>new EE_Primary_Table('esp_question_option','QSO_ID')
38
+			'Question_Option'=>new EE_Primary_Table('esp_question_option', 'QSO_ID')
39 39
 		);
40 40
 		$this->_fields = array(
41 41
 			'Question_Option'=>array(
42
-					'QSO_ID'=>new EE_Primary_Key_Int_Field('QSO_ID', __('Question Option ID','event_espresso')),
43
-					'QST_ID'=>new EE_Foreign_Key_Int_Field('QST_ID', __('Question ID','event_espresso'), false, 0, 'Question'),
44
-					'QSO_value'=>new EE_Plain_Text_Field('QSO_value',  __("Question Option Value", "event_espresso"),false,''),
45
-					'QSO_desc'=>new EE_Full_HTML_Field('QSO_desc', __('Question Option Description','event_espresso'), false, ''),
46
-					'QSO_order' => new EE_Integer_Field('QSO_order', __('Question Option Order', 'event_espresso' ), false, 0 ),
47
-					'QSO_deleted'=>new EE_Trashed_Flag_Field('QSO_deleted', __('Flag indicating Option was trashed','event_espresso'), false, false)
42
+					'QSO_ID'=>new EE_Primary_Key_Int_Field('QSO_ID', __('Question Option ID', 'event_espresso')),
43
+					'QST_ID'=>new EE_Foreign_Key_Int_Field('QST_ID', __('Question ID', 'event_espresso'), false, 0, 'Question'),
44
+					'QSO_value'=>new EE_Plain_Text_Field('QSO_value', __("Question Option Value", "event_espresso"), false, ''),
45
+					'QSO_desc'=>new EE_Full_HTML_Field('QSO_desc', __('Question Option Description', 'event_espresso'), false, ''),
46
+					'QSO_order' => new EE_Integer_Field('QSO_order', __('Question Option Order', 'event_espresso'), false, 0),
47
+					'QSO_deleted'=>new EE_Trashed_Flag_Field('QSO_deleted', __('Flag indicating Option was trashed', 'event_espresso'), false, false)
48 48
 				)
49 49
 		);
50 50
 		$this->_model_relations = array(
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
 
54 54
 		$this->_model_chain_to_wp_user = 'Question';
55 55
 		//this model is generally available for reading
56
-		$this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public();
57
-		$this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Reg_Form('Question_Option');
58
-		$this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Reg_Form('Question_Option');
59
-		$this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Reg_Form('Question_Option');
56
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Public();
57
+		$this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Reg_Form('Question_Option');
58
+		$this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Reg_Form('Question_Option');
59
+		$this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Reg_Form('Question_Option');
60 60
 		$this->_caps_slug = 'questions';
61
-		parent::__construct( $timezone );
61
+		parent::__construct($timezone);
62 62
 	}
63 63
 
64 64
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
core/db_models/EEM_Registration.model.php 4 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' );
3 5
 require_once ( EE_CLASSES . 'EE_Registration.class.php' );
4 6
 /**
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	/**
202 202
 	 * This returns a wpdb->results array of all registration date month and years matching the incoming query params and grouped by month and year.
203 203
 	 * @param  array  $where_params Array of query_params as described in the comments for EEM_Base::get_all()
204
-	 * @return wpdb results array
204
+	 * @return stdClass[] results array
205 205
 	 */
206 206
 	public function get_reg_months_and_years( $where_params ) {
207 207
 		$query_params[0] = $where_params;
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
 	* 		@param		$TXN_ID
256 256
 	* 		@param		$ATT_ID
257 257
 	* 		@param		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
258
-	*		@return 		mixed		array on success, FALSE on fail
258
+	*		@return 		EE_Soft_Delete_Base_Class|null		array on success, FALSE on fail
259 259
 	*/
260 260
 	public function get_registration_for_transaction_attendee( $TXN_ID = FALSE, $ATT_ID = FALSE, $att_nmbr = FALSE ) {
261 261
 		return $this->get_one(array(
Please login to merge, or discard this patch.
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -218,11 +218,11 @@  discard block
 block discarded – undo
218 218
 
219 219
 
220 220
 	/**
221
-	*		retrieve ALL registrations for a particular Attendee from db
222
-	* 		@access		public
223
-	* 		@param		int		$ATT_ID
224
-	*		@return 	EE_Registration[]
225
-	*/
221
+	 *		retrieve ALL registrations for a particular Attendee from db
222
+	 * 		@access		public
223
+	 * 		@param		int		$ATT_ID
224
+	 *		@return 	EE_Registration[]
225
+	 */
226 226
 	public function get_all_registrations_for_attendee( $ATT_ID = 0 ) {
227 227
 		if ( ! $ATT_ID ) {
228 228
 			return FALSE;
@@ -249,14 +249,14 @@  discard block
 block discarded – undo
249 249
 
250 250
 
251 251
 	/**
252
-	*		retrieve registration for a specific transaction attendee from db
253
-	*
254
-	* 		@access		public
255
-	* 		@param		$TXN_ID
256
-	* 		@param		$ATT_ID
257
-	* 		@param		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
258
-	*		@return 		mixed		array on success, FALSE on fail
259
-	*/
252
+	 *		retrieve registration for a specific transaction attendee from db
253
+	 *
254
+	 * 		@access		public
255
+	 * 		@param		$TXN_ID
256
+	 * 		@param		$ATT_ID
257
+	 * 		@param		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
258
+	 *		@return 		mixed		array on success, FALSE on fail
259
+	 */
260 260
 	public function get_registration_for_transaction_attendee( $TXN_ID = FALSE, $ATT_ID = FALSE, $att_nmbr = FALSE ) {
261 261
 		return $this->get_one(array(
262 262
 			array(
@@ -268,12 +268,12 @@  discard block
 block discarded – undo
268 268
 
269 269
 
270 270
 	/**
271
-	*		get the number of registrations per day  for the Registration Admin page Reports Tab.
271
+	 *		get the number of registrations per day  for the Registration Admin page Reports Tab.
272 272
 	 *		(doesn't utilize models because it's a fairly specialized query)
273
-	* 		@access		public
273
+	 * 		@access		public
274 274
 	 *		@param $period string which can be passed to php's strtotime function (eg "-1 month")
275 275
 	 *		@return stdClass[] with properties regDate and total
276
-	*/
276
+	 */
277 277
 	public function get_registrations_per_day_report( $period = '-1 month' ) {
278 278
 		$sql_date = date("Y-m-d H:i:s", strtotime($period));
279 279
 
@@ -303,10 +303,10 @@  discard block
 block discarded – undo
303 303
 
304 304
 
305 305
 	/**
306
-	*		get the number of registrations per event  for the Registration Admin page Reports Tab
307
-	* 		@access		public
306
+	 *		get the number of registrations per event  for the Registration Admin page Reports Tab
307
+	 * 		@access		public
308 308
 	 *		@return stdClass[] each with properties event_name, reg_limit, and total
309
-	*/
309
+	 */
310 310
 	public function get_registrations_per_event_report( $period = '-1 month' ) {
311 311
 		$date_sql = date("Y-m-d H:i:s", strtotime($period));
312 312
 
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' );
3
-require_once ( EE_CLASSES . 'EE_Registration.class.php' );
2
+require_once (EE_MODELS.'EEM_Soft_Delete_Base.model.php');
3
+require_once (EE_CLASSES.'EE_Registration.class.php');
4 4
 /**
5 5
  *
6 6
  * Registration Model
@@ -92,31 +92,31 @@  discard block
 block discarded – undo
92 92
 	 *    Note this just sends the timezone info to the date time model field objects.  Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option)
93 93
 	 * @return \EEM_Registration
94 94
 	 */
95
-	protected function __construct( $timezone ) {
96
-		$this->singular_item = __('Registration','event_espresso');
97
-		$this->plural_item = __('Registrations','event_espresso');
95
+	protected function __construct($timezone) {
96
+		$this->singular_item = __('Registration', 'event_espresso');
97
+		$this->plural_item = __('Registrations', 'event_espresso');
98 98
 
99 99
 		$this->_tables = array(
100
-			'Registration'=>new EE_Primary_Table('esp_registration','REG_ID')
100
+			'Registration'=>new EE_Primary_Table('esp_registration', 'REG_ID')
101 101
 		);
102 102
 		$this->_fields = array(
103 103
 			'Registration'=>array(
104
-				'REG_ID'=>new EE_Primary_Key_Int_Field('REG_ID', __('Registration ID','event_espresso')),
105
-				'EVT_ID'=>new EE_Foreign_Key_Int_Field('EVT_ID', __('Even tID','event_espresso'), false, 0, 'Event'),
106
-				'ATT_ID'=>new EE_Foreign_Key_Int_Field('ATT_ID', __('Attendee ID','event_espresso'), false, 0, 'Attendee'),
107
-				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID','event_espresso'), false, 0, 'Transaction'),
108
-				'TKT_ID'=>new EE_Foreign_Key_Int_Field('TKT_ID', __('Ticket ID','event_espresso'), false, 0, 'Ticket'),
109
-				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID','event_espresso'), false, EEM_Registration::status_id_incomplete, 'Status'),
110
-				'REG_date'=>new EE_Datetime_Field('REG_date', __('Time registration occurred','event_espresso'), false, current_time('timestamp'), $timezone ),
111
-				'REG_final_price'=>new EE_Money_Field('REG_final_price', __('Final Price of registration after all ticket/price modifications','event_espresso'), false, 0),
112
-				'REG_paid'=>new EE_Money_Field('REG_paid', __('Amount paid to date towards registration','event_espresso'), false, 0),
113
-				'REG_session'=>new EE_Plain_Text_Field('REG_session', __('Session ID of registration','event_espresso'), false, ''),
114
-				'REG_code'=>new EE_Plain_Text_Field('REG_code', __('Unique Code for this registration','event_espresso'), false, ''),
115
-				'REG_url_link'=>new EE_Plain_Text_Field('REG_url_link', __('String to be used in URL for identifying registration','event_espresso'), false, ''),
116
-				'REG_count'=>new EE_Integer_Field('REG_count', __('Count of this registration in the group registration ','event_espresso'), true, 1),
117
-				'REG_group_size'=>new EE_Integer_Field('REG_group_size', __('Number of registrations on this group','event_espresso'), false, 1),
118
-				'REG_att_is_going'=>new EE_Boolean_Field('REG_att_is_going', __('Flag indicating the registrant plans on attending','event_espresso'), false, false),
119
-				'REG_deleted' => new EE_Trashed_Flag_Field('REG_deleted', __('Flag indicating if registration has been archived or not.', 'event_espresso'), false, false )
104
+				'REG_ID'=>new EE_Primary_Key_Int_Field('REG_ID', __('Registration ID', 'event_espresso')),
105
+				'EVT_ID'=>new EE_Foreign_Key_Int_Field('EVT_ID', __('Even tID', 'event_espresso'), false, 0, 'Event'),
106
+				'ATT_ID'=>new EE_Foreign_Key_Int_Field('ATT_ID', __('Attendee ID', 'event_espresso'), false, 0, 'Attendee'),
107
+				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID', 'event_espresso'), false, 0, 'Transaction'),
108
+				'TKT_ID'=>new EE_Foreign_Key_Int_Field('TKT_ID', __('Ticket ID', 'event_espresso'), false, 0, 'Ticket'),
109
+				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID', 'event_espresso'), false, EEM_Registration::status_id_incomplete, 'Status'),
110
+				'REG_date'=>new EE_Datetime_Field('REG_date', __('Time registration occurred', 'event_espresso'), false, current_time('timestamp'), $timezone),
111
+				'REG_final_price'=>new EE_Money_Field('REG_final_price', __('Final Price of registration after all ticket/price modifications', 'event_espresso'), false, 0),
112
+				'REG_paid'=>new EE_Money_Field('REG_paid', __('Amount paid to date towards registration', 'event_espresso'), false, 0),
113
+				'REG_session'=>new EE_Plain_Text_Field('REG_session', __('Session ID of registration', 'event_espresso'), false, ''),
114
+				'REG_code'=>new EE_Plain_Text_Field('REG_code', __('Unique Code for this registration', 'event_espresso'), false, ''),
115
+				'REG_url_link'=>new EE_Plain_Text_Field('REG_url_link', __('String to be used in URL for identifying registration', 'event_espresso'), false, ''),
116
+				'REG_count'=>new EE_Integer_Field('REG_count', __('Count of this registration in the group registration ', 'event_espresso'), true, 1),
117
+				'REG_group_size'=>new EE_Integer_Field('REG_group_size', __('Number of registrations on this group', 'event_espresso'), false, 1),
118
+				'REG_att_is_going'=>new EE_Boolean_Field('REG_att_is_going', __('Flag indicating the registrant plans on attending', 'event_espresso'), false, false),
119
+				'REG_deleted' => new EE_Trashed_Flag_Field('REG_deleted', __('Flag indicating if registration has been archived or not.', 'event_espresso'), false, false)
120 120
 			)
121 121
 		);
122 122
 		$this->_model_relations = array(
@@ -127,11 +127,11 @@  discard block
 block discarded – undo
127 127
 			'Status'=>new EE_Belongs_To_Relation(),
128 128
 			'Answer'=>new EE_Has_Many_Relation(),
129 129
 			'Checkin'=>new EE_Has_Many_Relation(),
130
-			'Payment'=>new EE_HABTM_Relation( 'Registration_Payment' ),
130
+			'Payment'=>new EE_HABTM_Relation('Registration_Payment'),
131 131
 		);
132 132
 		$this->_model_chain_to_wp_user = 'Event';
133 133
 
134
-		parent::__construct( $timezone );
134
+		parent::__construct($timezone);
135 135
 	}
136 136
 
137 137
 
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
 	 *		@param bool  $translated If true will return the values as singular localized strings
165 165
 	 *		@return array
166 166
 	 */
167
-	public static function reg_status_array( $exclude = array(), $translated = FALSE ) {
168
-		EEM_Registration::instance()->_get_registration_status_array( $exclude );
169
-		return $translated ? EEM_Status::instance()->localized_status( self::$_reg_status, FALSE, 'sentence') : self::$_reg_status;
167
+	public static function reg_status_array($exclude = array(), $translated = FALSE) {
168
+		EEM_Registration::instance()->_get_registration_status_array($exclude);
169
+		return $translated ? EEM_Status::instance()->localized_status(self::$_reg_status, FALSE, 'sentence') : self::$_reg_status;
170 170
 	}
171 171
 
172 172
 
@@ -177,18 +177,18 @@  discard block
 block discarded – undo
177 177
 	 * @param array $exclude
178 178
 	 * @return array
179 179
 	 */
180
-	private function _get_registration_status_array( $exclude = array() ) {
180
+	private function _get_registration_status_array($exclude = array()) {
181 181
 		//in the very rare circumstance that we are deleting a model's table's data
182 182
 		//and the table hasn't actually been created, this could have an error
183 183
 		global $wpdb;
184
-		EE_Registry::instance()->load_helper( 'Activation' );
185
-		if( EEH_Activation::table_exists( $wpdb->prefix . 'esp_status' ) ){
186
-			$SQL = 'SELECT STS_ID, STS_code FROM '. $wpdb->prefix . 'esp_status WHERE STS_type = "registration"';
187
-			$results = $wpdb->get_results( $SQL );
184
+		EE_Registry::instance()->load_helper('Activation');
185
+		if (EEH_Activation::table_exists($wpdb->prefix.'esp_status')) {
186
+			$SQL = 'SELECT STS_ID, STS_code FROM '.$wpdb->prefix.'esp_status WHERE STS_type = "registration"';
187
+			$results = $wpdb->get_results($SQL);
188 188
 			self::$_reg_status = array();
189
-			foreach ( $results as $status ) {
190
-				if ( ! in_array( $status->STS_ID, $exclude )) {
191
-					self::$_reg_status[ $status->STS_ID ] = $status->STS_code;
189
+			foreach ($results as $status) {
190
+				if ( ! in_array($status->STS_ID, $exclude)) {
191
+					self::$_reg_status[$status->STS_ID] = $status->STS_code;
192 192
 				}
193 193
 			}
194 194
 		}
@@ -203,15 +203,15 @@  discard block
 block discarded – undo
203 203
 	 * @param  array  $where_params Array of query_params as described in the comments for EEM_Base::get_all()
204 204
 	 * @return wpdb results array
205 205
 	 */
206
-	public function get_reg_months_and_years( $where_params ) {
206
+	public function get_reg_months_and_years($where_params) {
207 207
 		$query_params[0] = $where_params;
208 208
 		$query_params['group_by'] = array('reg_year', 'reg_month');
209
-		$query_params['order_by'] = array( 'REG_date' => 'DESC' );
209
+		$query_params['order_by'] = array('REG_date' => 'DESC');
210 210
 		$columns_to_select = array(
211 211
 			'reg_year' => array('YEAR(REG_date)', '%s'),
212 212
 			'reg_month' => array('MONTHNAME(REG_date)', '%s')
213 213
 			);
214
-		return $this->_get_all_wpdb_results( $query_params, OBJECT, $columns_to_select );
214
+		return $this->_get_all_wpdb_results($query_params, OBJECT, $columns_to_select);
215 215
 	}
216 216
 
217 217
 
@@ -223,11 +223,11 @@  discard block
 block discarded – undo
223 223
 	* 		@param		int		$ATT_ID
224 224
 	*		@return 	EE_Registration[]
225 225
 	*/
226
-	public function get_all_registrations_for_attendee( $ATT_ID = 0 ) {
227
-		if ( ! $ATT_ID ) {
226
+	public function get_all_registrations_for_attendee($ATT_ID = 0) {
227
+		if ( ! $ATT_ID) {
228 228
 			return FALSE;
229 229
 		}
230
-		return $this->get_all( array( array( 'ATT_ID' => $ATT_ID )));
230
+		return $this->get_all(array(array('ATT_ID' => $ATT_ID)));
231 231
 	}
232 232
 
233 233
 
@@ -238,8 +238,8 @@  discard block
 block discarded – undo
238 238
 	 * @param string $REG_url_link
239 239
 	 * @return EE_Registration
240 240
 	 */
241
-	public function get_registration_for_reg_url_link($REG_url_link){
242
-		if(!$REG_url_link){
241
+	public function get_registration_for_reg_url_link($REG_url_link) {
242
+		if ( ! $REG_url_link) {
243 243
 			return false;
244 244
 		}
245 245
 		return $this->get_one(array(array('REG_url_link'=>$REG_url_link)));
@@ -257,12 +257,12 @@  discard block
 block discarded – undo
257 257
 	* 		@param		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
258 258
 	*		@return 		mixed		array on success, FALSE on fail
259 259
 	*/
260
-	public function get_registration_for_transaction_attendee( $TXN_ID = FALSE, $ATT_ID = FALSE, $att_nmbr = FALSE ) {
260
+	public function get_registration_for_transaction_attendee($TXN_ID = FALSE, $ATT_ID = FALSE, $att_nmbr = FALSE) {
261 261
 		return $this->get_one(array(
262 262
 			array(
263 263
 				'TXN_ID'=>$TXN_ID,
264 264
 				'ATT_ID'=>$ATT_ID),
265
-			'limit'=>array($att_nmbr-1,1)
265
+			'limit'=>array($att_nmbr - 1, 1)
266 266
 		));
267 267
 	}
268 268
 
@@ -274,13 +274,13 @@  discard block
 block discarded – undo
274 274
 	 *		@param $period string which can be passed to php's strtotime function (eg "-1 month")
275 275
 	 *		@return stdClass[] with properties regDate and total
276 276
 	*/
277
-	public function get_registrations_per_day_report( $period = '-1 month' ) {
277
+	public function get_registrations_per_day_report($period = '-1 month') {
278 278
 		$sql_date = date("Y-m-d H:i:s", strtotime($period));
279 279
 
280 280
 		//don't include incomplete regs by default
281
-		$where = array('REG_date'=>array('>=',$sql_date), 'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete ) );
281
+		$where = array('REG_date'=>array('>=', $sql_date), 'STS_ID' => array('!=', EEM_Registration::status_id_incomplete));
282 282
 
283
-		if ( ! EE_Registry::instance()->current_user_can( 'ee_read_others_registrations', 'reg_per_day_report' ) ) {
283
+		if ( ! EE_Registry::instance()->current_user_can('ee_read_others_registrations', 'reg_per_day_report')) {
284 284
 			$where['Event.EVT_wp_user'] = get_current_user_id();
285 285
 		}
286 286
 
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
 				),
293 293
 				OBJECT,
294 294
 				array(
295
-					'regDate'=>array('DATE(Registration.REG_date)','%s'),
296
-					'total'=>array('count(REG_ID)','%d')
295
+					'regDate'=>array('DATE(Registration.REG_date)', '%s'),
296
+					'total'=>array('count(REG_ID)', '%d')
297 297
 				));
298 298
 		return $results;
299 299
 	}
@@ -307,24 +307,24 @@  discard block
 block discarded – undo
307 307
 	* 		@access		public
308 308
 	 *		@return stdClass[] each with properties event_name, reg_limit, and total
309 309
 	*/
310
-	public function get_registrations_per_event_report( $period = '-1 month' ) {
310
+	public function get_registrations_per_event_report($period = '-1 month') {
311 311
 		$date_sql = date("Y-m-d H:i:s", strtotime($period));
312 312
 
313 313
 		//do not include incomplete registrations by default
314 314
 
315
-		$where = array( 'REG_date'=>array('>=',$date_sql ), 'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete ) );
316
-		if ( ! EE_Registry::instance()->CAP->current_user_can( 'ee_read_others_registrations', 'reg_per_event_report' ) ) {
315
+		$where = array('REG_date'=>array('>=', $date_sql), 'STS_ID' => array('!=', EEM_Registration::status_id_incomplete));
316
+		if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_registrations', 'reg_per_event_report')) {
317 317
 			$where['Event.EVT_wp_user'] = get_current_user_id();
318 318
 		}
319 319
 		$results = $this->_get_all_wpdb_results(array(
320 320
 			$where,
321 321
 			'group_by'=>'Event.EVT_name',
322 322
 			'order_by'=>'Event.EVT_name',
323
-			'limit'=>array(0,24)),
323
+			'limit'=>array(0, 24)),
324 324
 			OBJECT,
325 325
 			array(
326
-				'event_name'=>array('Event_CPT.post_title','%s'),
327
-				'total'=>array('COUNT(REG_ID)','%s')
326
+				'event_name'=>array('Event_CPT.post_title', '%s'),
327
+				'total'=>array('COUNT(REG_ID)', '%s')
328 328
 			)
329 329
 		);
330 330
 
@@ -338,11 +338,11 @@  discard block
 block discarded – undo
338 338
 	 * @param int $TXN_ID
339 339
 	 * @return EE_Registration
340 340
 	 */
341
-	public function get_primary_registration_for_transaction_ID( $TXN_ID = FALSE){
342
-		if( ! $TXN_ID ){
341
+	public function get_primary_registration_for_transaction_ID($TXN_ID = FALSE) {
342
+		if ( ! $TXN_ID) {
343 343
 			return false;
344 344
 		}
345
-		return $this->get_one(array(array('TXN_ID'=>$TXN_ID,'REG_count'=>  EEM_Registration::PRIMARY_REGISTRANT_COUNT)));
345
+		return $this->get_one(array(array('TXN_ID'=>$TXN_ID, 'REG_count'=>  EEM_Registration::PRIMARY_REGISTRANT_COUNT)));
346 346
 	}
347 347
 
348 348
 
@@ -354,11 +354,11 @@  discard block
 block discarded – undo
354 354
 	 *		@param boolean $for_incomplete_payments
355 355
 	 *		@return int
356 356
 	 */
357
-	public function get_event_registration_count ( $EVT_ID, $for_incomplete_payments = FALSE ) {
357
+	public function get_event_registration_count($EVT_ID, $for_incomplete_payments = FALSE) {
358 358
 		// we only count approved registrations towards registration limits
359
-		$query_params = array( array( 'EVT_ID' => $EVT_ID, 'STS_ID' => self::status_id_approved ) );
360
-		if( $for_incomplete_payments ){
361
-			$query_params[0]['Transaction.STS_ID']=array('!=',  EEM_Transaction::complete_status_code);
359
+		$query_params = array(array('EVT_ID' => $EVT_ID, 'STS_ID' => self::status_id_approved));
360
+		if ($for_incomplete_payments) {
361
+			$query_params[0]['Transaction.STS_ID'] = array('!=', EEM_Transaction::complete_status_code);
362 362
 		}
363 363
 
364 364
 		return $this->count($query_params);
Please login to merge, or discard this patch.
core/db_models/EEM_Registration_Payment.model.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,21 +15,21 @@  discard block
 block discarded – undo
15 15
 	protected static $_instance = NULL;
16 16
 
17 17
 
18
-	protected function __construct( $timezone = NULL ) {
18
+	protected function __construct($timezone = NULL) {
19 19
 
20
-		$this->singular_item = __( 'Registration Payment', 'event_espresso' );
21
-		$this->plural_item 	= __( 'Registration Payments', 'event_espresso' );
20
+		$this->singular_item = __('Registration Payment', 'event_espresso');
21
+		$this->plural_item = __('Registration Payments', 'event_espresso');
22 22
 
23 23
 		$this->_tables = array(
24
-			'Registration_Payment' => new EE_Primary_Table( 'esp_registration_payment', 'RPY_ID' )
24
+			'Registration_Payment' => new EE_Primary_Table('esp_registration_payment', 'RPY_ID')
25 25
 		);
26 26
 
27 27
 		$this->_fields = array(
28 28
 			'Registration_Payment'=>array(
29
-				'RPY_ID' 				=> new EE_Primary_Key_Int_Field( 'RPY_ID', __( 'Registration Payment ID', 'event_espresso' )),
30
-				'REG_ID' 				=> new EE_Foreign_Key_Int_Field( 'REG_ID', __( 'Registration ID', 'event_espresso' ), false, 0, 'Registration' ),
31
-				'PAY_ID' 				=> new EE_Foreign_Key_Int_Field( 'PAY_ID', __( 'Payment ID', 'event_espresso' ), true, null, 'Payment' ),
32
-				'RPY_amount' 	=> new EE_Money_Field( 'RPY_amount', __( 'Amount attributed to the registration', 'event_espresso' ), false, 0 ),
29
+				'RPY_ID' 				=> new EE_Primary_Key_Int_Field('RPY_ID', __('Registration Payment ID', 'event_espresso')),
30
+				'REG_ID' 				=> new EE_Foreign_Key_Int_Field('REG_ID', __('Registration ID', 'event_espresso'), false, 0, 'Registration'),
31
+				'PAY_ID' 				=> new EE_Foreign_Key_Int_Field('PAY_ID', __('Payment ID', 'event_espresso'), true, null, 'Payment'),
32
+				'RPY_amount' 	=> new EE_Money_Field('RPY_amount', __('Amount attributed to the registration', 'event_espresso'), false, 0),
33 33
 			)
34 34
 		);
35 35
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 			'Payment' 		=> new EE_Belongs_To_Relation(),
39 39
 		);
40 40
 
41
-		parent::__construct( $timezone );
41
+		parent::__construct($timezone);
42 42
 	}
43 43
 
44 44
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * EEM_Registration_Payment
4 6
  *
Please login to merge, or discard this patch.
core/db_models/EEM_Soft_Delete_Base.model.php 3 patches
Spacing   +48 added lines, -48 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-require_once( EE_MODELS . 'EEM_Base.model.php');
2
+require_once(EE_MODELS.'EEM_Base.model.php');
3 3
 /**
4 4
  * EEM_Soft_Delete_Base
5 5
  *
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
  * @subpackage		includes/models/
26 26
  * @author				Michael Nelson
27 27
  */
28
-abstract class EEM_Soft_Delete_Base extends EEM_Base{
28
+abstract class EEM_Soft_Delete_Base extends EEM_Base {
29 29
 
30 30
 	/**
31 31
 	 * @param null $timezone
32 32
 	 */
33 33
 	protected function __construct($timezone = NULL) {
34
-		require_once( EE_MODELS . 'strategies/EE_Soft_Delete_Where_Conditions.strategy.php');
35
-		if( ! $this->_default_where_conditions_strategy){
34
+		require_once(EE_MODELS.'strategies/EE_Soft_Delete_Where_Conditions.strategy.php');
35
+		if ( ! $this->_default_where_conditions_strategy) {
36 36
 			$this->_default_where_conditions_strategy = new EE_Soft_Delete_Where_Conditions();
37 37
 		}
38 38
 		parent::__construct($timezone);
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
 	 * @return string
44 44
 	 * @throws EE_Error
45 45
 	 */
46
-	public function deleted_field_name(){
46
+	public function deleted_field_name() {
47 47
 		$field = $this->get_a_field_of_type('EE_Trashed_Flag_Field');
48
-		if($field){
48
+		if ($field) {
49 49
 			return $field->get_name();
50
-		}else{
51
-			throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?','event_espresso'),get_class($this),get_class($this)));
50
+		} else {
51
+			throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?', 'event_espresso'), get_class($this), get_class($this)));
52 52
 		}
53 53
 	}
54 54
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 * @param array $query_params like EEM_Base::get_all
60 60
 	 * @return EE_Soft_Delete_Base_Class[]
61 61
 	 */
62
-	public function get_all($query_params = array()){
62
+	public function get_all($query_params = array()) {
63 63
 		return parent::get_all($query_params);
64 64
 	}
65 65
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @param array $query_params like EEM_Base::get_all's $query_params
70 70
 	 * @return EE_Soft_Delete_Base_Class
71 71
 	 */
72
-	public function get_one($query_params = array()){
72
+	public function get_one($query_params = array()) {
73 73
 		return parent::get_one($query_params);
74 74
 	}
75 75
 	/**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	 * @param array $query_params like EEM_Base::get_all's $query_params
78 78
 	 * @return EE_Soft_Delete_Base_Class
79 79
 	 */
80
-	public function get_one_deleted($query_params = array()){
80
+	public function get_one_deleted($query_params = array()) {
81 81
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
82 82
 		return parent::get_one($query_params);
83 83
 	}
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	 * @param array $query_params like EEM_base::get_all's $query_params
88 88
 	 * @return EE_Soft_Delete_Base_Class
89 89
 	 */
90
-	public function get_one_deleted_or_undeleted($query_params = array()){
90
+	public function get_one_deleted_or_undeleted($query_params = array()) {
91 91
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
92 92
 		return parent::get_one($query_params);
93 93
 	}
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * @param int|string $id
109 109
 	 * @return EE_Soft_Delete_Base_Class
110 110
 	 */
111
-	public function get_one_by_ID_but_ignore_deleted($id){
111
+	public function get_one_by_ID_but_ignore_deleted($id) {
112 112
 		return parent::get_one_by_ID($id);
113 113
 	}
114 114
 	/**
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	 * @param boolean $distinct
120 120
 	 * @return int count
121 121
 	 */
122
-	public function count($query_params = array(), $field_to_count = null, $distinct = false){
122
+	public function count($query_params = array(), $field_to_count = null, $distinct = false) {
123 123
 		//just calls parent, but changes PHP docs for this function
124 124
 		return parent::count($query_params, $field_to_count, $distinct);
125 125
 	}
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 	 * @param bool 	 $distinct if we want to only count the distinct values for the column then you can trigger that by the setting $distinct to TRUE;
132 132
 	 * @return int
133 133
 	 */
134
-	public function count_deleted($query_params = null, $field_to_count = null, $distinct = FALSE){
134
+	public function count_deleted($query_params = null, $field_to_count = null, $distinct = FALSE) {
135 135
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
136 136
 		return parent::count($query_params, $field_to_count, $distinct);
137 137
 	}
@@ -141,9 +141,9 @@  discard block
 block discarded – undo
141 141
 	 * @param array $query_params like EEM_Base::get_all's $query_params
142 142
 	 * @return array like EEM_Base::get_all's $query_params
143 143
 	 */
144
-	protected function _alter_query_params_so_only_trashed_items_included($query_params){
145
-		$deletedFlagFieldName=$this->deleted_field_name();
146
-		$query_params[0][$deletedFlagFieldName]=true;
144
+	protected function _alter_query_params_so_only_trashed_items_included($query_params) {
145
+		$deletedFlagFieldName = $this->deleted_field_name();
146
+		$query_params[0][$deletedFlagFieldName] = true;
147 147
 		return $query_params;
148 148
 	}
149 149
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 * @param array $query_params
153 153
 	 * @return array
154 154
 	 */
155
-	public function alter_query_params_so_deleted_and_undeleted_items_included( $query_params = array() ){
155
+	public function alter_query_params_so_deleted_and_undeleted_items_included($query_params = array()) {
156 156
 		return $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
157 157
 	}
158 158
 
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 * @param array $query_params
162 162
 	 * @return array
163 163
 	 */
164
-	protected function _alter_query_params_so_deleted_and_undeleted_items_included($query_params){
164
+	protected function _alter_query_params_so_deleted_and_undeleted_items_included($query_params) {
165 165
 		$query_params['default_where_conditions'] = 'other_models_only';
166 166
 		return $query_params;
167 167
 	}
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
 	 * @param bool 	 $distinct if we want to only count the distinct values for the column then you can trigger that by the setting $distinct to TRUE;
174 174
 	 * @return int
175 175
 	 */
176
-	public function count_deleted_and_undeleted($query_params = null, $field_to_count = null, $distinct = FALSE){
176
+	public function count_deleted_and_undeleted($query_params = null, $field_to_count = null, $distinct = FALSE) {
177 177
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
178
-		return parent::count($query_params,$field_to_count, $distinct);
178
+		return parent::count($query_params, $field_to_count, $distinct);
179 179
 	}
180 180
 
181 181
 	/**
@@ -184,9 +184,9 @@  discard block
 block discarded – undo
184 184
 	 * @param string $field_to_sum name of field
185 185
 	 * @return int count
186 186
 	 */
187
-	public function sum($query_params =null,$field_to_sum= null){
187
+	public function sum($query_params = null, $field_to_sum = null) {
188 188
 		//just calls parent, but changes PHP doc
189
-		return parent::sum($query_params,$field_to_sum);
189
+		return parent::sum($query_params, $field_to_sum);
190 190
 	}
191 191
 
192 192
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 	 * @param string $field_to_sum
197 197
 	 * @return int
198 198
 	 */
199
-	public function sum_deleted($query_params = null, $field_to_sum = null){
199
+	public function sum_deleted($query_params = null, $field_to_sum = null) {
200 200
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
201 201
 		return parent::sum($query_params, $field_to_sum);
202 202
 	}
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 * @param string $field_to_sum
208 208
 	 * @reutrn int
209 209
 	 */
210
-	public function sum_deleted_and_undeleted($query_params = null, $field_to_sum = null){
210
+	public function sum_deleted_and_undeleted($query_params = null, $field_to_sum = null) {
211 211
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
212 212
 		parent::sum($query_params, $field_to_sum);
213 213
 	}
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	 * @param array $query_params like EEM_Base::get_all
218 218
 	 * @return EE_Soft_Delete_Base_Class[]
219 219
 	 */
220
-	public function get_all_deleted_and_undeleted($query_params = array()){
220
+	public function get_all_deleted_and_undeleted($query_params = array()) {
221 221
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
222 222
 		return parent::get_all($query_params);
223 223
 	}
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 	 * @param array $query_params like EEM_Base::get_all
228 228
 	 * @return EE_Soft_Delete_Base_Class[]
229 229
 	 */
230
-	public function get_all_deleted($query_params = array()){
230
+	public function get_all_deleted($query_params = array()) {
231 231
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
232 232
 		return parent::get_all($query_params);
233 233
 	}
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
246 246
 	 * @return boolean success
247 247
 	 */
248
-	public function delete_permanently($query_params = array(), $allow_blocking = true){
248
+	public function delete_permanently($query_params = array(), $allow_blocking = true) {
249 249
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
250 250
 		return parent::delete($query_params, $allow_blocking);
251 251
 	}
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
261 261
 	 * @return boolean success
262 262
 	 */
263
-	public function delete_permanently_by_ID($ID=FALSE, $allow_blocking = true){
263
+	public function delete_permanently_by_ID($ID = FALSE, $allow_blocking = true) {
264 264
 		$query_params = array();
265 265
 		$query_params[0] = array($this->get_primary_key_field()->get_name() => $ID);
266 266
 		$query_params['limit'] = 1;
@@ -274,8 +274,8 @@  discard block
 block discarded – undo
274 274
 	 * @param mixed $ID value of the primary_key or primary_text_key
275 275
 	 * @return boolean success
276 276
 	 */
277
-	public function delete_by_ID($ID){
278
-		return $this->delete_or_restore_by_ID(true,$ID);
277
+	public function delete_by_ID($ID) {
278
+		return $this->delete_or_restore_by_ID(true, $ID);
279 279
 	}
280 280
 	/**
281 281
 	 * Restores a particular item by its ID (primary key). Ignores the fact whether the item
@@ -283,8 +283,8 @@  discard block
 block discarded – undo
283 283
 	 * @param mixed $ID int if primary key is an int, string otherwise
284 284
 	 * @return boolean success
285 285
 	 */
286
-	public function restore_by_ID($ID=FALSE){
287
-		return $this->delete_or_restore_by_ID(false,$ID);
286
+	public function restore_by_ID($ID = FALSE) {
287
+		return $this->delete_or_restore_by_ID(false, $ID);
288 288
 	}
289 289
 	/**
290 290
 	 * For deleting or restoring a particular item. Note that this model is a SOFT-DELETABLE model! However,
@@ -293,15 +293,15 @@  discard block
 block discarded – undo
293 293
 	 * @param mixed $ID int if primary key is an int, string otherwise
294 294
 	 * @return boolean
295 295
 	 */
296
-	public function delete_or_restore_by_ID($delete=true,$ID=FALSE){
297
-		if ( ! $ID ) {
296
+	public function delete_or_restore_by_ID($delete = true, $ID = FALSE) {
297
+		if ( ! $ID) {
298 298
 			return FALSE;
299 299
 		}
300
-		$primaryKeyName=$this->primary_key_name();
300
+		$primaryKeyName = $this->primary_key_name();
301 301
 		// retrieve a particular transaction
302 302
 		$query_params = array();
303
-		$query_params[0] = array( $primaryKeyName => $ID );
304
-		if ( $this->delete_or_restore ($delete, $query_params )) {
303
+		$query_params[0] = array($primaryKeyName => $ID);
304
+		if ($this->delete_or_restore($delete, $query_params)) {
305 305
 			return TRUE;
306 306
 		} else {
307 307
 			return FALSE;
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
 	 * @param bool  $block_deletes
320 320
 	 * @return boolean
321 321
 	 */
322
-	public function delete($query_params = array(), $block_deletes = false){
322
+	public function delete($query_params = array(), $block_deletes = false) {
323 323
 		//no matter what, we WON'T block soft deletes.
324 324
 		return $this->delete_or_restore(true, $query_params);
325 325
 	}
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 	 * @param array $query_params like EEM_Base::get_all
331 331
 	 * @return boolean
332 332
 	 */
333
-	public function restore($query_params = array()){
333
+	public function restore($query_params = array()) {
334 334
 		return $this->delete_or_restore(false, $query_params);
335 335
 	}
336 336
 	/**
@@ -339,10 +339,10 @@  discard block
 block discarded – undo
339 339
 	 * @param array $query_params like EEM_Base::get_all
340 340
 	 * @return boolean
341 341
 	 */
342
-	function delete_or_restore($delete=true,$query_params = array()){
343
-		$deletedFlagFieldName=$this->deleted_field_name();
342
+	function delete_or_restore($delete = true, $query_params = array()) {
343
+		$deletedFlagFieldName = $this->deleted_field_name();
344 344
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
345
-		if ( $this->update (array($deletedFlagFieldName=>$delete), $query_params )) {
345
+		if ($this->update(array($deletedFlagFieldName=>$delete), $query_params)) {
346 346
 			return TRUE;
347 347
 		} else {
348 348
 			return FALSE;
@@ -360,9 +360,9 @@  discard block
 block discarded – undo
360 360
 	 * be aware that model objects being used could get out-of-sync with the database
361 361
 	 * @return int number of items updated
362 362
 	 */
363
-	public function update_deleted_and_undeleted($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE ){
363
+	public function update_deleted_and_undeleted($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE) {
364 364
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
365
-		return $this->update($fields_n_values, $query_params, $keep_model_objs_in_sync );
365
+		return $this->update($fields_n_values, $query_params, $keep_model_objs_in_sync);
366 366
 	}
367 367
 
368 368
 	/**
@@ -377,8 +377,8 @@  discard block
 block discarded – undo
377 377
 	 * be aware that model objects being used could get out-of-sync with the database
378 378
 	 * @return int how many items were updated
379 379
 	 */
380
-	public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE ){
381
-		return parent::update($fields_n_values,$query_params, $keep_model_objs_in_sync );
380
+	public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE) {
381
+		return parent::update($fields_n_values, $query_params, $keep_model_objs_in_sync);
382 382
 	}
383 383
 
384 384
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 require_once( EE_MODELS . 'EEM_Base.model.php');
3 5
 /**
4 6
  * EEM_Soft_Delete_Base
@@ -47,7 +49,7 @@  discard block
 block discarded – undo
47 49
 		$field = $this->get_a_field_of_type('EE_Trashed_Flag_Field');
48 50
 		if($field){
49 51
 			return $field->get_name();
50
-		}else{
52
+		} else{
51 53
 			throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?','event_espresso'),get_class($this),get_class($this)));
52 54
 		}
53 55
 	}
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	 * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
244 244
 	 * that blocks it (ie, there' sno other data that depends on this data); if false, deletes regardless of other objects
245 245
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
246
-	 * @return boolean success
246
+	 * @return integer success
247 247
 	 */
248 248
 	public function delete_permanently($query_params = array(), $allow_blocking = true){
249 249
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 	 * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
259 259
 	 * that blocks it (ie, there' sno other data that depends on this data); if false, deletes regardless of other objects
260 260
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
261
-	 * @return boolean success
261
+	 * @return integer success
262 262
 	 */
263 263
 	public function delete_permanently_by_ID($ID=FALSE, $allow_blocking = true){
264 264
 		$query_params = array();
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 	/**
353 353
 	 * Updates all the items of this model which match the $query params, regardless of whether
354 354
 	 * they've been soft-deleted or not
355
-	 * @param array $field_n_values like EEM_Base::update's $fields_n_value
355
+	 * @param array $fields_n_values like EEM_Base::update's $fields_n_value
356 356
 	 * @param array $query_params like EEM_base::get_all's $query_params
357 357
 	 * @param boolean $keep_model_objs_in_sync if TRUE, makes sure we ALSO update model objects
358 358
 	 * in this model's entity map according to $fields_n_values that match $query_params. This
Please login to merge, or discard this patch.
core/db_models/EEM_Status.model.php 3 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	public function localized_status(  $statuses, $plural = FALSE, $schema = 'upper' ) {
79 79
 		//note these are all in lower case because ucwords() on upper case will NOT convert.
80 80
 		$translation_array = array(
81
-	     	EEM_Registration::status_id_pending_payment => array(
81
+		 	EEM_Registration::status_id_pending_payment => array(
82 82
 				__('pending payment', 'event_espresso'), //singular
83 83
 				__('pending payments', 'event_espresso') //plural
84 84
 				),
@@ -203,37 +203,37 @@  discard block
 block discarded – undo
203 203
 	  			__('postponed', 'event_espresso'),
204 204
 	  			__('postponed', 'event_espresso')
205 205
 	  			)
206
-	    );
206
+		);
207 207
 
208 208
 		$translation_array = apply_filters( 'FHEE__EEM_Status__localized_status__translation_array', $translation_array );
209 209
 
210 210
 		if ( !is_array($statuses) )
211 211
 			throw new EE_Error( __('The incoming statuses argument must be an array with keys as the $status_id and values as the $status_code', 'event_espresso') );
212 212
 
213
-	    $translation = array();
213
+		$translation = array();
214 214
 
215
-	    foreach ( $statuses as $id => $code ) {
216
-	    	if ( isset( $translation_array[$id] ) ) {
217
-	    		$translation[$id] = $plural ? $translation_array[$id][1] : $translation_array[$id][0];
218
-	    	} else {
219
-	    		$translation[$id] = $code;
220
-	    	}
215
+		foreach ( $statuses as $id => $code ) {
216
+			if ( isset( $translation_array[$id] ) ) {
217
+				$translation[$id] = $plural ? $translation_array[$id][1] : $translation_array[$id][0];
218
+			} else {
219
+				$translation[$id] = $code;
220
+			}
221 221
 
222
-	    	//schema
223
-	    	switch ( $schema ) {
224
-	    		case 'lower' :
225
-	    			$translation[$id] = strtolower( $translation[$id] ); //even though these start in lower case, this will catch any statuses added via filter.
226
-	    			break;
227
-	    		case 'sentence' :
228
-	    			$translation[$id] = ucwords( $translation[$id] );
229
-	    			break;
230
-	    		case 'upper' :
231
-	    			$translation[$id] = strtoupper( $translation[$id] );
232
-	    			break;
233
-	    	}
234
-	    }
222
+			//schema
223
+			switch ( $schema ) {
224
+				case 'lower' :
225
+					$translation[$id] = strtolower( $translation[$id] ); //even though these start in lower case, this will catch any statuses added via filter.
226
+					break;
227
+				case 'sentence' :
228
+					$translation[$id] = ucwords( $translation[$id] );
229
+					break;
230
+				case 'upper' :
231
+					$translation[$id] = strtoupper( $translation[$id] );
232
+					break;
233
+			}
234
+		}
235 235
 
236
-	    return $translation;
236
+		return $translation;
237 237
 	}
238 238
 
239 239
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  *
14 14
  * ------------------------------------------------------------------------
15 15
  */
16
-require_once ( EE_MODELS . 'EEM_Base.model.php' );
16
+require_once (EE_MODELS.'EEM_Base.model.php');
17 17
 /**
18 18
  *
19 19
  * Class EEM_Status
@@ -32,27 +32,27 @@  discard block
 block discarded – undo
32 32
 	/**
33 33
 	 * @return EEM_Status
34 34
 	 */
35
-	protected function __construct( $timezone = NULL ) {
36
-		$this->singular_item = __('Status','event_espresso');
37
-		$this->plural_item = __('Stati','event_espresso');
35
+	protected function __construct($timezone = NULL) {
36
+		$this->singular_item = __('Status', 'event_espresso');
37
+		$this->plural_item = __('Stati', 'event_espresso');
38 38
 		$this->_tables = array(
39 39
 			'Status'=> new EE_Primary_Table('esp_status', 'STS_ID')
40 40
 		);
41 41
 		$this->_fields = array(
42 42
 			'Status'=>array(
43
-				'STS_ID'=> new EE_Primary_Key_String_Field('STS_ID', __('Status ID','event_espresso')),
44
-				'STS_code'=>new EE_Plain_Text_Field('STS_code',__('Status Code','event_espresso'),false, ''),
43
+				'STS_ID'=> new EE_Primary_Key_String_Field('STS_ID', __('Status ID', 'event_espresso')),
44
+				'STS_code'=>new EE_Plain_Text_Field('STS_code', __('Status Code', 'event_espresso'), false, ''),
45 45
 				'STS_type'=>new EE_Enum_Text_Field('STS_type', __("Type", "event_espresso"), false, 'event',
46 46
 						array(
47
-							'event'=> __("Event", "event_espresso"),//deprecated
47
+							'event'=> __("Event", "event_espresso"), //deprecated
48 48
 							'registration'=>  __("Registration", "event_espresso"),
49 49
 							'transaction'=>  __("Transaction", "event_espresso"),
50 50
 							'payment'=>  __("Payment", "event_espresso"),
51 51
 							'email'=>  __("Email", "event_espresso")
52 52
 						)),
53
-				'STS_can_edit'=>new EE_Boolean_Field('STS_can_edit', __('Editable?','event_espresso'), false),
53
+				'STS_can_edit'=>new EE_Boolean_Field('STS_can_edit', __('Editable?', 'event_espresso'), false),
54 54
 				'STS_desc'=>new EE_Simple_HTML_Field('STS_desc', __("Description", "event_espresso"), false, ''),
55
-				'STS_open'=>new EE_Boolean_Field('STS_open', __("Open?", "event_espresso"), false,false)
55
+				'STS_open'=>new EE_Boolean_Field('STS_open', __("Open?", "event_espresso"), false, false)
56 56
 			));
57 57
 		$this->_model_relations = array(
58 58
 			'Registration'=>new EE_Has_Many_Relation(),
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 			'Payment'=>new EE_Has_Many_Relation()
61 61
 		);
62 62
 		//this model is generally available for reading
63
-		$this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Public();
63
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Public();
64 64
 
65
-		parent::__construct( $timezone );
65
+		parent::__construct($timezone);
66 66
 	}
67 67
 
68 68
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 * @throws EE_Error
76 76
 	 * @return array             an array of translated strings for the incoming status id.
77 77
 	 */
78
-	public function localized_status(  $statuses, $plural = FALSE, $schema = 'upper' ) {
78
+	public function localized_status($statuses, $plural = FALSE, $schema = 'upper') {
79 79
 		//note these are all in lower case because ucwords() on upper case will NOT convert.
80 80
 		$translation_array = array(
81 81
 	     	EEM_Registration::status_id_pending_payment => array(
@@ -205,30 +205,30 @@  discard block
 block discarded – undo
205 205
 	  			)
206 206
 	    );
207 207
 
208
-		$translation_array = apply_filters( 'FHEE__EEM_Status__localized_status__translation_array', $translation_array );
208
+		$translation_array = apply_filters('FHEE__EEM_Status__localized_status__translation_array', $translation_array);
209 209
 
210
-		if ( !is_array($statuses) )
211
-			throw new EE_Error( __('The incoming statuses argument must be an array with keys as the $status_id and values as the $status_code', 'event_espresso') );
210
+		if ( ! is_array($statuses))
211
+			throw new EE_Error(__('The incoming statuses argument must be an array with keys as the $status_id and values as the $status_code', 'event_espresso'));
212 212
 
213 213
 	    $translation = array();
214 214
 
215
-	    foreach ( $statuses as $id => $code ) {
216
-	    	if ( isset( $translation_array[$id] ) ) {
215
+	    foreach ($statuses as $id => $code) {
216
+	    	if (isset($translation_array[$id])) {
217 217
 	    		$translation[$id] = $plural ? $translation_array[$id][1] : $translation_array[$id][0];
218 218
 	    	} else {
219 219
 	    		$translation[$id] = $code;
220 220
 	    	}
221 221
 
222 222
 	    	//schema
223
-	    	switch ( $schema ) {
223
+	    	switch ($schema) {
224 224
 	    		case 'lower' :
225
-	    			$translation[$id] = strtolower( $translation[$id] ); //even though these start in lower case, this will catch any statuses added via filter.
225
+	    			$translation[$id] = strtolower($translation[$id]); //even though these start in lower case, this will catch any statuses added via filter.
226 226
 	    			break;
227 227
 	    		case 'sentence' :
228
-	    			$translation[$id] = ucwords( $translation[$id] );
228
+	    			$translation[$id] = ucwords($translation[$id]);
229 229
 	    			break;
230 230
 	    		case 'upper' :
231
-	    			$translation[$id] = strtoupper( $translation[$id] );
231
+	    			$translation[$id] = strtoupper($translation[$id]);
232 232
 	    			break;
233 233
 	    	}
234 234
 	    }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -207,8 +209,9 @@  discard block
 block discarded – undo
207 209
 
208 210
 		$translation_array = apply_filters( 'FHEE__EEM_Status__localized_status__translation_array', $translation_array );
209 211
 
210
-		if ( !is_array($statuses) )
211
-			throw new EE_Error( __('The incoming statuses argument must be an array with keys as the $status_id and values as the $status_code', 'event_espresso') );
212
+		if ( !is_array($statuses) ) {
213
+					throw new EE_Error( __('The incoming statuses argument must be an array with keys as the $status_id and values as the $status_code', 'event_espresso') );
214
+		}
212 215
 
213 216
 	    $translation = array();
214 217
 
Please login to merge, or discard this patch.
core/db_models/EEM_Term_Relationship.model.php 2 patches
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -21,24 +21,24 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * ------------------------------------------------------------------------
23 23
  */
24
-require_once ( EE_MODELS . 'EEM_Base.model.php' );
24
+require_once (EE_MODELS.'EEM_Base.model.php');
25 25
 
26 26
 class EEM_Term_Relationship extends EEM_Base {
27 27
 
28 28
   	// private instance of the Attendee object
29 29
 	protected static $_instance = NULL;
30 30
 
31
-	protected function __construct( $timezone = NULL ) {
32
-		$this->singular_item = __('Term Relationship','event_espresso');
33
-		$this->plural_item = __('Term Relationships','event_espresso');
31
+	protected function __construct($timezone = NULL) {
32
+		$this->singular_item = __('Term Relationship', 'event_espresso');
33
+		$this->plural_item = __('Term Relationships', 'event_espresso');
34 34
 		$this->_tables = array(
35 35
 			'Term_Relationship'=> new EE_Primary_Table('term_relationships')
36 36
 		);
37 37
 		$this->_fields = array(
38 38
 			'Term_Relationship'=>array(
39
-				'object_id'=> new EE_Foreign_Key_Int_Field('object_id', __('Object(Post) ID','event_espresso'), false,0,array('Event','Venue','Attendee')),
40
-				'term_taxonomy_id'=>new EE_Foreign_Key_Int_Field('term_taxonomy_id', __('Term (in context of a taxonomy) ID','event_espresso'), false, 0, 'Term_Taxonomy'),
41
-				'term_order'=>new EE_Integer_Field('term_order', __('Term Order','event_espresso'), false, 0)
39
+				'object_id'=> new EE_Foreign_Key_Int_Field('object_id', __('Object(Post) ID', 'event_espresso'), false, 0, array('Event', 'Venue', 'Attendee')),
40
+				'term_taxonomy_id'=>new EE_Foreign_Key_Int_Field('term_taxonomy_id', __('Term (in context of a taxonomy) ID', 'event_espresso'), false, 0, 'Term_Taxonomy'),
41
+				'term_order'=>new EE_Integer_Field('term_order', __('Term Order', 'event_espresso'), false, 0)
42 42
 			));
43 43
 		$this->_model_relations = array(
44 44
 			'Event'=>new EE_Belongs_To_Relation(),
@@ -47,34 +47,34 @@  discard block
 block discarded – undo
47 47
 			'Term_Taxonomy'=>new EE_Belongs_To_Relation()
48 48
 		);
49 49
 		$this->_indexes = array(
50
-			'PRIMARY'=>new EE_Primary_Key_Index(array('object_id','term_taxonomy_id'))
50
+			'PRIMARY'=>new EE_Primary_Key_Index(array('object_id', 'term_taxonomy_id'))
51 51
 		);
52 52
 		$path_to_event_model = 'Event.';
53
-		$this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Event_Related_Public( $path_to_event_model );
54
-		$this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Event_Related_Protected( $path_to_event_model );
55
-		$this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Event_Related_Protected( $path_to_event_model );
56
-		$this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Event_Related_Protected( $path_to_event_model, EEM_Base::caps_edit );
53
+		$this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Event_Related_Public($path_to_event_model);
54
+		$this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Event_Related_Protected($path_to_event_model);
55
+		$this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Event_Related_Protected($path_to_event_model);
56
+		$this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Event_Related_Protected($path_to_event_model, EEM_Base::caps_edit);
57 57
 
58 58
 		$path_to_tax_model = 'Term_Taxonomy.';
59 59
 		//add cap restrictions for editing term relations to the "ee_assign_*"
60 60
 		//and for deleting term relations too
61
-		$cap_contexts_affected = array( EEM_Base::caps_edit, EEM_Base::caps_delete );
62
-		foreach( $cap_contexts_affected as $cap_context_affected ) {
63
-			$this->_cap_restrictions[ $cap_context_affected ]['ee_assign_event_category'] = new EE_Default_Where_Conditions(
61
+		$cap_contexts_affected = array(EEM_Base::caps_edit, EEM_Base::caps_delete);
62
+		foreach ($cap_contexts_affected as $cap_context_affected) {
63
+			$this->_cap_restrictions[$cap_context_affected]['ee_assign_event_category'] = new EE_Default_Where_Conditions(
64 64
 					array(
65
-						$path_to_tax_model . 'taxonomy*ee_assign_event_category' => array( '!=', 'espresso_event_categories' )
65
+						$path_to_tax_model.'taxonomy*ee_assign_event_category' => array('!=', 'espresso_event_categories')
66 66
 					));
67
-			$this->_cap_restrictions[ $cap_context_affected ]['ee_assign_venue_category'] = new EE_Default_Where_Conditions(
67
+			$this->_cap_restrictions[$cap_context_affected]['ee_assign_venue_category'] = new EE_Default_Where_Conditions(
68 68
 					array(
69
-						$path_to_tax_model . 'taxonomy*ee_assign_venue_category' => array( '!=', 'espresso_venue_categories' )
69
+						$path_to_tax_model.'taxonomy*ee_assign_venue_category' => array('!=', 'espresso_venue_categories')
70 70
 					));
71
-			$this->_cap_restrictions[ $cap_context_affected ]['ee_assign_event_type'] = new EE_Default_Where_Conditions(
71
+			$this->_cap_restrictions[$cap_context_affected]['ee_assign_event_type'] = new EE_Default_Where_Conditions(
72 72
 					array(
73
-						$path_to_tax_model . 'taxonomy*ee_assign_event_type' => array( '!=', 'espresso_event_type' )
73
+						$path_to_tax_model.'taxonomy*ee_assign_event_type' => array('!=', 'espresso_event_type')
74 74
 					));
75 75
 		}
76 76
 
77
-		parent::__construct( $timezone );
77
+		parent::__construct($timezone);
78 78
 	}
79 79
 
80 80
 	/**
@@ -83,17 +83,17 @@  discard block
 block discarded – undo
83 83
 	 * @global type $wpdb
84 84
 	 * @return int the number of rows affected
85 85
 	 */
86
-	public function update_term_taxonomy_counts($term_taxonomy_id = NULL){
86
+	public function update_term_taxonomy_counts($term_taxonomy_id = NULL) {
87 87
 		//because this uses a subquery and sometimes assigning to column to be another column's
88 88
 		//value, we just write the SQL directly.
89 89
 		global $wpdb;
90
-		if( $term_taxonomy_id ){
91
-			$second_operand = $wpdb->prepare('%d',$term_taxonomy_id);
92
-		}else{
90
+		if ($term_taxonomy_id) {
91
+			$second_operand = $wpdb->prepare('%d', $term_taxonomy_id);
92
+		} else {
93 93
 			$second_operand = 'tr.term_taxonomy_id';
94 94
 		}
95
-		$rows_affected = $this->_do_wpdb_query( 'query' , array("UPDATE {$wpdb->term_taxonomy} AS tt SET count = (select count(*) as proper_count
96
-from {$wpdb->term_relationships} AS tr WHERE tt.term_taxonomy_id = $second_operand)" ) );
95
+		$rows_affected = $this->_do_wpdb_query('query', array("UPDATE {$wpdb->term_taxonomy} AS tt SET count = (select count(*) as proper_count
96
+from {$wpdb->term_relationships} AS tr WHERE tt.term_taxonomy_id = $second_operand)"));
97 97
 		return $rows_affected;
98 98
 	}
99 99
 
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
 	 */
106 106
 	public function insert($field_n_values) {
107 107
 		$return = parent::insert($field_n_values);
108
-		if( isset( $field_n_values[ 'term_taxonomy_id' ] ) ) {
109
-			$this->update_term_taxonomy_counts($field_n_values[ 'term_taxonomy_id' ] );
108
+		if (isset($field_n_values['term_taxonomy_id'])) {
109
+			$this->update_term_taxonomy_counts($field_n_values['term_taxonomy_id']);
110 110
 		}
111 111
 		return $return;
112 112
 	}
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
 	 * @return int
123 123
 	 */
124 124
 	public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE) {
125
-		$count = parent::update($fields_n_values, $query_params, $keep_model_objs_in_sync );
126
-		if( $count ){
125
+		$count = parent::update($fields_n_values, $query_params, $keep_model_objs_in_sync);
126
+		if ($count) {
127 127
 			$this->update_term_taxonomy_counts();
128 128
 		}
129 129
 		return $count;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 */
138 138
 	public function delete($query_params, $allow_blocking = true) {
139 139
 		$count = parent::delete($query_params, $allow_blocking);
140
-		if( $count ){
140
+		if ($count) {
141 141
 			$this->update_term_taxonomy_counts();
142 142
 		}
143 143
 		return $count;
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
@@ -89,7 +91,7 @@  discard block
 block discarded – undo
89 91
 		global $wpdb;
90 92
 		if( $term_taxonomy_id ){
91 93
 			$second_operand = $wpdb->prepare('%d',$term_taxonomy_id);
92
-		}else{
94
+		} else{
93 95
 			$second_operand = 'tr.term_taxonomy_id';
94 96
 		}
95 97
 		$rows_affected = $this->_do_wpdb_query( 'query' , array("UPDATE {$wpdb->term_taxonomy} AS tt SET count = (select count(*) as proper_count
Please login to merge, or discard this patch.