Completed
Branch BUG-8936-recaptcha-fail (74c1f8)
by
unknown
48:00 queued 37:47
created
4_6_0_stages/EE_DMS_4_6_0_payment_method_currencies.dmsstage.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,6 +128,9 @@  discard block
 block discarded – undo
128 128
 		return $items_actually_migrated;
129 129
 	}
130 130
 
131
+	/**
132
+	 * @param integer $num_items_to_migrate
133
+	 */
131 134
 	private function _gather_relations_to_add($num_items_to_migrate) {
132 135
 		$relations_to_add_this_step = array();
133 136
 		$migrate_up_to_count = $this->count_records_migrated() + $num_items_to_migrate;
@@ -158,8 +161,6 @@  discard block
 block discarded – undo
158 161
 
159 162
 	/**
160 163
 	 * Adds teh relation between the payment method and the currencies it can be used for
161
-	 * @param int $id
162
-	 * @param string $gateway_slug
163 164
 	 */
164 165
 	private function _add_currency_relations($pm_id,$currency_code){
165 166
 		global $wpdb;
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION')) {
3
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5 5
 }
6 6
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * @author				Mike Nelson
14 14
  *
15 15
  */
16
-class EE_DMS_4_6_0_payment_method_currencies extends EE_Data_Migration_Script_Stage{
16
+class EE_DMS_4_6_0_payment_method_currencies extends EE_Data_Migration_Script_Stage {
17 17
 	protected $_currency_table_name;
18 18
 	protected $_currency_payment_method_table_name;
19 19
 	protected $_payment_method_table_name;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	);
90 90
 	public function __construct() {
91 91
 		global $wpdb;
92
-		$this->_pretty_name = __( 'Payment Method Currencies', 'event_espresso' );
92
+		$this->_pretty_name = __('Payment Method Currencies', 'event_espresso');
93 93
 		$this->_payment_method_table_name = $wpdb->prefix.'esp_payment_method';
94 94
 		$this->_currency_payment_method_table_name = $wpdb->prefix.'esp_currency_payment_method';
95 95
 		$this->_currency_table_name = $wpdb->prefix.'esp_currency';
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
 
99 99
 	protected function _count_records_to_migrate() {
100 100
 		$count = 0;
101
-		foreach($this->_gateway_currencies as $currencies){
102
-			if( $currencies == 'all'){
101
+		foreach ($this->_gateway_currencies as $currencies) {
102
+			if ($currencies == 'all') {
103 103
 				$currencies = $this->_get_all_currencies();
104 104
 			}
105 105
 			$count += count($currencies);
@@ -109,20 +109,20 @@  discard block
 block discarded – undo
109 109
 
110 110
 
111 111
 
112
-	protected function _migration_step( $num_items_to_migrate = 50 ) {
112
+	protected function _migration_step($num_items_to_migrate = 50) {
113 113
 		$items_actually_migrated = 0;
114 114
 		$relations_to_add_this_step = $this->_gather_relations_to_add($num_items_to_migrate);
115
-		foreach($relations_to_add_this_step as $pm_slug => $currencies){
115
+		foreach ($relations_to_add_this_step as $pm_slug => $currencies) {
116 116
 
117
-			$id = $this->get_migration_script()->get_mapping_new_pk( 'EE_Gateway_Config', $pm_slug, $this->_payment_method_table_name );
118
-			foreach( $currencies as $currency ){
119
-				if( $id ){
120
-					$this->_add_currency_relations( $id, $currency );
117
+			$id = $this->get_migration_script()->get_mapping_new_pk('EE_Gateway_Config', $pm_slug, $this->_payment_method_table_name);
118
+			foreach ($currencies as $currency) {
119
+				if ($id) {
120
+					$this->_add_currency_relations($id, $currency);
121 121
 				}
122 122
 				$items_actually_migrated++;
123 123
 			}
124 124
 		}
125
-		if($this->count_records_migrated() + $items_actually_migrated >= $this->count_records_to_migrate()){
125
+		if ($this->count_records_migrated() + $items_actually_migrated >= $this->count_records_to_migrate()) {
126 126
 			$this->set_completed();
127 127
 		}
128 128
 		return $items_actually_migrated;
@@ -132,14 +132,14 @@  discard block
 block discarded – undo
132 132
 		$relations_to_add_this_step = array();
133 133
 		$migrate_up_to_count = $this->count_records_migrated() + $num_items_to_migrate;
134 134
 		$iterator = 0;
135
-		foreach($this->_gateway_currencies as $pm_slug => $currencies){
136
-			if( $currencies == 'all' ){
135
+		foreach ($this->_gateway_currencies as $pm_slug => $currencies) {
136
+			if ($currencies == 'all') {
137 137
 				$currencies = $this->_get_all_currencies();
138 138
 			}
139
-			foreach($currencies as $currency_code){
140
-				if( $this->count_records_migrated() <= $iterator &&
141
-						$iterator < $migrate_up_to_count ){
142
-					$relations_to_add_this_step[ $pm_slug ] [] = $currency_code;
139
+			foreach ($currencies as $currency_code) {
140
+				if ($this->count_records_migrated() <= $iterator &&
141
+						$iterator < $migrate_up_to_count) {
142
+					$relations_to_add_this_step[$pm_slug] [] = $currency_code;
143 143
 				}
144 144
 				$iterator++;
145 145
 			}
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	 * Gets all the currency codes in the database
151 151
 	 * @return array
152 152
 	 */
153
-	private function _get_all_currencies(){
153
+	private function _get_all_currencies() {
154 154
 		global $wpdb;
155 155
 		$currencies = $wpdb->get_col("SELECT CUR_code FROM {$this->_currency_table_name}");
156 156
 		return $currencies;
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	 * @param int $id
162 162
 	 * @param string $gateway_slug
163 163
 	 */
164
-	private function _add_currency_relations($pm_id,$currency_code){
164
+	private function _add_currency_relations($pm_id, $currency_code) {
165 165
 		global $wpdb;
166 166
 		$cur_pm_relation = array(
167 167
 					'CUR_code'=>$currency_code,
@@ -170,11 +170,11 @@  discard block
 block discarded – undo
170 170
 		$success = $wpdb->insert($this->_currency_payment_method_table_name,
171 171
 				$cur_pm_relation,
172 172
 				array(
173
-					'%s',//CUR_code
174
-					'%d',//PMD_ID
173
+					'%s', //CUR_code
174
+					'%d', //PMD_ID
175 175
 				));
176
-		if( ! $success ){
177
-			$this->add_error( sprintf( __( 'Could not add currency relation %s because %s', "event_espresso" ), json_encode( $cur_pm_relation ), $wpdb->last_error ) );
176
+		if ( ! $success) {
177
+			$this->add_error(sprintf(__('Could not add currency relation %s because %s', "event_espresso"), json_encode($cur_pm_relation), $wpdb->last_error));
178 178
 		}
179 179
 	}
180 180
 }
Please login to merge, or discard this patch.
core/data_migration_scripts/4_6_0_stages/EE_DMS_4_6_0_payments.dmsstage.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,6 @@
 block discarded – undo
57 57
 			'IV'=>  __("Invoice", 'event_espresso'),
58 58
 			'MO'=>  __("Money Order", 'event_espresso'),
59 59
 	 * @global type $wpdb
60
-	 * @param int $id
61 60
 	 * @return string
62 61
 	 */
63 62
 	protected function _get_payment_method_id_by_gateway_name( $gateway_name, $old_pay_method_column ){
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -12,37 +12,37 @@  discard block
 block discarded – undo
12 12
  * @author				Mike Nelson
13 13
  *
14 14
  */
15
-class EE_DMS_4_6_0_payments extends EE_Data_Migration_Script_Stage_Table{
15
+class EE_DMS_4_6_0_payments extends EE_Data_Migration_Script_Stage_Table {
16 16
 	protected $_payment_method_table;
17
-	function __construct(){
17
+	function __construct() {
18 18
 		global $wpdb;
19
-		$this->_old_table = $wpdb->prefix . 'esp_payment';
20
-		$this->_payment_method_table = $wpdb->prefix . 'esp_payment_method';
19
+		$this->_old_table = $wpdb->prefix.'esp_payment';
20
+		$this->_payment_method_table = $wpdb->prefix.'esp_payment_method';
21 21
 		$this->_pretty_name = __('Payment-Payment Method Relations', 'event_espresso');
22 22
 		parent::__construct();
23 23
 	}
24
-	protected function _migrate_old_row( $payment_row ) {
24
+	protected function _migrate_old_row($payment_row) {
25 25
 		global $wpdb;
26 26
 		//get the payment method's ID
27
-		$PMD_ID = apply_filters( 'FHEE__EE_DMS_4_6_0_payments__migrate_old_row__PMD_ID', $this->_get_payment_method_id_by_gateway_name( $payment_row[ 'PAY_gateway' ], $payment_row[ 'PAY_method'] ) );
28
-		if( ! $PMD_ID ){
29
-			$this->add_error( sprintf( __( 'Could not find payment method with PMD_type = \'%1$s\' when migrating payment row %2$s so just assigned it an unknown payment method', 'event_espresso' ), $payment_row[ 'PAY_gateway' ], $this->_json_encode( $payment_row ) ) );
27
+		$PMD_ID = apply_filters('FHEE__EE_DMS_4_6_0_payments__migrate_old_row__PMD_ID', $this->_get_payment_method_id_by_gateway_name($payment_row['PAY_gateway'], $payment_row['PAY_method']));
28
+		if ( ! $PMD_ID) {
29
+			$this->add_error(sprintf(__('Could not find payment method with PMD_type = \'%1$s\' when migrating payment row %2$s so just assigned it an unknown payment method', 'event_espresso'), $payment_row['PAY_gateway'], $this->_json_encode($payment_row)));
30 30
 			$PMD_ID = 0;
31 31
 		}
32 32
 		$new_values = array(
33 33
 			'PMD_ID' => $PMD_ID,
34
-			'PAY_source' => ( $payment_row[ 'PAY_via_admin' ] ? 'ADMIN' : 'CART' ) );
35
-		$wheres = array( 'PAY_ID' => $payment_row[ 'PAY_ID' ] );
36
-		$new_value_datatypes = array( '%d', '%s' );
37
-		$where_datatypes = array( '%d' );
38
-		$success = $wpdb->update( $this->_old_table,
34
+			'PAY_source' => ($payment_row['PAY_via_admin'] ? 'ADMIN' : 'CART') );
35
+		$wheres = array('PAY_ID' => $payment_row['PAY_ID']);
36
+		$new_value_datatypes = array('%d', '%s');
37
+		$where_datatypes = array('%d');
38
+		$success = $wpdb->update($this->_old_table,
39 39
 				$new_values,
40 40
 				$wheres,
41 41
 				$new_value_datatypes,
42 42
 				$where_datatypes
43 43
 				);
44
-		if( ! $success ){
45
-			$this->add_error( sprintf( __( 'Couldnt set %1$s row in table %2$s where %3$s', 'event_espresso' ), $this->_json_encode( $new_values ), $this->_old_table, $this->_json_encode( $wheres ) ) );
44
+		if ( ! $success) {
45
+			$this->add_error(sprintf(__('Couldnt set %1$s row in table %2$s where %3$s', 'event_espresso'), $this->_json_encode($new_values), $this->_old_table, $this->_json_encode($wheres)));
46 46
 		}
47 47
 	}
48 48
 	/**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
 	 * @param int $id
61 61
 	 * @return string
62 62
 	 */
63
-	protected function _get_payment_method_id_by_gateway_name( $gateway_name, $old_pay_method_column ){
63
+	protected function _get_payment_method_id_by_gateway_name($gateway_name, $old_pay_method_column) {
64 64
 		global $wpdb;
65 65
 		//convert from old known PAY_method values to their corresponding
66 66
 		//PMD_type or default PMD_name
67
-		switch( $old_pay_method_column ) {
67
+		switch ($old_pay_method_column) {
68 68
 			case 'PP':
69 69
 				$pmd_type = 'Paypal_Standard';
70 70
 				break;
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
 			default:
93 93
 				$pmd_type = $gateway_name;
94 94
 		}
95
-		$pmd_name = str_replace( "_", " ", $pmd_type );
96
-		return $wpdb->get_var( $wpdb->prepare( "SELECT PMD_ID FROM " . $wpdb->prefix . "esp_payment_method WHERE PMD_type = %s OR PMD_name = %s", $pmd_type, $pmd_name ) );
95
+		$pmd_name = str_replace("_", " ", $pmd_type);
96
+		return $wpdb->get_var($wpdb->prepare("SELECT PMD_ID FROM ".$wpdb->prefix."esp_payment_method WHERE PMD_type = %s OR PMD_name = %s", $pmd_type, $pmd_name));
97 97
 	}
98 98
 
99 99
 
Please login to merge, or discard this patch.
data_migration_scripts/4_6_0_stages/EE_DMS_4_6_0_transactions.dmsstage.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
 	/**
50 50
 	 *
51 51
 	 * @global type $wpdb
52
-	 * @param int $id
53 52
 	 * @return string
54 53
 	 */
55 54
 	protected function _get_payment_method_id_by_gateway_name( $gateway_name ){
Please login to merge, or discard this patch.
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -12,38 +12,38 @@  discard block
 block discarded – undo
12 12
  * @author				Mike Nelson
13 13
  *
14 14
  */
15
-class EE_DMS_4_6_0_transactions extends EE_Data_Migration_Script_Stage_Table{
15
+class EE_DMS_4_6_0_transactions extends EE_Data_Migration_Script_Stage_Table {
16 16
 	protected $_transaction_table;
17 17
 	protected $_payment_method_table;
18
-	function __construct(){
18
+	function __construct() {
19 19
 		global $wpdb;
20
-		$this->_old_table = $wpdb->prefix . 'esp_extra_meta';
21
-		$this->_transaction_table = $wpdb->prefix . 'esp_transaction';
22
-		$this->_payment_method_table = $wpdb->prefix . 'esp_payment_method';
20
+		$this->_old_table = $wpdb->prefix.'esp_extra_meta';
21
+		$this->_transaction_table = $wpdb->prefix.'esp_transaction';
22
+		$this->_payment_method_table = $wpdb->prefix.'esp_payment_method';
23 23
 		$this->_pretty_name = __('Transaction Payment Method Relations', 'event_espresso');
24 24
 		$this->_extra_where_sql = "WHERE EXM_key = 'gateway' AND EXM_type = 'Transaction'";
25 25
 		parent::__construct();
26 26
 	}
27
-	protected function _migrate_old_row( $extra_meta_row ) {
27
+	protected function _migrate_old_row($extra_meta_row) {
28 28
 		global $wpdb;
29 29
 		//get the payment method's ID
30
-		$PMD_ID = $this->_get_payment_method_id_by_gateway_name( $extra_meta_row[ 'EXM_value' ] );
31
-		if( ! $PMD_ID ){
32
-			$this->add_error( sprintf( __( 'Could not find payment method with PMD_type = \'%1$s\' when migrating extra meta row %2$s', 'event_espresso' ), $extra_meta_row[ 'EXM_value' ], $this->_json_encode( $extra_meta_row ) ) );
30
+		$PMD_ID = $this->_get_payment_method_id_by_gateway_name($extra_meta_row['EXM_value']);
31
+		if ( ! $PMD_ID) {
32
+			$this->add_error(sprintf(__('Could not find payment method with PMD_type = \'%1$s\' when migrating extra meta row %2$s', 'event_espresso'), $extra_meta_row['EXM_value'], $this->_json_encode($extra_meta_row)));
33 33
 			return;
34 34
 		}
35
-		$new_values = array( 'PMD_ID' => $PMD_ID );
36
-		$wheres = array( 'TXN_ID' => $extra_meta_row[ 'OBJ_ID' ] );
37
-		$new_value_datatypes = array( '%d' );
38
-		$where_datatypes = array( '%d' );
39
-		$success = $wpdb->update( $this->_transaction_table,
35
+		$new_values = array('PMD_ID' => $PMD_ID);
36
+		$wheres = array('TXN_ID' => $extra_meta_row['OBJ_ID']);
37
+		$new_value_datatypes = array('%d');
38
+		$where_datatypes = array('%d');
39
+		$success = $wpdb->update($this->_transaction_table,
40 40
 				$new_values,
41 41
 				$wheres,
42 42
 				$new_value_datatypes,
43 43
 				$where_datatypes
44 44
 				);
45
-		if( ! $success ){
46
-			$this->add_error( sprintf( __( 'Couldnt set %1$s row in table %2$s where %3$s', 'event_espresso' ), $this->_json_encode( $new_values ), $this->_transaction_table, $this->_json_encode( $wheres ) ) );
45
+		if ( ! $success) {
46
+			$this->add_error(sprintf(__('Couldnt set %1$s row in table %2$s where %3$s', 'event_espresso'), $this->_json_encode($new_values), $this->_transaction_table, $this->_json_encode($wheres)));
47 47
 		}
48 48
 	}
49 49
 	/**
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
 	 * @param int $id
53 53
 	 * @return string
54 54
 	 */
55
-	protected function _get_payment_method_id_by_gateway_name( $gateway_name ){
55
+	protected function _get_payment_method_id_by_gateway_name($gateway_name) {
56 56
 		global $wpdb;
57
-		return $wpdb->get_var( $wpdb->prepare( "SELECT PMD_ID FROM " . $wpdb->prefix . "esp_payment_method WHERE PMD_type = %s", $gateway_name ) );
57
+		return $wpdb->get_var($wpdb->prepare("SELECT PMD_ID FROM ".$wpdb->prefix."esp_payment_method WHERE PMD_type = %s", $gateway_name));
58 58
 	}
59 59
 
60 60
 
Please login to merge, or discard this patch.
4_7_0_stages/EE_DMS_4_7_0_Registration_Payments.dmsstage.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 	 *
126 126
 	 * @param stdClass $payment
127 127
 	 * @param array $registrations
128
-	 * @return bool
128
+	 * @return boolean|null
129 129
 	 */
130 130
 	protected function _process_registration_payments( $payment, $registrations = array() ){
131 131
 		// how much is available to apply to registrations?
Please login to merge, or discard this patch.
Spacing   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  * @author				Brent Christensen
13 13
  *
14 14
  */
15
-class EE_DMS_4_7_0_Registration_Payments extends EE_Data_Migration_Script_Stage_Table{
15
+class EE_DMS_4_7_0_Registration_Payments extends EE_Data_Migration_Script_Stage_Table {
16 16
 
17 17
 	protected $_payment_table;
18 18
 
@@ -20,15 +20,15 @@  discard block
 block discarded – undo
20 20
 
21 21
 	protected $_registration_payment_table;
22 22
 
23
-	function __construct(){
23
+	function __construct() {
24 24
 		/** @type WPDB $wpdb */
25 25
 		global $wpdb;
26
-		$this->_pretty_name = __( 'Registration Payment Record Generation', 'event_espresso' );
26
+		$this->_pretty_name = __('Registration Payment Record Generation', 'event_espresso');
27 27
 		// define tables
28
-		$this->_old_table 									= $wpdb->prefix . 'esp_transaction';
29
-		$this->_payment_table 						= $wpdb->prefix . 'esp_payment';
30
-		$this->_registration_table 					= $wpdb->prefix . 'esp_registration';
31
-		$this->_registration_payment_table 	= $wpdb->prefix . 'esp_registration_payment';
28
+		$this->_old_table = $wpdb->prefix.'esp_transaction';
29
+		$this->_payment_table = $wpdb->prefix.'esp_payment';
30
+		$this->_registration_table = $wpdb->prefix.'esp_registration';
31
+		$this->_registration_payment_table = $wpdb->prefix.'esp_registration_payment';
32 32
 		// build SQL WHERE clauses
33 33
 		$this->_extra_where_sql = "WHERE STS_ID IN ( 'TIN', 'TCM' ) AND TXN_Total != '0.000'";
34 34
 		parent::__construct();
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @param array $transaction
41 41
 	 * @return void
42 42
 	 */
43
-	protected function _migrate_old_row( $transaction ) {
43
+	protected function _migrate_old_row($transaction) {
44 44
 		/** @type WPDB $wpdb */
45 45
 		global $wpdb;
46
-		$TXN_ID = absint( $transaction[ 'TXN_ID' ] );
47
-		if ( ! $TXN_ID ) {
46
+		$TXN_ID = absint($transaction['TXN_ID']);
47
+		if ( ! $TXN_ID) {
48 48
 			$this->add_error(
49 49
 				sprintf(
50
-					__( 'Invalid transaction with ID=%1$d. Error: "%2$s"', 'event_espresso' ),
50
+					__('Invalid transaction with ID=%1$d. Error: "%2$s"', 'event_espresso'),
51 51
 					$TXN_ID,
52 52
 					$wpdb->last_error
53 53
 				)
@@ -55,19 +55,19 @@  discard block
 block discarded – undo
55 55
 			return;
56 56
 		}
57 57
 		// get all payments for the TXN
58
-		$payments = $this->_get_payments( $TXN_ID );
59
-		if ( empty( $payments ) ) {
58
+		$payments = $this->_get_payments($TXN_ID);
59
+		if (empty($payments)) {
60 60
 			return;
61 61
 		}
62 62
 		// then the registrants
63
-		$registrations = $this->_get_registrations( $TXN_ID );
64
-		if ( empty( $registrations ) ) {
63
+		$registrations = $this->_get_registrations($TXN_ID);
64
+		if (empty($registrations)) {
65 65
 			return;
66 66
 		}
67 67
 		// now loop thru each payment and apply it to each of the registrations
68
-		foreach ( $payments as $PAY_ID => $payment ) {
69
-			if ( $payment->STS_ID === 'PAP' && $payment->PAY_amount > 0 ) {
70
-				$this->_process_registration_payments( $payment, $registrations );
68
+		foreach ($payments as $PAY_ID => $payment) {
69
+			if ($payment->STS_ID === 'PAP' && $payment->PAY_amount > 0) {
70
+				$this->_process_registration_payments($payment, $registrations);
71 71
 			}
72 72
 		}
73 73
 	}
@@ -80,11 +80,11 @@  discard block
 block discarded – undo
80 80
 	 * @param int $TXN_ID
81 81
 	 * @return array
82 82
 	 */
83
-	protected function _get_registrations( $TXN_ID ) {
83
+	protected function _get_registrations($TXN_ID) {
84 84
 		/** @type WPDB $wpdb */
85 85
 		global $wpdb;
86 86
 		$SQL = "SELECT * FROM {$this->_registration_table} WHERE TXN_ID = %d AND STS_ID IN ( 'RPP', 'RAP' )";
87
-		return $wpdb->get_results( $wpdb->prepare( $SQL, $TXN_ID ), OBJECT_K );
87
+		return $wpdb->get_results($wpdb->prepare($SQL, $TXN_ID), OBJECT_K);
88 88
 	}
89 89
 
90 90
 
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
 	 * @param int $TXN_ID
96 96
 	 * @return array
97 97
 	 */
98
-	protected function _get_payments( $TXN_ID ) {
98
+	protected function _get_payments($TXN_ID) {
99 99
 		/** @type WPDB $wpdb */
100 100
 		global $wpdb;
101
-		return $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$this->_payment_table} WHERE TXN_ID = %d", $TXN_ID ), OBJECT_K );
101
+		return $wpdb->get_results($wpdb->prepare("SELECT * FROM {$this->_payment_table} WHERE TXN_ID = %d", $TXN_ID), OBJECT_K);
102 102
 	}
103 103
 
104 104
 
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
 	 * @param int $REG_ID
110 110
 	 * @return array
111 111
 	 */
112
-	protected function _get_possibly_updated_REG_paid( $REG_ID ) {
112
+	protected function _get_possibly_updated_REG_paid($REG_ID) {
113 113
 		/** @type WPDB $wpdb */
114 114
 		global $wpdb;
115
-		return $wpdb->get_var( $wpdb->prepare( "SELECT REG_paid FROM {$this->_registration_table} WHERE REG_ID = %d", $REG_ID ) );
115
+		return $wpdb->get_var($wpdb->prepare("SELECT REG_paid FROM {$this->_registration_table} WHERE REG_ID = %d", $REG_ID));
116 116
 	}
117 117
 
118 118
 
@@ -127,40 +127,40 @@  discard block
 block discarded – undo
127 127
 	 * @param array $registrations
128 128
 	 * @return bool
129 129
 	 */
130
-	protected function _process_registration_payments( $payment, $registrations = array() ){
130
+	protected function _process_registration_payments($payment, $registrations = array()) {
131 131
 		// how much is available to apply to registrations?
132 132
 		$available_payment_amount = $payment->PAY_amount;
133
-		foreach ( $registrations as $REG_ID => $registration ) {
133
+		foreach ($registrations as $REG_ID => $registration) {
134 134
 			// nothing left, then we are done here?
135
-			if ( ! $available_payment_amount > 0 ) {
135
+			if ( ! $available_payment_amount > 0) {
136 136
 				break;
137 137
 			}
138 138
 			// ensure REG_final_price has a valid value, and skip if it turns out to be zero
139
-			$registration->REG_final_price = ! empty( $registration->REG_final_price ) ? (float)$registration->REG_final_price : 0.00;
140
-			if ( ! $registration->REG_final_price > 0 ) {
139
+			$registration->REG_final_price = ! empty($registration->REG_final_price) ? (float) $registration->REG_final_price : 0.00;
140
+			if ( ! $registration->REG_final_price > 0) {
141 141
 				continue;
142 142
 			}
143 143
 			// because REG_paid may have been updated by a previous payment, we need to retrieve the value from the db
144
-			$possibly_updated_REG_paid = $this->_get_possibly_updated_REG_paid( $REG_ID );
145
-			if ( is_float( $possibly_updated_REG_paid ) ) {
144
+			$possibly_updated_REG_paid = $this->_get_possibly_updated_REG_paid($REG_ID);
145
+			if (is_float($possibly_updated_REG_paid)) {
146 146
 				$registration->REG_paid = $possibly_updated_REG_paid;
147 147
 			}
148 148
 			// and ensure REG_paid has a valid value
149
-			$registration->REG_paid = ! empty( $registration->REG_paid ) ? (float)$registration->REG_paid : 0.00;
149
+			$registration->REG_paid = ! empty($registration->REG_paid) ? (float) $registration->REG_paid : 0.00;
150 150
 			// calculate amount owing, and skip if it turns out to be zero
151 151
 			$owing = $registration->REG_final_price - $registration->REG_paid;
152
-			if ( ! $owing > 0 ) {
152
+			if ( ! $owing > 0) {
153 153
 				continue;
154 154
 			}
155 155
 			// don't allow payment amount to exceed the available payment amount, OR the amount owing
156
-			$payment_amount = min( $available_payment_amount, $owing );
156
+			$payment_amount = min($available_payment_amount, $owing);
157 157
 			// update $available_payment_amount
158 158
 			$available_payment_amount = $available_payment_amount - $payment_amount;
159 159
 			// add relation between registration and payment and set amount
160
-			if ( $this->_insert_registration_payment( $registration->REG_ID, $payment->PAY_ID, $payment_amount )) {
160
+			if ($this->_insert_registration_payment($registration->REG_ID, $payment->PAY_ID, $payment_amount)) {
161 161
 				//calculate and set new REG_paid
162 162
 				$registration->REG_paid = $registration->REG_paid + $payment_amount;
163
-				$this->_update_registration_paid( $registration->REG_ID, $registration->REG_paid );
163
+				$this->_update_registration_paid($registration->REG_ID, $registration->REG_paid);
164 164
 			}
165 165
 		}
166 166
 	}
@@ -175,18 +175,18 @@  discard block
 block discarded – undo
175 175
 	 * @param float $PAY_amount
176 176
 	 * @return bool
177 177
 	 */
178
-	protected function _insert_registration_payment( $REG_ID = 0, $PAY_ID = 0, $PAY_amount = 0.00 ){
178
+	protected function _insert_registration_payment($REG_ID = 0, $PAY_ID = 0, $PAY_amount = 0.00) {
179 179
 		/** @type WPDB $wpdb */
180 180
 		global $wpdb;
181 181
 		$success = $wpdb->insert(
182 182
 			$this->_registration_payment_table,
183
-			array( 'REG_ID' => $REG_ID, 'PAY_ID' => $PAY_ID, 'RPY_amount' => $PAY_amount, ),  // data
184
-			array( '%f' )   // data format
183
+			array('REG_ID' => $REG_ID, 'PAY_ID' => $PAY_ID, 'RPY_amount' => $PAY_amount,), // data
184
+			array('%f')   // data format
185 185
 		);
186
-		if ( $success === false ) {
186
+		if ($success === false) {
187 187
 			$this->add_error(
188 188
 				sprintf(
189
-					__( 'Could not update registration paid value for registration ID=%1$d because "%2$s"', 'event_espresso' ),
189
+					__('Could not update registration paid value for registration ID=%1$d because "%2$s"', 'event_espresso'),
190 190
 					$REG_ID,
191 191
 					$wpdb->last_error
192 192
 				)
@@ -205,20 +205,20 @@  discard block
 block discarded – undo
205 205
 	 * @param float $REG_paid
206 206
 	 * @return bool
207 207
 	 */
208
-	protected function _update_registration_paid( $REG_ID = 0, $REG_paid = 0.00 ) {
208
+	protected function _update_registration_paid($REG_ID = 0, $REG_paid = 0.00) {
209 209
 		/** @type WPDB $wpdb */
210 210
 		global $wpdb;
211 211
 		$success = $wpdb->update(
212 212
 			$this->_registration_table,
213
-			array( 'REG_paid' => $REG_paid ),  // data
214
-			array( 'REG_ID' => $REG_ID ),  // where
215
-			array( '%f' ),   // data format
216
-			array( '%d' )  // where format
213
+			array('REG_paid' => $REG_paid), // data
214
+			array('REG_ID' => $REG_ID), // where
215
+			array('%f'), // data format
216
+			array('%d')  // where format
217 217
 		);
218
-		if ( $success === false ) {
218
+		if ($success === false) {
219 219
 			$this->add_error(
220 220
 				sprintf(
221
-					__( 'Could not update registration paid value for registration ID=%1$d because "%2$s"', 'event_espresso' ),
221
+					__('Could not update registration paid value for registration ID=%1$d because "%2$s"', 'event_espresso'),
222 222
 					$REG_ID,
223 223
 					$wpdb->last_error
224 224
 				)
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_Data_Migration_Class_Base.core.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
 	 * @param array $old_row_as_array
235 235
 	 * @param string $new_table
236 236
 	 * @param array $new_row_as_array columns=>values like used in wpdb->insert
237
-	 * @param array $data_types numerically indexed
237
+	 * @param string[] $data_types numerically indexed
238 238
 	 * @return string
239 239
 	 */
240 240
 	protected function _create_error_message_for_db_insertion($old_table, $old_row_as_array, $new_table, $new_row_as_array, $data_types){
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -264,9 +264,9 @@
 block discarded – undo
264 264
 	/**
265 265
 	 * Same as json_encode, just avoids putting
266 266
 	 * serialized arrays into the http build query, as that would
267
-	* @param array $array_of_data
268
-	* @return string
269
-	*/
267
+	 * @param array $array_of_data
268
+	 * @return string
269
+	 */
270 270
 	protected function _json_encode($array_of_data){
271 271
 		//we'd rather NOT serialize the transaction details
272 272
 		$fields_to_include = array();
Please login to merge, or discard this patch.
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 
19 19
 
20
-abstract class EE_Data_Migration_Class_Base{
20
+abstract class EE_Data_Migration_Class_Base {
21 21
 	/**
22 22
 	 * @var $records_to_migrate int count of all that have been migrated
23 23
 	 */
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	 * Just initializes the status of the migration
51 51
 	 * @throws EE_Error
52 52
 	 */
53
-	public function __construct(){
53
+	public function __construct() {
54 54
 		$this->set_status(EE_Data_Migration_Manager::status_continue);
55 55
 	}
56 56
 
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 	 * @throws EE_Error
62 62
 	 * @return string
63 63
 	 */
64
-	public function pretty_name(){
65
-		if($this->_pretty_name === null){
66
-			throw new EE_Error(sprintf(__("Please give a pretty name to the migration script stage %s by assigning the property _pretty_name in the constructor", "event_espresso"),get_class($this)));
64
+	public function pretty_name() {
65
+		if ($this->_pretty_name === null) {
66
+			throw new EE_Error(sprintf(__("Please give a pretty name to the migration script stage %s by assigning the property _pretty_name in the constructor", "event_espresso"), get_class($this)));
67 67
 		}
68 68
 		return $this->_pretty_name;
69 69
 	}
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @return int
73 73
 	 */
74
-	public function count_records_to_migrate(){
75
-		if( $this->_records_to_migrate == null){
74
+	public function count_records_to_migrate() {
75
+		if ($this->_records_to_migrate == null) {
76 76
 			$this->_records_to_migrate = $this->_count_records_to_migrate();
77 77
 		}
78 78
 		return $this->_records_to_migrate;
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
 	 * @return string one of EE_Data_Migration_Manager::status_* constants
93 93
 	 * @throws EE_Error
94 94
 	 */
95
-	public function get_status(){
96
-		if($this->_status === null){
97
-			throw new EE_Error(sprintf(__("Trying to get status of Migration class %s, but it has not been initialized yet. It should be set in the constructor.", "event_espresso"),get_class($this)));
95
+	public function get_status() {
96
+		if ($this->_status === null) {
97
+			throw new EE_Error(sprintf(__("Trying to get status of Migration class %s, but it has not been initialized yet. It should be set in the constructor.", "event_espresso"), get_class($this)));
98 98
 		}
99 99
 		return $this->_status;
100 100
 	}
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 * @param string $status
104 104
 	 * @return void
105 105
 	 */
106
-	protected function set_status($status){
106
+	protected function set_status($status) {
107 107
 		$this->_status = $status;
108 108
 	}
109 109
 	/**
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
 	 * Returns the last error that occurred. If none occurred, returns null
116 116
 	 * @return string
117 117
 	 */
118
-	public function get_last_error(){
118
+	public function get_last_error() {
119 119
 		$errors = $this->get_errors();
120
-		if($errors){
120
+		if ($errors) {
121 121
 			return end($errors);
122
-		}else{
122
+		} else {
123 123
 			return null;
124 124
 		}
125 125
 	}
@@ -128,26 +128,26 @@  discard block
 block discarded – undo
128 128
 	 * @param string $error a string describing the error that will be useful for debugging. Consider including all the data that led to the error, and a stack trace etc.
129 129
 	 * @param boolean $force force the error to be added (because otherwise we have a limit). If forcing and errors are already at their limit, we will purposefully forget the first half
130 130
 	 */
131
-	public function add_error($error, $force = FALSE ){
132
-		if( ! defined( 'EE_DMS_ERROR_LIMIT' ) ){
131
+	public function add_error($error, $force = FALSE) {
132
+		if ( ! defined('EE_DMS_ERROR_LIMIT')) {
133 133
 			$limit = 50;
134
-		}else{
134
+		} else {
135 135
 			$limit = EE_DMS_ERROR_LIMIT;
136 136
 		}
137 137
 		//make sure errors is an array, see ticket #8261
138
-		if( is_string( $this->_errors ) ){
139
-			$this->_errors = array( $this->_errors );
138
+		if (is_string($this->_errors)) {
139
+			$this->_errors = array($this->_errors);
140 140
 		}
141
-		if(count($this->_errors) >= $limit ){
142
-			if( $force ){
141
+		if (count($this->_errors) >= $limit) {
142
+			if ($force) {
143 143
 				//get rid of the first half of the errors and any above the limit
144
-				$this->_errors = array_slice( $this->_errors, $limit / 2, $limit / 2 );
144
+				$this->_errors = array_slice($this->_errors, $limit / 2, $limit / 2);
145 145
 				$this->_errors[] = "Limit reached; removed first half of errors to save space";
146 146
 				$this->_errors[] = $error;
147
-			}else{
148
-				$this->_errors[ $limit ] = 'More, but limit reached...';
147
+			} else {
148
+				$this->_errors[$limit] = 'More, but limit reached...';
149 149
 			}
150
-		}else{
150
+		} else {
151 151
 			$this->_errors[] = $error;
152 152
 		}
153 153
 	}
@@ -156,57 +156,57 @@  discard block
 block discarded – undo
156 156
 	 * Indicates there was a fatal error and the migration cannot possibly continue
157 157
 	 * @return boolean
158 158
 	 */
159
-	public function is_broken(){
159
+	public function is_broken() {
160 160
 		return $this->get_status() == EE_Data_Migration_Manager::status_fatal_error;
161 161
 	}
162 162
 	/**
163 163
 	 * @deprecated since 4.6.12
164 164
 	 */
165
-	public function is_borked(){
166
-		EE_Error::doing_it_wrong('is_borked', __( 'The cheeky "is_borked" method had been replaced with the more proper "is_broken"', 'event_espresso' ), '4.6.12');
165
+	public function is_borked() {
166
+		EE_Error::doing_it_wrong('is_borked', __('The cheeky "is_borked" method had been replaced with the more proper "is_broken"', 'event_espresso'), '4.6.12');
167 167
 		return $this->is_broken();
168 168
 	}
169 169
 	/**
170 170
 	 * Sets the status to as having a fatal error
171 171
 	 */
172
-	public function set_broken(){
172
+	public function set_broken() {
173 173
 		$this->_status = EE_Data_Migration_Manager::status_fatal_error;
174 174
 	}
175 175
 	/**
176 176
 	 *
177 177
 	 * @deprecated since 4.6.12
178 178
 	 */
179
-	public function set_borked(){
180
-		EE_Error::doing_it_wrong('is_borked', __( 'The cheeky "is_borked" method had been replaced with the more proper "is_broken"', 'event_espresso' ), '4.6.12');
179
+	public function set_borked() {
180
+		EE_Error::doing_it_wrong('is_borked', __('The cheeky "is_borked" method had been replaced with the more proper "is_broken"', 'event_espresso'), '4.6.12');
181 181
 		return $this->set_broken();
182 182
 	}
183 183
 	/**
184 184
 	 * Checks if this thing believes it is completed
185 185
 	 * @return boolean
186 186
 	 */
187
-	public function is_completed(){
187
+	public function is_completed() {
188 188
 		return $this->get_status() == EE_Data_Migration_Manager::status_completed;
189 189
 	}
190 190
 	/**
191 191
 	 * Checks if the current script has more to do or not (ie, if it's status is CONTINUE)
192 192
 	 * @return boolean
193 193
 	 */
194
-	public function has_more_to_do(){
194
+	public function has_more_to_do() {
195 195
 		return $this->get_status() == EE_Data_Migration_Manager::status_continue;
196 196
 	}
197 197
 	/**
198 198
 	 * Marks that we believe this migration thing is completed
199 199
 	 */
200
-	public function set_completed(){
200
+	public function set_completed() {
201 201
 		$this->_status = EE_Data_Migration_Manager::status_completed;
202 202
 	}
203 203
 
204 204
 	/**
205 205
 	 * Marks that we think this migration class can continue to migrate
206 206
 	 */
207
-	public function reattempt(){
207
+	public function reattempt() {
208 208
 		$this->_status = EE_Data_Migration_Manager::status_continue;
209
-		$this->add_error( __( 'Reattempt migration', 'event_espresso' ), TRUE );
209
+		$this->add_error(__('Reattempt migration', 'event_espresso'), TRUE);
210 210
 	}
211 211
 
212 212
 	/**
@@ -215,8 +215,8 @@  discard block
 block discarded – undo
215 215
 	 * possible that this class is defined when it goes to sleep, but NOT available when it
216 216
 	 * awakes (eg, this class is part of an addon that is deactivated at some point).
217 217
 	 */
218
-	public function properties_as_array(){
219
-		$properties =  get_object_vars($this);
218
+	public function properties_as_array() {
219
+		$properties = get_object_vars($this);
220 220
 		$properties['class'] = get_class($this);
221 221
 		unset($properties['_migration_script']);
222 222
 		return $properties;
@@ -237,22 +237,22 @@  discard block
 block discarded – undo
237 237
 	 * @param array $data_types numerically indexed
238 238
 	 * @return string
239 239
 	 */
240
-	protected function _create_error_message_for_db_insertion($old_table, $old_row_as_array, $new_table, $new_row_as_array, $data_types){
240
+	protected function _create_error_message_for_db_insertion($old_table, $old_row_as_array, $new_table, $new_row_as_array, $data_types) {
241 241
 		global $wpdb;
242 242
 		$old_columns_and_values_for_string = array();
243
-		foreach($old_row_as_array as $column => $value){
243
+		foreach ($old_row_as_array as $column => $value) {
244 244
 			$old_columns_and_values_for_string[] = "$column => $value";
245 245
 		}
246 246
 		$new_columns_and_values_for_string = array();
247 247
 		$count = 0;
248
-		foreach($new_row_as_array as $column => $value){
248
+		foreach ($new_row_as_array as $column => $value) {
249 249
 			$new_columns_and_values_for_string[] = " $column => $value (".$data_types[$count++].")";
250 250
 		}
251 251
 		return sprintf(
252 252
 			__('Received error "%6$s" inserting row %5$s %1$s %5$s into table %2$s.%5$s Data used was %5$s %3$s %5$s from table %4%s.', "event_espresso"),
253
-			implode(", ",$new_columns_and_values_for_string),
253
+			implode(", ", $new_columns_and_values_for_string),
254 254
 			$new_table,
255
-			implode(", ",$old_columns_and_values_for_string),
255
+			implode(", ", $old_columns_and_values_for_string),
256 256
 			$old_table,
257 257
 			'<br/>',
258 258
 			$wpdb->last_error
@@ -267,12 +267,12 @@  discard block
 block discarded – undo
267 267
 	* @param array $array_of_data
268 268
 	* @return string
269 269
 	*/
270
-	protected function _json_encode($array_of_data){
270
+	protected function _json_encode($array_of_data) {
271 271
 		//we'd rather NOT serialize the transaction details
272 272
 		$fields_to_include = array();
273
-		foreach($array_of_data as $name => $value){
273
+		foreach ($array_of_data as $name => $value) {
274 274
 			$unserialized_data = @unserialize($value);
275
-			if($unserialized_data === FALSE){
275
+			if ($unserialized_data === FALSE) {
276 276
 				$fields_to_include[$name] = $value;
277 277
 			}
278 278
 		}
Please login to merge, or discard this patch.
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 		$errors = $this->get_errors();
120 120
 		if($errors){
121 121
 			return end($errors);
122
-		}else{
122
+		} else{
123 123
 			return null;
124 124
 		}
125 125
 	}
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 	public function add_error($error, $force = FALSE ){
132 132
 		if( ! defined( 'EE_DMS_ERROR_LIMIT' ) ){
133 133
 			$limit = 50;
134
-		}else{
134
+		} else{
135 135
 			$limit = EE_DMS_ERROR_LIMIT;
136 136
 		}
137 137
 		//make sure errors is an array, see ticket #8261
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
 				$this->_errors = array_slice( $this->_errors, $limit / 2, $limit / 2 );
145 145
 				$this->_errors[] = "Limit reached; removed first half of errors to save space";
146 146
 				$this->_errors[] = $error;
147
-			}else{
147
+			} else{
148 148
 				$this->_errors[ $limit ] = 'More, but limit reached...';
149 149
 			}
150
-		}else{
150
+		} else{
151 151
 			$this->_errors[] = $error;
152 152
 		}
153 153
 	}
Please login to merge, or discard this patch.
core/data_migration_scripts/EE_DMS_Core_4_1_0.dms.php 4 patches
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1434,7 +1434,6 @@  discard block
 block discarded – undo
1434 1434
 	/**
1435 1435
 	 * Makes sure the 3.1's image url is converted to an image attachment post to the 4.1 CPT event
1436 1436
 	 * and sets it as the featured image on the CPT event
1437
-	 * @param type $old_event
1438 1437
 	 * @param type $new_cpt_id
1439 1438
 	 * @param  EE_Data_Migration_Script_Stage $migration_stage the stage which called this, where errors should be added
1440 1439
 	 * @return boolean whether or not we had to do the big job of creating an image attachment
@@ -1482,7 +1481,7 @@  discard block
 block discarded – undo
1482 1481
 	/**
1483 1482
 	 * Creates an image attachment post for the GUID. If the GUID points to a remote image,
1484 1483
 	 * we download it to our uploads directory so that it can be properly processed (eg, creates different sizes of thumbnails)
1485
-	 * @param type $guid
1484
+	 * @param string $guid
1486 1485
 	 * @param EE_Data_Migration_Script_Stage $migration_stage
1487 1486
 	 * @return int
1488 1487
 	 */
@@ -1558,7 +1557,7 @@  discard block
 block discarded – undo
1558 1557
 	/**
1559 1558
 	 * Returns a mysql-formatted DATETIME in UTC time, given a $DATETIME_string
1560 1559
 	 * (and optionally a timezone; if none is given, the wp DEFAULT is used)
1561
-	 * @param EE_Data_Migration_Script_base $stage
1560
+	 * @param EE_Data_Migration_Script_Stage $stage
1562 1561
 	 * @param array $row_of_data, the row from the DB (as an array) we're trying to find the UTC time for
1563 1562
 	 * @param string $DATETIME_string
1564 1563
 	 * @param string $timezone
Please login to merge, or discard this patch.
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -1607,19 +1607,19 @@
 block discarded – undo
1607 1607
 	private function timezone_convert_to_string_from_offset($offset){
1608 1608
 		//shamelessly taken from bottom comment at http://ca1.php.net/manual/en/function.timezone-name-from-abbr.php because timezone_name_from_abbr() did NOT work as expected - its not reliable
1609 1609
 		$offset *= 3600; // convert hour offset to seconds
1610
-        $abbrarray = timezone_abbreviations_list();
1611
-        foreach ($abbrarray as $abbr){
1612
-                foreach ($abbr as $city)
1613
-                {
1614
-                        if ($city['offset'] == $offset)
1615
-                        {
1616
-
1617
-                                return $city['timezone_id'];
1618
-                        }
1619
-                }
1620
-        }
1621
-
1622
-        return FALSE;
1610
+		$abbrarray = timezone_abbreviations_list();
1611
+		foreach ($abbrarray as $abbr){
1612
+				foreach ($abbr as $city)
1613
+				{
1614
+						if ($city['offset'] == $offset)
1615
+						{
1616
+
1617
+								return $city['timezone_id'];
1618
+						}
1619
+				}
1620
+		}
1621
+
1622
+		return FALSE;
1623 1623
 	}
1624 1624
 
1625 1625
 	public function migration_page_hooks(){
Please login to merge, or discard this patch.
Spacing   +202 added lines, -202 removed lines patch added patch discarded remove patch
@@ -8,15 +8,15 @@  discard block
 block discarded – undo
8 8
 //(all other times it gets resurrected from a wordpress option)
9 9
 $stages = glob(EE_CORE.'data_migration_scripts/4_1_0_stages/*');
10 10
 $class_to_filepath = array();
11
-if ( ! empty( $stages ) ) {
12
-	foreach($stages as $filepath){
11
+if ( ! empty($stages)) {
12
+	foreach ($stages as $filepath) {
13 13
 		$matches = array();
14
-		preg_match('~4_1_0_stages/(.*).dmsstage.php~',$filepath,$matches);
14
+		preg_match('~4_1_0_stages/(.*).dmsstage.php~', $filepath, $matches);
15 15
 		$class_to_filepath[$matches[1]] = $filepath;
16 16
 	}
17 17
 }
18 18
 //give addons a chance to autoload their stages too
19
-$class_to_filepath = apply_filters('FHEE__EE_DMS_4_1_0__autoloaded_stages',$class_to_filepath);
19
+$class_to_filepath = apply_filters('FHEE__EE_DMS_4_1_0__autoloaded_stages', $class_to_filepath);
20 20
 EEH_Autoloader::register_autoloader($class_to_filepath);
21 21
 
22 22
 /**
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
  * --a function named update_espresso_config() which saves the EE_Config object to the database
35 35
  * --...and all its subclasses... really, you're best off copying the whole thin gwhen 4.1 is released into this file and wrapping its declaration in if( ! class_exists()){...}
36 36
  */
37
-class EE_DMS_Core_4_1_0 extends EE_Data_Migration_Script_Base{
37
+class EE_DMS_Core_4_1_0 extends EE_Data_Migration_Script_Base {
38 38
 
39 39
 
40 40
 
@@ -67,26 +67,26 @@  discard block
 block discarded – undo
67 67
 	 * @global type $wpdb
68 68
 	 * @return boolean
69 69
 	 */
70
-	private function _checkin_table_exists(){
70
+	private function _checkin_table_exists() {
71 71
 		global $wpdb;
72 72
 		$results = $wpdb->get_results("SHOW TABLES LIKE '".$wpdb->prefix."events_attendee_checkin"."'");
73
-		if($results){
73
+		if ($results) {
74 74
 			return true;
75
-		}else{
75
+		} else {
76 76
 			return false;
77 77
 		}
78 78
 	}
79 79
 	public function can_migrate_from_version($version_array) {
80 80
 		$version_string = $version_array['Core'];
81
-		if($version_string < '4.0.0' && $version_string > '3.1.26' ){
81
+		if ($version_string < '4.0.0' && $version_string > '3.1.26') {
82 82
 //			echo "$version_string can be migrated fro";
83 83
 			return true;
84
-		}elseif( ! $version_string ){
84
+		}elseif ( ! $version_string) {
85 85
 //			echo "no version string provided: $version_string";
86 86
 			//no version string provided... this must be pre 4.1
87 87
 			//because since 4.1 we're
88
-			return false;//changed mind. dont want people thinking they should migrate yet because they cant
89
-		}else{
88
+			return false; //changed mind. dont want people thinking they should migrate yet because they cant
89
+		} else {
90 90
 //			echo "$version_string doesnt apply";
91 91
 			return false;
92 92
 		}
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
 	}
97 97
 	public function schema_changes_before_migration() {
98 98
 		//relies on 4.1's EEH_Activation::create_table
99
-		require_once( EE_HELPERS . 'EEH_Activation.helper.php' );
99
+		require_once(EE_HELPERS.'EEH_Activation.helper.php');
100 100
 
101
-		$table_name='esp_answer';
102
-		$sql=" ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
101
+		$table_name = 'esp_answer';
102
+		$sql = " ANS_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
103 103
 					REG_ID INT UNSIGNED NOT NULL,
104 104
 					QST_ID INT UNSIGNED NOT NULL,
105 105
 					ANS_value TEXT NOT NULL,
106 106
 					PRIMARY KEY  (ANS_ID)";
107
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
107
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
108 108
 
109 109
 		$table_name = 'esp_attendee_meta';
110 110
 		$sql = "ATTM_ID INT(10) UNSIGNED NOT	NULL AUTO_INCREMENT,
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 					  CNT_is_EU TINYINT(1) DEFAULT '0',
145 145
 					  CNT_active TINYINT(1) DEFAULT '0',
146 146
 					  PRIMARY KEY  (CNT_ISO)";
147
-		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
147
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
148 148
 
149 149
 
150 150
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 
166 166
 
167 167
 
168
-		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB' );
168
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
169 169
 		$table_name = 'esp_event_meta';
170 170
 		$sql = "
171 171
 			EVTM_ID INT NOT NULL AUTO_INCREMENT,
@@ -182,41 +182,41 @@  discard block
 block discarded – undo
182 182
 			EVT_external_URL VARCHAR(200) NULL,
183 183
 			EVT_donations TINYINT(1) NULL,
184 184
 			PRIMARY KEY  (EVTM_ID)";
185
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
185
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
186 186
 
187 187
 
188 188
 
189
-		$table_name='esp_event_question_group';
190
-		$sql="EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
189
+		$table_name = 'esp_event_question_group';
190
+		$sql = "EQG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
191 191
 					EVT_ID BIGINT(20) UNSIGNED NOT NULL,
192 192
 					QSG_ID INT UNSIGNED NOT NULL,
193 193
 					EQG_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
194 194
 					PRIMARY KEY  (EQG_ID)";
195
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
195
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
196 196
 
197 197
 
198 198
 
199
-		$table_name='esp_event_venue';
200
-		$sql="EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
199
+		$table_name = 'esp_event_venue';
200
+		$sql = "EVV_ID INT(11) NOT NULL AUTO_INCREMENT,
201 201
 				EVT_ID BIGINT(20) UNSIGNED NOT NULL,
202 202
 				VNU_ID BIGINT(20) UNSIGNED NOT NULL,
203 203
 				EVV_primary TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
204 204
 				PRIMARY KEY  (EVV_ID)";
205
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
205
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
206 206
 
207 207
 
208 208
 
209
-		$table_name='esp_extra_meta';
210
-		$sql="EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
209
+		$table_name = 'esp_extra_meta';
210
+		$sql = "EXM_ID INT(11) NOT NULL AUTO_INCREMENT,
211 211
 				OBJ_ID INT(11) DEFAULT NULL,
212 212
 				EXM_type VARCHAR(45) DEFAULT NULL,
213 213
 				EXM_key VARCHAR(45) DEFAULT NULL,
214 214
 				EXM_value TEXT,
215 215
 				PRIMARY KEY  (EXM_ID)";
216
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
216
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
217 217
 
218
-		$table_name='esp_line_item';
219
-		$sql="LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
218
+		$table_name = 'esp_line_item';
219
+		$sql = "LIN_ID INT(11) NOT NULL AUTO_INCREMENT,
220 220
 				LIN_code VARCHAR(245) NOT NULL DEFAULT '',
221 221
 				TXN_ID INT(11) DEFAULT NULL,
222 222
 				LIN_name VARCHAR(245) NOT NULL DEFAULT '',
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 				OBJ_ID INT(11) DEFAULT NULL,
233 233
 				OBJ_type VARCHAR(45)DEFAULT NULL,
234 234
 				PRIMARY KEY  (LIN_ID)";
235
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB' );
235
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
236 236
 
237 237
 		$table_name = 'esp_message_template';
238 238
 		$sql = "MTP_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 					PRIMARY KEY  (GRP_ID),
260 260
 					KEY EVT_ID (EVT_ID),
261 261
 					KEY MTP_user_id (MTP_user_id)";
262
-		$this->_table_is_new_in_this_version( $table_name, $sql, 'ENGINE=InnoDB');
262
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
263 263
 
264 264
 
265 265
 
@@ -367,8 +367,8 @@  discard block
 block discarded – undo
367 367
 
368 368
 
369 369
 
370
-		$table_name='esp_question';
371
-		$sql='QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
370
+		$table_name = 'esp_question';
371
+		$sql = 'QST_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
372 372
 					QST_display_text TEXT NOT NULL,
373 373
 					QST_admin_label VARCHAR(255) NOT NULL,
374 374
 					QST_system VARCHAR(25) DEFAULT NULL,
@@ -380,12 +380,12 @@  discard block
 block discarded – undo
380 380
 					QST_wp_user BIGINT UNSIGNED NULL,
381 381
 					QST_deleted TINYINT UNSIGNED NOT NULL DEFAULT 0,
382 382
 					PRIMARY KEY  (QST_ID)';
383
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
383
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
384 384
 
385
-		EEH_Activation::drop_index( 'esp_question_group', 'QSG_identifier_UNIQUE' );
385
+		EEH_Activation::drop_index('esp_question_group', 'QSG_identifier_UNIQUE');
386 386
 
387 387
 		$table_name = 'esp_question_group';
388
-		$sql='QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
388
+		$sql = 'QSG_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
389 389
 					QSG_name VARCHAR(255) NOT NULL,
390 390
 					QSG_identifier VARCHAR(100) NOT NULL,
391 391
 					QSG_desc TEXT NULL,
@@ -396,27 +396,27 @@  discard block
 block discarded – undo
396 396
 					QSG_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
397 397
 					PRIMARY KEY  (QSG_ID),
398 398
 					UNIQUE KEY QSG_identifier_UNIQUE (QSG_identifier ASC)';
399
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
399
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
400 400
 
401 401
 
402 402
 
403
-		$table_name='esp_question_group_question';
404
-		$sql="QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
403
+		$table_name = 'esp_question_group_question';
404
+		$sql = "QGQ_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
405 405
 					QSG_ID INT UNSIGNED NOT NULL,
406 406
 					QST_ID INT UNSIGNED NOT NULL,
407 407
 					PRIMARY KEY  (QGQ_ID) ";
408
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
408
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
409 409
 
410 410
 
411 411
 
412
-		$table_name='esp_question_option';
413
-		$sql="QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
412
+		$table_name = 'esp_question_option';
413
+		$sql = "QSO_ID INT UNSIGNED NOT NULL AUTO_INCREMENT,
414 414
 					QSO_value VARCHAR(255) NOT NULL,
415 415
 					QSO_desc TEXT NOT NULL,
416 416
 					QST_ID INT UNSIGNED NOT NULL,
417 417
 					QSO_deleted TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
418 418
 					PRIMARY KEY  (QSO_ID)";
419
-		$this->_table_is_new_in_this_version($table_name,$sql, 'ENGINE=InnoDB');
419
+		$this->_table_is_new_in_this_version($table_name, $sql, 'ENGINE=InnoDB');
420 420
 
421 421
 
422 422
 
@@ -449,8 +449,8 @@  discard block
 block discarded – undo
449 449
 
450 450
 
451 451
 
452
-		$table_name='esp_checkin';
453
-		$sql="CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
452
+		$table_name = 'esp_checkin';
453
+		$sql = "CHK_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
454 454
 					REG_ID INT(10) UNSIGNED NOT NULL,
455 455
 					DTT_ID INT(10) UNSIGNED NOT NULL,
456 456
 					CHK_in TINYINT(1) UNSIGNED NOT NULL DEFAULT 1,
@@ -557,12 +557,12 @@  discard block
 block discarded – undo
557 557
 
558 558
 		global $wpdb;
559 559
 		$state_table = $wpdb->prefix."esp_state";
560
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $state_table . "'") == $state_table ) {
560
+		if ($wpdb->get_var("SHOW TABLES LIKE '".$state_table."'") == $state_table) {
561 561
 
562
-			$SQL = "SELECT COUNT('STA_ID') FROM " . $state_table;
562
+			$SQL = "SELECT COUNT('STA_ID') FROM ".$state_table;
563 563
 			$states = $wpdb->get_var($SQL);
564
-			if ( ! $states ) {
565
-				$SQL = "INSERT INTO " . $state_table . "
564
+			if ( ! $states) {
565
+				$SQL = "INSERT INTO ".$state_table."
566 566
 				(STA_ID, CNT_ISO, STA_abbrev, STA_name, STA_active) VALUES
567 567
 				(1, 'US', 'AK', 'Alaska', 1),
568 568
 				(2, 'US', 'AL', 'Alabama', 1),
@@ -649,12 +649,12 @@  discard block
 block discarded – undo
649 649
 
650 650
 		global $wpdb;
651 651
 		$country_table = $wpdb->prefix."esp_country";
652
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $country_table . "'") == $country_table ) {
652
+		if ($wpdb->get_var("SHOW TABLES LIKE '".$country_table."'") == $country_table) {
653 653
 
654
-			$SQL = "SELECT COUNT('CNT_ISO') FROM " . $country_table;
654
+			$SQL = "SELECT COUNT('CNT_ISO') FROM ".$country_table;
655 655
 			$countries = $wpdb->get_var($SQL);
656
-			if ( ! $countries ) {
657
-				$SQL = "INSERT INTO " . $country_table . "
656
+			if ( ! $countries) {
657
+				$SQL = "INSERT INTO ".$country_table."
658 658
 				(CNT_ISO, CNT_ISO3, RGN_ID, CNT_name, CNT_cur_code, CNT_cur_single, CNT_cur_plural, CNT_cur_sign, CNT_cur_sign_b4, CNT_cur_dec_plc, CNT_tel_code, CNT_is_EU, CNT_active) VALUES
659 659
 				('AD', 'AND', 0, 'Andorra', 'EUR', 'Euro', 'Euros', '€', 1, 2, '+376', 0, 0),
660 660
 				('AE', 'ARE', 0, 'United Arab Emirates', 'AED', 'Dirham', 'Dirhams', 'د.إ', 1, 2, '+971', 0, 0),
@@ -903,18 +903,18 @@  discard block
 block discarded – undo
903 903
 
904 904
 		if ($wpdb->get_var("SHOW TABLES LIKE '$price_type_table'") == $price_type_table) {
905 905
 
906
-			$SQL = 'SELECT COUNT(PRT_ID) FROM ' . $price_type_table;
907
-			$price_types_exist = $wpdb->get_var( $SQL );
906
+			$SQL = 'SELECT COUNT(PRT_ID) FROM '.$price_type_table;
907
+			$price_types_exist = $wpdb->get_var($SQL);
908 908
 
909
-			if ( ! $price_types_exist ) {
909
+			if ( ! $price_types_exist) {
910 910
 				$SQL = "INSERT INTO $price_type_table ( PRT_ID, PRT_name, PBT_ID, PRT_is_percent, PRT_order, PRT_deleted ) VALUES
911
-							(1, '" . __('Base Price', 'event_espresso') . "', 1,  0, 0, 0),
912
-							(2, '" . __('Percent Discount', 'event_espresso') . "', 2,  1, 20, 0),
913
-							(3, '" . __('Fixed Discount', 'event_espresso') . "', 2,  0, 30, 0),
914
-							(4, '" . __('Percent Surcharge', 'event_espresso') . "', 3,  1, 40, 0),
915
-							(5, '" . __('Fixed Surcharge', 'event_espresso') . "', 3,  0, 50, 0);";
916
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_price_types__SQL', $SQL );
917
-				$wpdb->query( $SQL );
911
+							(1, '".__('Base Price', 'event_espresso')."', 1,  0, 0, 0),
912
+							(2, '" . __('Percent Discount', 'event_espresso')."', 2,  1, 20, 0),
913
+							(3, '" . __('Fixed Discount', 'event_espresso')."', 2,  0, 30, 0),
914
+							(4, '" . __('Percent Surcharge', 'event_espresso')."', 3,  1, 40, 0),
915
+							(5, '" . __('Fixed Surcharge', 'event_espresso')."', 3,  0, 50, 0);";
916
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_price_types__SQL', $SQL);
917
+				$wpdb->query($SQL);
918 918
 			}
919 919
 		}
920 920
 	}
@@ -936,14 +936,14 @@  discard block
 block discarded – undo
936 936
 
937 937
 		if ($wpdb->get_var("SHOW TABLES LIKE '$price_table'") == $price_table) {
938 938
 
939
-			$SQL = 'SELECT COUNT(PRC_ID) FROM ' .$price_table;
940
-			$prices_exist = $wpdb->get_var( $SQL );
939
+			$SQL = 'SELECT COUNT(PRC_ID) FROM '.$price_table;
940
+			$prices_exist = $wpdb->get_var($SQL);
941 941
 
942
-			if ( ! $prices_exist ) {
942
+			if ( ! $prices_exist) {
943 943
 				$SQL = "INSERT INTO $price_table
944 944
 							(PRC_ID, PRT_ID, PRC_amount, PRC_name, PRC_desc,  PRC_is_default, PRC_overrides, PRC_order, PRC_deleted, PRC_parent ) VALUES
945 945
 							(1, 1, '0.00', 'Free Admission', '', 1, NULL, 0, 0, 0);";
946
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_prices__SQL', $SQL );
946
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_prices__SQL', $SQL);
947 947
 				$wpdb->query($SQL);
948 948
 			}
949 949
 		}
@@ -960,34 +960,34 @@  discard block
 block discarded – undo
960 960
 
961 961
 		global $wpdb;
962 962
 		$ticket_table = $wpdb->prefix."esp_ticket";
963
-		if ( $wpdb->get_var("SHOW TABLES LIKE'$ticket_table'") == $ticket_table ) {
963
+		if ($wpdb->get_var("SHOW TABLES LIKE'$ticket_table'") == $ticket_table) {
964 964
 
965
-			$SQL = 'SELECT COUNT(TKT_ID) FROM ' . $ticket_table;
965
+			$SQL = 'SELECT COUNT(TKT_ID) FROM '.$ticket_table;
966 966
 			$tickets_exist = $wpdb->get_var($SQL);
967 967
 
968
-			if ( ! $tickets_exist ) {
968
+			if ( ! $tickets_exist) {
969 969
 				$SQL = "INSERT INTO $ticket_table
970 970
 					( TKT_ID, TTM_ID, TKT_name, TKT_description, TKT_qty, TKT_sold, TKT_uses, TKT_min, TKT_max, TKT_price, TKT_start_date, TKT_end_date, TKT_taxable, TKT_order, TKT_row, TKT_is_default, TKT_parent, TKT_deleted ) VALUES
971
-					( 1, 0, '" . __("Free Ticket", "event_espresso") . "', '', 100, 0, -1, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
972
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL );
971
+					( 1, 0, '".__("Free Ticket", "event_espresso")."', '', 100, 0, -1, 0, -1, 0.00, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 0, 0);";
972
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL', $SQL);
973 973
 				$wpdb->query($SQL);
974 974
 			}
975 975
 		}
976 976
 		$ticket_price_table = $wpdb->prefix."esp_ticket_price";
977 977
 
978
-		if ( $wpdb->get_var("SHOW TABLES LIKE'$ticket_price_table'") == $ticket_price_table ) {
978
+		if ($wpdb->get_var("SHOW TABLES LIKE'$ticket_price_table'") == $ticket_price_table) {
979 979
 
980
-			$SQL = 'SELECT COUNT(TKP_ID) FROM ' . $ticket_price_table;
980
+			$SQL = 'SELECT COUNT(TKP_ID) FROM '.$ticket_price_table;
981 981
 			$ticket_prc_exist = $wpdb->get_var($SQL);
982 982
 
983
-			if ( ! $ticket_prc_exist ) {
983
+			if ( ! $ticket_prc_exist) {
984 984
 
985 985
 				$SQL = "INSERT INTO $ticket_price_table
986 986
 				( TKP_ID, TKT_ID, PRC_ID ) VALUES
987 987
 				( 1, 1, 1 )
988 988
 				";
989 989
 
990
-				$SQL = apply_filters( 'FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL );
990
+				$SQL = apply_filters('FHEE__EE_DMS_4_1_0__insert_default_tickets__SQL__ticket_price', $SQL);
991 991
 				$wpdb->query($SQL);
992 992
 			}
993 993
 		}
@@ -1000,20 +1000,20 @@  discard block
 block discarded – undo
1000 1000
 	 * @param string $country_name
1001 1001
 	 * @return array where keys are columns, values are column values
1002 1002
 	 */
1003
-	public function get_or_create_country($country_name){
1004
-		if( ! $country_name ){
1003
+	public function get_or_create_country($country_name) {
1004
+		if ( ! $country_name) {
1005 1005
 			throw new EE_Error(__("Could not get a country because country name is blank", "event_espresso"));
1006 1006
 		}
1007 1007
 		global $wpdb;
1008 1008
 		$country_table = $wpdb->prefix."esp_country";
1009
-		if(is_int($country_name)){
1009
+		if (is_int($country_name)) {
1010 1010
 			$country_name = $this->get_iso_from_3_1_country_id($country_name);
1011 1011
 		}
1012 1012
 		$country = $wpdb->get_row($wpdb->prepare("SELECT * FROM $country_table WHERE
1013 1013
 			CNT_ISO LIKE %s OR
1014 1014
 			CNT_ISO3 LIKE %s OR
1015
-			CNT_name LIKE %s LIMIT 1",$country_name,$country_name,$country_name),ARRAY_A);
1016
-		if( ! $country ){
1015
+			CNT_name LIKE %s LIMIT 1", $country_name, $country_name, $country_name), ARRAY_A);
1016
+		if ( ! $country) {
1017 1017
 			//insert a new one then
1018 1018
 			$cols_n_values = array(
1019 1019
 				'CNT_ISO'=> $this->_find_available_country_iso(2),
@@ -1033,26 +1033,26 @@  discard block
 block discarded – undo
1033 1033
 				'CNT_active'=>true
1034 1034
 			);
1035 1035
 			$data_types = array(
1036
-				'%s',//CNT_ISO
1037
-				'%s',//CNT_ISO3
1038
-				'%d',//RGN_ID
1039
-				'%s',//CNT_name
1040
-				'%s',//CNT_cur_code
1041
-				'%s',//CNT_cur_single
1042
-				'%s',//CNT_cur_plural
1043
-				'%s',//CNT_cur_sign
1044
-				'%d',//CNT_cur_sign_b4
1045
-				'%d',//CNT_cur_dec_plc
1046
-				'%s',//CNT_cur_dec_mrk
1047
-				'%s',//CNT_cur_thsnds
1048
-				'%s',//CNT_tel_code
1049
-				'%d',//CNT_is_EU
1050
-				'%d',//CNT_active
1036
+				'%s', //CNT_ISO
1037
+				'%s', //CNT_ISO3
1038
+				'%d', //RGN_ID
1039
+				'%s', //CNT_name
1040
+				'%s', //CNT_cur_code
1041
+				'%s', //CNT_cur_single
1042
+				'%s', //CNT_cur_plural
1043
+				'%s', //CNT_cur_sign
1044
+				'%d', //CNT_cur_sign_b4
1045
+				'%d', //CNT_cur_dec_plc
1046
+				'%s', //CNT_cur_dec_mrk
1047
+				'%s', //CNT_cur_thsnds
1048
+				'%s', //CNT_tel_code
1049
+				'%d', //CNT_is_EU
1050
+				'%d', //CNT_active
1051 1051
 			);
1052 1052
 			$success = $wpdb->insert($country_table,
1053 1053
 					$cols_n_values,
1054 1054
 					$data_types);
1055
-			if( ! $success){
1055
+			if ( ! $success) {
1056 1056
 				throw new EE_Error($this->_create_error_message_for_db_insertion('N/A', array('country_id'=>$country_name), $country_table, $cols_n_values, $data_types));
1057 1057
 			}
1058 1058
 			$country = $cols_n_values;
@@ -1064,13 +1064,13 @@  discard block
 block discarded – undo
1064 1064
 	 * @global type $wpdb
1065 1065
 	 * @return string
1066 1066
 	 */
1067
-	private function _find_available_country_iso($num_letters = 2){
1067
+	private function _find_available_country_iso($num_letters = 2) {
1068 1068
 		global $wpdb;
1069 1069
 		$country_table = $wpdb->prefix."esp_country";
1070
-		do{
1070
+		do {
1071 1071
 			$current_iso = strtoupper(wp_generate_password($num_letters, false));
1072
-			$country_with_that_iso = $wpdb->get_var($wpdb->prepare("SELECT count(CNT_ISO) FROM ".$country_table." WHERE CNT_ISO=%s",$current_iso));
1073
-		}while(intval($country_with_that_iso));
1072
+			$country_with_that_iso = $wpdb->get_var($wpdb->prepare("SELECT count(CNT_ISO) FROM ".$country_table." WHERE CNT_ISO=%s", $current_iso));
1073
+		}while (intval($country_with_that_iso));
1074 1074
 		return $current_iso;
1075 1075
 	}
1076 1076
 
@@ -1081,14 +1081,14 @@  discard block
 block discarded – undo
1081 1081
 	 * @param string $state_name
1082 1082
 	 * @return array where keys are columns, values are column values
1083 1083
 	 */
1084
-	public function get_or_create_state($state_name,$country_name = ''){
1085
-		if( ! $state_name ){
1084
+	public function get_or_create_state($state_name, $country_name = '') {
1085
+		if ( ! $state_name) {
1086 1086
 			throw new EE_Error(__("Could not get-or-create state because no state name was provided", "event_espresso"));
1087 1087
 		}
1088
-		try{
1088
+		try {
1089 1089
 			$country = $this->get_or_create_country($country_name);
1090 1090
 			$country_iso = $country['CNT_ISO'];
1091
-		}catch(EE_Error $e){
1091
+		} catch (EE_Error $e) {
1092 1092
 			$country_iso = $this->get_default_country_iso();
1093 1093
 		}
1094 1094
 		global $wpdb;
@@ -1096,24 +1096,24 @@  discard block
 block discarded – undo
1096 1096
 		$state = $wpdb->get_row($wpdb->prepare("SELECT * FROM $state_table WHERE
1097 1097
 			(STA_abbrev LIKE %s OR
1098 1098
 			STA_name LIKE %s) AND
1099
-			CNT_ISO LIKE %s LIMIT 1",$state_name,$state_name,$country_iso),ARRAY_A);
1100
-		if ( ! $state){
1099
+			CNT_ISO LIKE %s LIMIT 1", $state_name, $state_name, $country_iso), ARRAY_A);
1100
+		if ( ! $state) {
1101 1101
 			//insert a new one then
1102 1102
 			$cols_n_values = array(
1103 1103
 				'CNT_ISO'=>$country_iso,
1104
-				'STA_abbrev'=>substr($state_name,0,6),
1104
+				'STA_abbrev'=>substr($state_name, 0, 6),
1105 1105
 				'STA_name'=>$state_name,
1106 1106
 				'STA_active'=>true
1107 1107
 			);
1108 1108
 			$data_types = array(
1109
-				'%s',//CNT_ISO
1110
-				'%s',//STA_abbrev
1111
-				'%s',//STA_name
1112
-				'%d',//STA_active
1109
+				'%s', //CNT_ISO
1110
+				'%s', //STA_abbrev
1111
+				'%s', //STA_name
1112
+				'%d', //STA_active
1113 1113
 			);
1114
-			$success = $wpdb->insert($state_table,$cols_n_values,$data_types);
1115
-			if ( ! $success ){
1116
-				throw new EE_Error($this->_create_error_message_for_db_insertion('N/A', array('state'=>$state_name,'country_id'=>$country_name), $state_table, $cols_n_values, $data_types));
1114
+			$success = $wpdb->insert($state_table, $cols_n_values, $data_types);
1115
+			if ( ! $success) {
1116
+				throw new EE_Error($this->_create_error_message_for_db_insertion('N/A', array('state'=>$state_name, 'country_id'=>$country_name), $state_table, $cols_n_values, $data_types));
1117 1117
 			}
1118 1118
 			$state = $cols_n_values;
1119 1119
 			$state['STA_ID'] = $wpdb->insert_id;
@@ -1126,21 +1126,21 @@  discard block
 block discarded – undo
1126 1126
 	 * @param type $timeString
1127 1127
 	 * @return string in the php DATETIME format: "G:i" (24-hour format hour with leading zeros, a colon, and minutes with leading zeros)
1128 1128
 	 */
1129
-	public function convertTimeFromAMPM($timeString){
1129
+	public function convertTimeFromAMPM($timeString) {
1130 1130
 		$matches = array();
1131
-		preg_match("~(\\d*):(\\d*)~",$timeString,$matches);
1132
-		if( ! $matches || count($matches)<3){
1131
+		preg_match("~(\\d*):(\\d*)~", $timeString, $matches);
1132
+		if ( ! $matches || count($matches) < 3) {
1133 1133
 			$hour = '00';
1134 1134
 			$minutes = '00';
1135
-		}else{
1135
+		} else {
1136 1136
 			$hour = intval($matches[1]);
1137 1137
 			$minutes = $matches[2];
1138 1138
 		}
1139
-		if(strpos($timeString, 'PM') || strpos($timeString, 'pm')){
1139
+		if (strpos($timeString, 'PM') || strpos($timeString, 'pm')) {
1140 1140
 			$hour = intval($hour) + 12;
1141 1141
 		}
1142
-		$hour = str_pad( "$hour", 2, '0',STR_PAD_LEFT);
1143
-		$minutes = str_pad( "$minutes", 2, '0',STR_PAD_LEFT);
1142
+		$hour = str_pad("$hour", 2, '0', STR_PAD_LEFT);
1143
+		$minutes = str_pad("$minutes", 2, '0', STR_PAD_LEFT);
1144 1144
 		return "$hour:$minutes";
1145 1145
 	}
1146 1146
 
@@ -1149,7 +1149,7 @@  discard block
 block discarded – undo
1149 1149
 	 * @param int $country_id
1150 1150
 	 * @return string the country's ISO3 code
1151 1151
 	 */
1152
-	public function get_iso_from_3_1_country_id($country_id){
1152
+	public function get_iso_from_3_1_country_id($country_id) {
1153 1153
 		$old_countries = array(
1154 1154
 			array(64, 'United States', 'US', 'USA', 1),
1155 1155
 			array(15, 'Australia', 'AU', 'AUS', 1),
@@ -1375,9 +1375,9 @@  discard block
 block discarded – undo
1375 1375
 			array(226, 'Zimbabwe', 'ZW', 'ZWE', 1));
1376 1376
 
1377 1377
 		$country_iso = 'US';
1378
-		foreach($old_countries as $country_array){
1378
+		foreach ($old_countries as $country_array) {
1379 1379
 			//note: index 0 is the 3.1 country ID
1380
-			if($country_array[0] == $country_id){
1380
+			if ($country_array[0] == $country_id) {
1381 1381
 				//note: index 2 is the ISO
1382 1382
 				$country_iso = $country_array[2];
1383 1383
 				break;
@@ -1390,8 +1390,8 @@  discard block
 block discarded – undo
1390 1390
 	 * Gets the ISO3 for the
1391 1391
 	 * @return string
1392 1392
 	 */
1393
-	public function get_default_country_iso(){
1394
-		$old_org_options= get_option('events_organization_settings');
1393
+	public function get_default_country_iso() {
1394
+		$old_org_options = get_option('events_organization_settings');
1395 1395
 		$iso = $this->get_iso_from_3_1_country_id($old_org_options['organization_country']);
1396 1396
 		return $iso;
1397 1397
 	}
@@ -1403,13 +1403,13 @@  discard block
 block discarded – undo
1403 1403
 	 * the event's DEFAULT payment status, or the attendee's payment status) required pre-approval.
1404 1404
 	 * @return string STS_ID for use in 4.1
1405 1405
 	 */
1406
-	public function convert_3_1_payment_status_to_4_1_STS_ID($payment_status, $this_thing_required_pre_approval = false){
1406
+	public function convert_3_1_payment_status_to_4_1_STS_ID($payment_status, $this_thing_required_pre_approval = false) {
1407 1407
 
1408 1408
 		//EE team can read the related discussion: https://app.asana.com/0/2400967562914/9418495544455
1409
-		if($this_thing_required_pre_approval){
1409
+		if ($this_thing_required_pre_approval) {
1410 1410
 				return 'RNA';
1411
-		}else{
1412
-				$mapping = $default_reg_stati_conversions=array(
1411
+		} else {
1412
+				$mapping = $default_reg_stati_conversions = array(
1413 1413
 			'Completed'=>'RAP',
1414 1414
 			''=>'RPP',
1415 1415
 			'Incomplete'=>'RPP',
@@ -1439,22 +1439,22 @@  discard block
 block discarded – undo
1439 1439
 	 * @param  EE_Data_Migration_Script_Stage $migration_stage the stage which called this, where errors should be added
1440 1440
 	 * @return boolean whether or not we had to do the big job of creating an image attachment
1441 1441
 	 */
1442
-	public function convert_image_url_to_attachment_and_attach_to_post($guid,$new_cpt_id,  EE_Data_Migration_Script_Stage $migration_stage){
1442
+	public function convert_image_url_to_attachment_and_attach_to_post($guid, $new_cpt_id, EE_Data_Migration_Script_Stage $migration_stage) {
1443 1443
 		$created_attachment_post = false;
1444 1444
 		$guid = $this->_get_original_guid($guid);
1445
-		if($guid){
1445
+		if ($guid) {
1446 1446
 			//check for an existing attachment post with this guid
1447 1447
 			$attachment_post_id = $this->_get_image_attachment_id_by_GUID($guid);
1448
-			if( ! $attachment_post_id){
1448
+			if ( ! $attachment_post_id) {
1449 1449
 				//post thumbnail with that GUID doesn't exist, we should create one
1450 1450
 				$attachment_post_id = $this->_create_image_attachment_from_GUID($guid, $migration_stage);
1451 1451
 				$created_attachment_post = true;
1452 1452
 			}
1453 1453
 			//double-check we actually have an attachment post
1454
-			if( $attachment_post_id){
1455
-				update_post_meta($new_cpt_id,'_thumbnail_id',$attachment_post_id);
1456
-			}else{
1457
-				$migration_stage->add_error(sprintf(__("Could not update event image %s for CPT with ID %d, but attachments post ID is %d", "event_espresso"),$guid,$new_cpt_id,$attachment_post_id));
1454
+			if ($attachment_post_id) {
1455
+				update_post_meta($new_cpt_id, '_thumbnail_id', $attachment_post_id);
1456
+			} else {
1457
+				$migration_stage->add_error(sprintf(__("Could not update event image %s for CPT with ID %d, but attachments post ID is %d", "event_espresso"), $guid, $new_cpt_id, $attachment_post_id));
1458 1458
 			}
1459 1459
 		}
1460 1460
 		return $created_attachment_post;
@@ -1468,13 +1468,13 @@  discard block
 block discarded – undo
1468 1468
 	 * @param string $guid_in_old_event
1469 1469
 	 * @return string either the original guid, or $guid_in_old_event if we couldn't figure out what the original was
1470 1470
 	 */
1471
-	private function _get_original_guid($guid_in_old_event){
1472
-		$original_guid = preg_replace('~-\d*x\d*\.~','.',$guid_in_old_event,1);
1471
+	private function _get_original_guid($guid_in_old_event) {
1472
+		$original_guid = preg_replace('~-\d*x\d*\.~', '.', $guid_in_old_event, 1);
1473 1473
 		//do a head request to verify the file exists
1474 1474
 		$head_response = wp_remote_head($original_guid);
1475
-		if( ! $head_response instanceof WP_Error && $head_response['response']['message'] == 'OK'){
1475
+		if ( ! $head_response instanceof WP_Error && $head_response['response']['message'] == 'OK') {
1476 1476
 			return $original_guid;
1477
-		}else{
1477
+		} else {
1478 1478
 			return $guid_in_old_event;
1479 1479
 		}
1480 1480
 	}
@@ -1486,32 +1486,32 @@  discard block
 block discarded – undo
1486 1486
 	 * @param EE_Data_Migration_Script_Stage $migration_stage
1487 1487
 	 * @return int
1488 1488
 	 */
1489
-	private function _create_image_attachment_from_GUID($guid, EE_Data_Migration_Script_Stage $migration_stage){
1490
-		if ( ! $guid){
1489
+	private function _create_image_attachment_from_GUID($guid, EE_Data_Migration_Script_Stage $migration_stage) {
1490
+		if ( ! $guid) {
1491 1491
 			$migration_stage->add_error(sprintf(__("Cannot create image attachment for a blank GUID!", "event_espresso")));
1492 1492
 			return 0;
1493 1493
 		}
1494
-		$wp_filetype = wp_check_filetype(basename($guid), null );
1494
+		$wp_filetype = wp_check_filetype(basename($guid), null);
1495 1495
 		$wp_upload_dir = wp_upload_dir();
1496 1496
 		//if the file is located remotely, download it to our uploads DIR, because wp_genereate_attachmnet_metadata needs the file to be local
1497
-		if(strpos($guid,$wp_upload_dir['url']) === FALSE){
1497
+		if (strpos($guid, $wp_upload_dir['url']) === FALSE) {
1498 1498
 			//image is located remotely. download it and place it in the uploads directory
1499
-			if( ! is_readable($guid)){
1500
-				$migration_stage->add_error(sprintf(__("Could not create image attachment from non-existent file: %s", "event_espresso"),$guid));
1499
+			if ( ! is_readable($guid)) {
1500
+				$migration_stage->add_error(sprintf(__("Could not create image attachment from non-existent file: %s", "event_espresso"), $guid));
1501 1501
 				return 0;
1502 1502
 			}
1503
-			$contents= file_get_contents($guid);
1504
-			if($contents === FALSE){
1505
-				$migration_stage->add_error(sprintf(__("Could not read image at %s, and therefore couldnt create an attachment post for it.", "event_espresso"),$guid));
1503
+			$contents = file_get_contents($guid);
1504
+			if ($contents === FALSE) {
1505
+				$migration_stage->add_error(sprintf(__("Could not read image at %s, and therefore couldnt create an attachment post for it.", "event_espresso"), $guid));
1506 1506
 				return false;
1507 1507
 			}
1508
-			$local_filepath  = $wp_upload_dir['path'].DS.basename($guid);
1508
+			$local_filepath = $wp_upload_dir['path'].DS.basename($guid);
1509 1509
 			$savefile = fopen($local_filepath, 'w');
1510 1510
 			fwrite($savefile, $contents);
1511 1511
 			fclose($savefile);
1512
-			$guid = str_replace($wp_upload_dir['path'],$wp_upload_dir['url'],$local_filepath);
1513
-		}else{
1514
-			$local_filepath = str_replace($wp_upload_dir['url'],$wp_upload_dir['path'],$guid);
1512
+			$guid = str_replace($wp_upload_dir['path'], $wp_upload_dir['url'], $local_filepath);
1513
+		} else {
1514
+			$local_filepath = str_replace($wp_upload_dir['url'], $wp_upload_dir['path'], $guid);
1515 1515
 		}
1516 1516
 
1517 1517
 		$attachment = array(
@@ -1521,24 +1521,24 @@  discard block
 block discarded – undo
1521 1521
 		   'post_content' => '',
1522 1522
 		   'post_status' => 'inherit'
1523 1523
 		);
1524
-		$attach_id = wp_insert_attachment( $attachment, $guid );
1525
-		if( ! $attach_id ){
1526
-			$migration_stage->add_error(sprintf(__("Could not create image attachment post from image '%s'. Attachment data was %s.", "event_espresso"),$guid,$this->_json_encode($attachment)));
1524
+		$attach_id = wp_insert_attachment($attachment, $guid);
1525
+		if ( ! $attach_id) {
1526
+			$migration_stage->add_error(sprintf(__("Could not create image attachment post from image '%s'. Attachment data was %s.", "event_espresso"), $guid, $this->_json_encode($attachment)));
1527 1527
 			return $attach_id;
1528 1528
 		}
1529 1529
 
1530 1530
 		// you must first include the image.php file
1531 1531
 		// for the function wp_generate_attachment_metadata() to work
1532
-		require_once(ABSPATH . 'wp-admin/includes/image.php');
1532
+		require_once(ABSPATH.'wp-admin/includes/image.php');
1533 1533
 
1534
-		$attach_data = wp_generate_attachment_metadata( $attach_id, $local_filepath );
1535
-		if( ! $attach_data){
1536
-			$migration_stage->add_error(sprintf(__("Coudl not genereate attachment metadata for attachment post %d with filepath %s and GUID %s. Please check the file was downloaded properly.", "event_espresso"),$attach_id,$local_filepath,$guid));
1534
+		$attach_data = wp_generate_attachment_metadata($attach_id, $local_filepath);
1535
+		if ( ! $attach_data) {
1536
+			$migration_stage->add_error(sprintf(__("Coudl not genereate attachment metadata for attachment post %d with filepath %s and GUID %s. Please check the file was downloaded properly.", "event_espresso"), $attach_id, $local_filepath, $guid));
1537 1537
 			return $attach_id;
1538 1538
 		}
1539
-		$metadata_save_result = wp_update_attachment_metadata( $attach_id, $attach_data );
1540
-		if( ! $metadata_save_result ){
1541
-			$migration_stage->add_error(sprintf(__("Could not update attachment metadata for attachment %d with data %s", "event_espresso"),$attach_id,$this->_json_encode($attach_data)));
1539
+		$metadata_save_result = wp_update_attachment_metadata($attach_id, $attach_data);
1540
+		if ( ! $metadata_save_result) {
1541
+			$migration_stage->add_error(sprintf(__("Could not update attachment metadata for attachment %d with data %s", "event_espresso"), $attach_id, $this->_json_encode($attach_data)));
1542 1542
 		}
1543 1543
 		return $attach_id;
1544 1544
 	}
@@ -1550,9 +1550,9 @@  discard block
 block discarded – undo
1550 1550
 	 * @param string $guid
1551 1551
 	 * @return int
1552 1552
 	 */
1553
-	private function _get_image_attachment_id_by_GUID($guid){
1553
+	private function _get_image_attachment_id_by_GUID($guid) {
1554 1554
 		global $wpdb;
1555
-		$attachment_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE guid=%s LIMIT 1",$guid));
1555
+		$attachment_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE guid=%s LIMIT 1", $guid));
1556 1556
 		return $attachment_id;
1557 1557
 	}
1558 1558
 	/**
@@ -1564,20 +1564,20 @@  discard block
 block discarded – undo
1564 1564
 	 * @param string $timezone
1565 1565
 	 * @return string
1566 1566
 	 */
1567
-	public function convert_date_string_to_utc(EE_Data_Migration_Script_Stage $stage, $row_of_data, $DATETIME_string,$timezone = null){
1567
+	public function convert_date_string_to_utc(EE_Data_Migration_Script_Stage $stage, $row_of_data, $DATETIME_string, $timezone = null) {
1568 1568
 		$original_tz = $timezone;
1569
-		if( ! $timezone){
1569
+		if ( ! $timezone) {
1570 1570
 			$timezone = $this->_get_wp_timezone();
1571 1571
 		}
1572
-		if( ! $timezone){
1573
-			$stage->add_error(sprintf(__("Could not find timezone given %s for %s", "event_espresso"),$original_tz,$row_of_data));
1572
+		if ( ! $timezone) {
1573
+			$stage->add_error(sprintf(__("Could not find timezone given %s for %s", "event_espresso"), $original_tz, $row_of_data));
1574 1574
 			$timezone = 'UTC';
1575 1575
 		}
1576
-		try{
1577
-			$date_obj = new DateTime( $DATETIME_string, new DateTimeZone( $timezone ) );
1576
+		try {
1577
+			$date_obj = new DateTime($DATETIME_string, new DateTimeZone($timezone));
1578 1578
 			$date_obj->setTimezone(new DateTimeZone('UTC'));
1579
-		}catch(Exception $e){
1580
-			$stage->add_error(sprintf(__("Could not convert time string '%s' using timezone '%s' into a proper DATETIME. Using current time instead.", "event_espresso"),$DATETIME_string,$timezone));
1579
+		} catch (Exception $e) {
1580
+			$stage->add_error(sprintf(__("Could not convert time string '%s' using timezone '%s' into a proper DATETIME. Using current time instead.", "event_espresso"), $DATETIME_string, $timezone));
1581 1581
 			$date_obj = new DateTime();
1582 1582
 		}
1583 1583
 
@@ -1588,14 +1588,14 @@  discard block
 block discarded – undo
1588 1588
 	 * Gets the DEFAULT timezone string from wordpress (even if they set a gmt offset)
1589 1589
 	 * @return string
1590 1590
 	 */
1591
-	private function _get_wp_timezone(){
1592
-		$timezone = empty( $timezone ) ? get_option('timezone_string') : $timezone;
1591
+	private function _get_wp_timezone() {
1592
+		$timezone = empty($timezone) ? get_option('timezone_string') : $timezone;
1593 1593
 
1594 1594
 		//if timezone is STILL empty then let's get the GMT offset and then set the timezone_string using our converter
1595
-		if ( empty( $timezone ) ) {
1595
+		if (empty($timezone)) {
1596 1596
 			//let's get a the WordPress UTC offset
1597 1597
 			$offset = get_option('gmt_offset');
1598
-			$timezone = $this->timezone_convert_to_string_from_offset( $offset );
1598
+			$timezone = $this->timezone_convert_to_string_from_offset($offset);
1599 1599
 		}
1600 1600
 		return $timezone;
1601 1601
 	}
@@ -1604,11 +1604,11 @@  discard block
 block discarded – undo
1604 1604
 	 * @param int $offset
1605 1605
 	 * @return boolean
1606 1606
 	 */
1607
-	private function timezone_convert_to_string_from_offset($offset){
1607
+	private function timezone_convert_to_string_from_offset($offset) {
1608 1608
 		//shamelessly taken from bottom comment at http://ca1.php.net/manual/en/function.timezone-name-from-abbr.php because timezone_name_from_abbr() did NOT work as expected - its not reliable
1609 1609
 		$offset *= 3600; // convert hour offset to seconds
1610 1610
         $abbrarray = timezone_abbreviations_list();
1611
-        foreach ($abbrarray as $abbr){
1611
+        foreach ($abbrarray as $abbr) {
1612 1612
                 foreach ($abbr as $city)
1613 1613
                 {
1614 1614
                         if ($city['offset'] == $offset)
@@ -1622,32 +1622,32 @@  discard block
 block discarded – undo
1622 1622
         return FALSE;
1623 1623
 	}
1624 1624
 
1625
-	public function migration_page_hooks(){
1626
-		add_filter('FHEE__ee_migration_page__header',array($this,'_migrate_page_hook_simplify_version_strings'),10,3);
1627
-		add_filter('FHEE__ee_migration_page__p_after_header',array($this,'_migration_page_hook_simplify_next_db_state'),10,2);
1628
-		add_filter('FHEE__ee_migration_page__option_1_main',array($this,'_migrate_page_hook_simplify_version_strings'),10,3);
1629
-		add_filter('FHEE__ee_migration_page__option_1_button_text',array($this,'_migrate_page_hook_simplify_version_strings'),10,3);
1630
-		add_action('AHEE__ee_migration_page__option_1_extra_details',array($this,'_migration_page_hook_option_1_extra_details'),10,3);
1631
-		add_filter('FHEE__ee_migration_page__option_2_main',array($this,'_migrate_page_hook_simplify_version_strings'),10,4);
1632
-		add_filter('FHEE__ee_migration_page__option_2_button_text',array($this,'_migration_page_hook_simplify_next_db_state'),10,2);
1633
-		add_filter('FHEE__ee_migration_page__option_2_details',array($this,'_migration_page_hook_simplify_next_db_state'),10,2);
1634
-		add_action('AHEE__ee_migration_page__after_migration_options_table',array($this,'_migration_page_hook_after_migration_options_table'));
1635
-		add_filter('FHEE__ee_migration_page__done_migration_header',array($this,'_migration_page_hook_simplify_next_db_state'),10,2);
1636
-		add_filter('FHEE__ee_migration_page__p_after_done_migration_header',array($this,'_migration_page_hook_simplify_next_db_state'),10,2);
1625
+	public function migration_page_hooks() {
1626
+		add_filter('FHEE__ee_migration_page__header', array($this, '_migrate_page_hook_simplify_version_strings'), 10, 3);
1627
+		add_filter('FHEE__ee_migration_page__p_after_header', array($this, '_migration_page_hook_simplify_next_db_state'), 10, 2);
1628
+		add_filter('FHEE__ee_migration_page__option_1_main', array($this, '_migrate_page_hook_simplify_version_strings'), 10, 3);
1629
+		add_filter('FHEE__ee_migration_page__option_1_button_text', array($this, '_migrate_page_hook_simplify_version_strings'), 10, 3);
1630
+		add_action('AHEE__ee_migration_page__option_1_extra_details', array($this, '_migration_page_hook_option_1_extra_details'), 10, 3);
1631
+		add_filter('FHEE__ee_migration_page__option_2_main', array($this, '_migrate_page_hook_simplify_version_strings'), 10, 4);
1632
+		add_filter('FHEE__ee_migration_page__option_2_button_text', array($this, '_migration_page_hook_simplify_next_db_state'), 10, 2);
1633
+		add_filter('FHEE__ee_migration_page__option_2_details', array($this, '_migration_page_hook_simplify_next_db_state'), 10, 2);
1634
+		add_action('AHEE__ee_migration_page__after_migration_options_table', array($this, '_migration_page_hook_after_migration_options_table'));
1635
+		add_filter('FHEE__ee_migration_page__done_migration_header', array($this, '_migration_page_hook_simplify_next_db_state'), 10, 2);
1636
+		add_filter('FHEE__ee_migration_page__p_after_done_migration_header', array($this, '_migration_page_hook_simplify_next_db_state'), 10, 2);
1637 1637
 	}
1638 1638
 
1639
-	public function _migrate_page_hook_simplify_version_strings($old_content,$current_db_state,$next_db_state,$ultimate_db_state = NULL){
1640
-		return str_replace(array($current_db_state,$next_db_state,$ultimate_db_state),array(__('EE3','event_espresso'),__('EE4','event_espresso'),  __("EE4", 'event_espresso')),$old_content);
1639
+	public function _migrate_page_hook_simplify_version_strings($old_content, $current_db_state, $next_db_state, $ultimate_db_state = NULL) {
1640
+		return str_replace(array($current_db_state, $next_db_state, $ultimate_db_state), array(__('EE3', 'event_espresso'), __('EE4', 'event_espresso'), __("EE4", 'event_espresso')), $old_content);
1641 1641
 	}
1642
-	public function _migration_page_hook_simplify_next_db_state($old_content,$next_db_state){
1643
-		return str_replace($next_db_state,  __("EE4", 'event_espresso'),$old_content);
1642
+	public function _migration_page_hook_simplify_next_db_state($old_content, $next_db_state) {
1643
+		return str_replace($next_db_state, __("EE4", 'event_espresso'), $old_content);
1644 1644
 	}
1645
-	public function _migration_page_hook_option_1_extra_details(){
1646
-		?><p><?php	printf(__("Note: many of your EE3 shortcodes will be changed to EE4 shortcodes during this migration (among many other things). Should you revert to EE3, then you should restore to your backup or manually change the EE4 shortcodes back to their EE3 equivalents", "event_espresso"));?></p><?php
1645
+	public function _migration_page_hook_option_1_extra_details() {
1646
+		?><p><?php	printf(__("Note: many of your EE3 shortcodes will be changed to EE4 shortcodes during this migration (among many other things). Should you revert to EE3, then you should restore to your backup or manually change the EE4 shortcodes back to their EE3 equivalents", "event_espresso")); ?></p><?php
1647 1647
 	}
1648
-	public function _migration_page_hook_after_migration_options_table(){
1648
+	public function _migration_page_hook_after_migration_options_table() {
1649 1649
 		?><p class="ee-attention">
1650
-				<strong><span class="reminder-spn"><?php _e("Important note to those using Event Espresso 3 addons: ", "event_espresso");?></span></strong><br/><?php _e("Unless an addon's description on our website explicitly states that it is compatible with EE4, you should consider it incompatible and know that it WILL NOT WORK correctly with this new version of Event Espresso 4 (EE4). As well, any data for incompatible addons will NOT BE MIGRATED until an updated EE4 compatible version of the addon is available. If you want, or need to keep using your EE3 addons, you should simply continue using EE3 until EE4 compatible versions of your addons become available. To continue using EE3 for now, just deactivate EE4 and reactivate EE3.", "event_espresso");	?>
1650
+				<strong><span class="reminder-spn"><?php _e("Important note to those using Event Espresso 3 addons: ", "event_espresso"); ?></span></strong><br/><?php _e("Unless an addon's description on our website explicitly states that it is compatible with EE4, you should consider it incompatible and know that it WILL NOT WORK correctly with this new version of Event Espresso 4 (EE4). As well, any data for incompatible addons will NOT BE MIGRATED until an updated EE4 compatible version of the addon is available. If you want, or need to keep using your EE3 addons, you should simply continue using EE3 until EE4 compatible versions of your addons become available. To continue using EE3 for now, just deactivate EE4 and reactivate EE3.", "event_espresso"); ?>
1651 1651
 			</p><?php
1652 1652
 	}
1653 1653
 }
Please login to merge, or discard this patch.
Braces   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 		$results = $wpdb->get_results("SHOW TABLES LIKE '".$wpdb->prefix."events_attendee_checkin"."'");
73 73
 		if($results){
74 74
 			return true;
75
-		}else{
75
+		} else{
76 76
 			return false;
77 77
 		}
78 78
 	}
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
 		if($version_string < '4.0.0' && $version_string > '3.1.26' ){
82 82
 //			echo "$version_string can be migrated fro";
83 83
 			return true;
84
-		}elseif( ! $version_string ){
84
+		} elseif( ! $version_string ){
85 85
 //			echo "no version string provided: $version_string";
86 86
 			//no version string provided... this must be pre 4.1
87 87
 			//because since 4.1 we're
88 88
 			return false;//changed mind. dont want people thinking they should migrate yet because they cant
89
-		}else{
89
+		} else{
90 90
 //			echo "$version_string doesnt apply";
91 91
 			return false;
92 92
 		}
@@ -1088,7 +1088,7 @@  discard block
 block discarded – undo
1088 1088
 		try{
1089 1089
 			$country = $this->get_or_create_country($country_name);
1090 1090
 			$country_iso = $country['CNT_ISO'];
1091
-		}catch(EE_Error $e){
1091
+		} catch(EE_Error $e){
1092 1092
 			$country_iso = $this->get_default_country_iso();
1093 1093
 		}
1094 1094
 		global $wpdb;
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
 		if( ! $matches || count($matches)<3){
1133 1133
 			$hour = '00';
1134 1134
 			$minutes = '00';
1135
-		}else{
1135
+		} else{
1136 1136
 			$hour = intval($matches[1]);
1137 1137
 			$minutes = $matches[2];
1138 1138
 		}
@@ -1408,7 +1408,7 @@  discard block
 block discarded – undo
1408 1408
 		//EE team can read the related discussion: https://app.asana.com/0/2400967562914/9418495544455
1409 1409
 		if($this_thing_required_pre_approval){
1410 1410
 				return 'RNA';
1411
-		}else{
1411
+		} else{
1412 1412
 				$mapping = $default_reg_stati_conversions=array(
1413 1413
 			'Completed'=>'RAP',
1414 1414
 			''=>'RPP',
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
 			//double-check we actually have an attachment post
1454 1454
 			if( $attachment_post_id){
1455 1455
 				update_post_meta($new_cpt_id,'_thumbnail_id',$attachment_post_id);
1456
-			}else{
1456
+			} else{
1457 1457
 				$migration_stage->add_error(sprintf(__("Could not update event image %s for CPT with ID %d, but attachments post ID is %d", "event_espresso"),$guid,$new_cpt_id,$attachment_post_id));
1458 1458
 			}
1459 1459
 		}
@@ -1474,7 +1474,7 @@  discard block
 block discarded – undo
1474 1474
 		$head_response = wp_remote_head($original_guid);
1475 1475
 		if( ! $head_response instanceof WP_Error && $head_response['response']['message'] == 'OK'){
1476 1476
 			return $original_guid;
1477
-		}else{
1477
+		} else{
1478 1478
 			return $guid_in_old_event;
1479 1479
 		}
1480 1480
 	}
@@ -1510,7 +1510,7 @@  discard block
 block discarded – undo
1510 1510
 			fwrite($savefile, $contents);
1511 1511
 			fclose($savefile);
1512 1512
 			$guid = str_replace($wp_upload_dir['path'],$wp_upload_dir['url'],$local_filepath);
1513
-		}else{
1513
+		} else{
1514 1514
 			$local_filepath = str_replace($wp_upload_dir['url'],$wp_upload_dir['path'],$guid);
1515 1515
 		}
1516 1516
 
@@ -1576,7 +1576,7 @@  discard block
 block discarded – undo
1576 1576
 		try{
1577 1577
 			$date_obj = new DateTime( $DATETIME_string, new DateTimeZone( $timezone ) );
1578 1578
 			$date_obj->setTimezone(new DateTimeZone('UTC'));
1579
-		}catch(Exception $e){
1579
+		} catch(Exception $e){
1580 1580
 			$stage->add_error(sprintf(__("Could not convert time string '%s' using timezone '%s' into a proper DATETIME. Using current time instead.", "event_espresso"),$DATETIME_string,$timezone));
1581 1581
 			$date_obj = new DateTime();
1582 1582
 		}
Please login to merge, or discard this patch.
core/db_classes/EE_Answer.class.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	 *    Set Answer value
78 78
 	 *
79 79
 	 * @access        public
80
-	 * @param mixed $ANS_value
80
+	 * @param string $ANS_value
81 81
 	 */
82 82
 	public function set_value( $ANS_value = '' ) {
83 83
 		$this->set( 'ANS_value', $ANS_value );
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *    get Attendee First Name
90 90
 	 *
91 91
 	 * @access        public
92
-	 * @return        int
92
+	 * @return        boolean
93 93
 	 */
94 94
 	public function registration_ID() {
95 95
 		return $this->get( 'REG_ID' );
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 *    get Attendee Last Name
102 102
 	 *
103 103
 	 * @access        public
104
-	 * @return        int
104
+	 * @return        boolean
105 105
 	 */
106 106
 	public function question_ID() {
107 107
 		return $this->get( 'QST_ID' );
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 	 *    get Attendee Address
114 114
 	 *
115 115
 	 * @access        public
116
-	 * @return        string
116
+	 * @return        boolean
117 117
 	 */
118 118
 	public function value() {
119 119
 		return $this->get( 'ANS_value' );
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
 	 * @param array $props_n_values
32 32
 	 * @return EE_Answer
33 33
 	 */
34
-	public static function new_instance( $props_n_values = array() ) {
35
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
36
-		return $has_object ? $has_object : new self( $props_n_values );
34
+	public static function new_instance($props_n_values = array()) {
35
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
36
+		return $has_object ? $has_object : new self($props_n_values);
37 37
 	}
38 38
 
39 39
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @param array $props_n_values
44 44
 	 * @return EE_Answer
45 45
 	 */
46
-	public static function new_instance_from_db( $props_n_values = array() ) {
47
-		return new self( $props_n_values, TRUE );
46
+	public static function new_instance_from_db($props_n_values = array()) {
47
+		return new self($props_n_values, TRUE);
48 48
 	}
49 49
 
50 50
 
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
 	 * @access        public
56 56
 	 * @param int $QST_ID
57 57
 	 */
58
-	public function set_question( $QST_ID = 0 ) {
59
-		$this->set( 'QST_ID', $QST_ID );
58
+	public function set_question($QST_ID = 0) {
59
+		$this->set('QST_ID', $QST_ID);
60 60
 	}
61 61
 
62 62
 
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 	 * @access        public
68 68
 	 * @param int $REG_ID
69 69
 	 */
70
-	public function set_registration( $REG_ID = 0 ) {
71
-		$this->set( 'REG_ID', $REG_ID );
70
+	public function set_registration($REG_ID = 0) {
71
+		$this->set('REG_ID', $REG_ID);
72 72
 	}
73 73
 
74 74
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @access        public
80 80
 	 * @param mixed $ANS_value
81 81
 	 */
82
-	public function set_value( $ANS_value = '' ) {
83
-		$this->set( 'ANS_value', $ANS_value );
82
+	public function set_value($ANS_value = '') {
83
+		$this->set('ANS_value', $ANS_value);
84 84
 	}
85 85
 
86 86
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	 * @return        int
93 93
 	 */
94 94
 	public function registration_ID() {
95
-		return $this->get( 'REG_ID' );
95
+		return $this->get('REG_ID');
96 96
 	}
97 97
 
98 98
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 	 * @return        int
105 105
 	 */
106 106
 	public function question_ID() {
107
-		return $this->get( 'QST_ID' );
107
+		return $this->get('QST_ID');
108 108
 	}
109 109
 
110 110
 
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	 * @return        string
117 117
 	 */
118 118
 	public function value() {
119
-		return $this->get( 'ANS_value' );
119
+		return $this->get('ANS_value');
120 120
 	}
121 121
 
122 122
 
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
 	 * @param null $schema
127 127
 	 * @return string
128 128
 	 */
129
-	public function pretty_value( $schema = NULL ) {
130
-		return $this->get_pretty( 'ANS_value', $schema );
129
+	public function pretty_value($schema = NULL) {
130
+		return $this->get_pretty('ANS_value', $schema);
131 131
 	}
132 132
 
133 133
 
@@ -136,8 +136,8 @@  discard block
 block discarded – undo
136 136
 	 * Echoes out a pretty value (even for multi-choice options)
137 137
 	 * @param string $schema
138 138
 	 */
139
-	public function e_value( $schema = NULL ) {
140
-		$this->e( 'ANS_value', $schema );
139
+	public function e_value($schema = NULL) {
140
+		$this->e('ANS_value', $schema);
141 141
 	}
142 142
 
143 143
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * @return EE_Question
148 148
 	 */
149 149
 	public function question() {
150
-		return $this->get_first_related( 'Question' );
150
+		return $this->get_first_related('Question');
151 151
 	}
152 152
 
153 153
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 * @return EE_Registration
158 158
 	 */
159 159
 	public function registration() {
160
-		return $this->get_first_related( 'Registration' );
160
+		return $this->get_first_related('Registration');
161 161
 	}
162 162
 }
163 163
 
Please login to merge, or discard this patch.
core/db_classes/EE_Attendee.class.php 3 patches
Doc Comments   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 	 *
217 217
 	 * @since 4.5.0
218 218
 	 *
219
-	 * @return int
219
+	 * @return boolean
220 220
 	 */
221 221
 	public function wp_user() {
222 222
 		return $this->get( 'ATT_author' );
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 	/**
228 228
 	 *        get Attendee First Name
229 229
 	 * @access        public
230
-	 * @return string
230
+	 * @return boolean
231 231
 	 */
232 232
 	public function fname() {
233 233
 		return $this->get( 'ATT_fname' );
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	/**
261 261
 	 *        get Attendee Last Name
262 262
 	 * @access        public
263
-	 * @return string
263
+	 * @return boolean
264 264
 	 */
265 265
 	public function lname() {
266 266
 		return $this->get( 'ATT_lname' );
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 
306 306
 	/**
307 307
 	 *        get Attendee Address
308
-	 * @return string
308
+	 * @return boolean
309 309
 	 */
310 310
 	public function address() {
311 311
 		return $this->get( 'ATT_address' );
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 
316 316
 	/**
317 317
 	 *        get Attendee Address2
318
-	 * @return string
318
+	 * @return boolean
319 319
 	 */
320 320
 	public function address2() {
321 321
 		return $this->get( 'ATT_address2' );
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 
326 326
 	/**
327 327
 	 *        get Attendee City
328
-	 * @return string
328
+	 * @return boolean
329 329
 	 */
330 330
 	public function city() {
331 331
 		return $this->get( 'ATT_city' );
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
 	/**
337 337
 	 *        get Attendee State ID
338
-	 * @return string
338
+	 * @return boolean
339 339
 	 */
340 340
 	public function state_ID() {
341 341
 		return $this->get( 'STA_ID' );
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 
393 393
 	/**
394 394
 	 *    get Attendee Country ISO Code
395
-	 * @return string
395
+	 * @return boolean
396 396
 	 */
397 397
 	public function country_ID() {
398 398
 		return $this->get( 'CNT_ISO' );
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 
441 441
 	/**
442 442
 	 *        get Attendee Zip/Postal Code
443
-	 * @return string
443
+	 * @return boolean
444 444
 	 */
445 445
 	public function zip() {
446 446
 		return $this->get( 'ATT_zip' );
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
 
451 451
 	/**
452 452
 	 *        get Attendee Email Address
453
-	 * @return string
453
+	 * @return boolean
454 454
 	 */
455 455
 	public function email() {
456 456
 		return $this->get( 'ATT_email' );
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
 
461 461
 	/**
462 462
 	 *        get Attendee Phone #
463
-	 * @return string
463
+	 * @return boolean
464 464
 	 */
465 465
 	public function phone() {
466 466
 		return $this->get( 'ATT_phone' );
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
 	/**
514 514
 	 * returns any events attached to this attendee ($_Event property);
515
-	 * @return array
515
+	 * @return EE_Base_Class[]
516 516
 	 */
517 517
 	public function events() {
518 518
 		return $this->get_many_related( 'Event' );
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
 	 * Gets the billing info array where keys match espresso_reg_page_billing_inputs(),
523 523
 	 * and keys are their cleaned values. @see EE_Attendee::save_and_clean_billing_info_for_payment_method() which was used to save the billing info
524 524
 	 * @param EE_Payment_Method $payment_method the _gateway_name property on the gateway class
525
-	 * @return EE_Form_Section_Proper
525
+	 * @return null|EE_Billing_Info_Form
526 526
 	 */
527 527
 	public function billing_info_for_payment_method($payment_method){
528 528
 		$pm_type = $payment_method->type_obj();
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
 	public function state_name(){
368 368
 		if( $this->state_obj() ){
369 369
 			return $this->state_obj()->name();
370
-		}else{
370
+		} else{
371 371
 			return __( 'Unknown', 'event_espresso' );
372 372
 		}
373 373
 	}
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
 	public function country_name(){
416 416
 		if( $this->country_obj() ){
417 417
 			return $this->country_obj()->name();
418
-		}else{
418
+		} else{
419 419
 			return __( 'Unknown', 'event_espresso' );
420 420
 		}
421 421
 	}
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
 	public function get_billing_info_postmeta_name($payment_method){
548 548
 		if( $payment_method->type_obj() instanceof EE_PMT_Base ){
549 549
 			return 'billing_info_' . $payment_method->type_obj()->system_name();
550
-		}else{
550
+		} else{
551 551
 			return NULL;
552 552
 		}
553 553
 	}
Please login to merge, or discard this patch.
Spacing   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -33,20 +33,20 @@  discard block
 block discarded – undo
33 33
 	 * @param string $timezone
34 34
 	 * @param array $date_formats
35 35
 	 */
36
-	protected function __construct( $fieldValues = NULL, $bydb = FALSE, $timezone = NULL, $date_formats = array() ) {
37
-		if ( !isset( $fieldValues[ 'ATT_full_name' ] ) ) {
38
-			$fname = isset( $fieldValues[ 'ATT_fname' ] ) ? $fieldValues[ 'ATT_fname' ] . ' ' : '';
39
-			$lname = isset( $fieldValues[ 'ATT_lname' ] ) ? $fieldValues[ 'ATT_lname' ] : '';
40
-			$fieldValues[ 'ATT_full_name' ] = $fname . $lname;
36
+	protected function __construct($fieldValues = NULL, $bydb = FALSE, $timezone = NULL, $date_formats = array()) {
37
+		if ( ! isset($fieldValues['ATT_full_name'])) {
38
+			$fname = isset($fieldValues['ATT_fname']) ? $fieldValues['ATT_fname'].' ' : '';
39
+			$lname = isset($fieldValues['ATT_lname']) ? $fieldValues['ATT_lname'] : '';
40
+			$fieldValues['ATT_full_name'] = $fname.$lname;
41 41
 		}
42
-		if ( !isset( $fieldValues[ 'ATT_slug' ] ) ) {
42
+		if ( ! isset($fieldValues['ATT_slug'])) {
43 43
 			//			$fieldValues['ATT_slug'] = sanitize_key(wp_generate_password(20));
44
-			$fieldValues[ 'ATT_slug' ] = sanitize_title( $fieldValues[ 'ATT_full_name' ] );
44
+			$fieldValues['ATT_slug'] = sanitize_title($fieldValues['ATT_full_name']);
45 45
 		}
46
-		if ( !isset( $fieldValues[ 'ATT_short_bio' ] ) && isset( $fieldValues[ 'ATT_bio' ] ) ) {
47
-			$fieldValues[ 'ATT_short_bio' ] = substr( $fieldValues[ 'ATT_bio' ], 0, 50 );
46
+		if ( ! isset($fieldValues['ATT_short_bio']) && isset($fieldValues['ATT_bio'])) {
47
+			$fieldValues['ATT_short_bio'] = substr($fieldValues['ATT_bio'], 0, 50);
48 48
 		}
49
-		parent::__construct( $fieldValues, $bydb, $timezone, $date_formats );
49
+		parent::__construct($fieldValues, $bydb, $timezone, $date_formats);
50 50
 	}
51 51
 
52 52
 
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 	 *                             		    date_format and the second value is the time format
61 61
 	 * @return EE_Attendee
62 62
 	 */
63
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
64
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
65
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
63
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
64
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
65
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
66 66
 	}
67 67
 
68 68
 
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
 	 *                          		the website will be used.
74 74
 	 * @return EE_Attendee
75 75
 	 */
76
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
77
-		return new self( $props_n_values, TRUE, $timezone );
76
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
77
+		return new self($props_n_values, TRUE, $timezone);
78 78
 	}
79 79
 
80 80
 
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 	 * @access        public
86 86
 	 * @param string $fname
87 87
 	 */
88
-	public function set_fname( $fname = '' ) {
89
-		$this->set( 'ATT_fname', $fname );
88
+	public function set_fname($fname = '') {
89
+		$this->set('ATT_fname', $fname);
90 90
 	}
91 91
 
92 92
 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 	 * @access        public
98 98
 	 * @param string $lname
99 99
 	 */
100
-	public function set_lname( $lname = '' ) {
101
-		$this->set( 'ATT_lname', $lname );
100
+	public function set_lname($lname = '') {
101
+		$this->set('ATT_lname', $lname);
102 102
 	}
103 103
 
104 104
 
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
 	 * @access        public
110 110
 	 * @param string $address
111 111
 	 */
112
-	public function set_address( $address = '' ) {
113
-		$this->set( 'ATT_address', $address );
112
+	public function set_address($address = '') {
113
+		$this->set('ATT_address', $address);
114 114
 	}
115 115
 
116 116
 
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
 	 * @access        public
122 122
 	 * @param        string $address2
123 123
 	 */
124
-	public function set_address2( $address2 = '' ) {
125
-		$this->set( 'ATT_address2', $address2 );
124
+	public function set_address2($address2 = '') {
125
+		$this->set('ATT_address2', $address2);
126 126
 	}
127 127
 
128 128
 
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 	 * @access        public
134 134
 	 * @param        string $city
135 135
 	 */
136
-	public function set_city( $city = '' ) {
137
-		$this->set( 'ATT_city', $city );
136
+	public function set_city($city = '') {
137
+		$this->set('ATT_city', $city);
138 138
 	}
139 139
 
140 140
 
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
 	 * @access        public
146 146
 	 * @param        int $STA_ID
147 147
 	 */
148
-	public function set_state( $STA_ID = 0 ) {
149
-		$this->set( 'STA_ID', $STA_ID );
148
+	public function set_state($STA_ID = 0) {
149
+		$this->set('STA_ID', $STA_ID);
150 150
 	}
151 151
 
152 152
 
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	 * @access        public
158 158
 	 * @param        string $CNT_ISO
159 159
 	 */
160
-	public function set_country( $CNT_ISO = '' ) {
161
-		$this->set( 'CNT_ISO', $CNT_ISO );
160
+	public function set_country($CNT_ISO = '') {
161
+		$this->set('CNT_ISO', $CNT_ISO);
162 162
 	}
163 163
 
164 164
 
@@ -169,8 +169,8 @@  discard block
 block discarded – undo
169 169
 	 * @access        public
170 170
 	 * @param        string $zip
171 171
 	 */
172
-	public function set_zip( $zip = '' ) {
173
-		$this->set( 'ATT_zip', $zip );
172
+	public function set_zip($zip = '') {
173
+		$this->set('ATT_zip', $zip);
174 174
 	}
175 175
 
176 176
 
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
 	 * @access        public
182 182
 	 * @param        string $email
183 183
 	 */
184
-	public function set_email( $email = '' ) {
185
-		$this->set( 'ATT_email', $email );
184
+	public function set_email($email = '') {
185
+		$this->set('ATT_email', $email);
186 186
 	}
187 187
 
188 188
 
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
 	 * @access        public
194 194
 	 * @param        string $phone
195 195
 	 */
196
-	public function set_phone( $phone = '' ) {
197
-		$this->set( 'ATT_phone', $phone );
196
+	public function set_phone($phone = '') {
197
+		$this->set('ATT_phone', $phone);
198 198
 	}
199 199
 
200 200
 
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
 	 * @access        public
206 206
 	 * @param        bool $ATT_deleted
207 207
 	 */
208
-	public function set_deleted( $ATT_deleted = FALSE ) {
209
-		$this->set( 'ATT_deleted', $ATT_deleted );
208
+	public function set_deleted($ATT_deleted = FALSE) {
209
+		$this->set('ATT_deleted', $ATT_deleted);
210 210
 	}
211 211
 
212 212
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 	 * @return int
220 220
 	 */
221 221
 	public function wp_user() {
222
-		return $this->get( 'ATT_author' );
222
+		return $this->get('ATT_author');
223 223
 	}
224 224
 
225 225
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 	 * @return string
231 231
 	 */
232 232
 	public function fname() {
233
-		return $this->get( 'ATT_fname' );
233
+		return $this->get('ATT_fname');
234 234
 	}
235 235
 
236 236
 
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
 	 * @param bool $apply_html_entities
251 251
 	 * @return string
252 252
 	 */
253
-	public function full_name( $apply_html_entities = FALSE ) {
254
-		$full_name = $this->fname() . ' ' . $this->lname();
255
-		return $apply_html_entities ? htmlentities( $full_name, ENT_QUOTES, 'UTF-8' ) : $full_name;
253
+	public function full_name($apply_html_entities = FALSE) {
254
+		$full_name = $this->fname().' '.$this->lname();
255
+		return $apply_html_entities ? htmlentities($full_name, ENT_QUOTES, 'UTF-8') : $full_name;
256 256
 	}
257 257
 
258 258
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 	 * @return string
264 264
 	 */
265 265
 	public function lname() {
266
-		return $this->get( 'ATT_lname' );
266
+		return $this->get('ATT_lname');
267 267
 	}
268 268
 
269 269
 
@@ -277,26 +277,26 @@  discard block
 block discarded – undo
277 277
 	 */
278 278
 	public function full_address_as_array() {
279 279
 		$full_address_array = array();
280
-		$initial_address_fields = array( 'ATT_address', 'ATT_address2', 'ATT_city', );
281
-		foreach ( $initial_address_fields as $address_field_name ) {
282
-			$address_fields_value = $this->get( $address_field_name );
283
-			if ( !empty( $address_fields_value ) ) {
284
-				$full_address_array[ ] = $address_fields_value;
280
+		$initial_address_fields = array('ATT_address', 'ATT_address2', 'ATT_city',);
281
+		foreach ($initial_address_fields as $address_field_name) {
282
+			$address_fields_value = $this->get($address_field_name);
283
+			if ( ! empty($address_fields_value)) {
284
+				$full_address_array[] = $address_fields_value;
285 285
 			}
286 286
 		}
287 287
 		//now handle state and country
288 288
 		$state_obj = $this->state_obj();
289
-		if ( !empty( $state_obj ) ) {
290
-			$full_address_array[ ] = $state_obj->name();
289
+		if ( ! empty($state_obj)) {
290
+			$full_address_array[] = $state_obj->name();
291 291
 		}
292 292
 		$country_obj = $this->country_obj();
293
-		if ( !empty( $country_obj ) ) {
294
-			$full_address_array[ ] = $country_obj->name();
293
+		if ( ! empty($country_obj)) {
294
+			$full_address_array[] = $country_obj->name();
295 295
 		}
296 296
 		//lastly get the xip
297 297
 		$zip_value = $this->zip();
298
-		if ( !empty( $zip_value ) ) {
299
-			$full_address_array[ ] = $zip_value;
298
+		if ( ! empty($zip_value)) {
299
+			$full_address_array[] = $zip_value;
300 300
 		}
301 301
 		return $full_address_array;
302 302
 	}
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
 	 * @return string
309 309
 	 */
310 310
 	public function address() {
311
-		return $this->get( 'ATT_address' );
311
+		return $this->get('ATT_address');
312 312
 	}
313 313
 
314 314
 
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 	 * @return string
319 319
 	 */
320 320
 	public function address2() {
321
-		return $this->get( 'ATT_address2' );
321
+		return $this->get('ATT_address2');
322 322
 	}
323 323
 
324 324
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 	 * @return string
329 329
 	 */
330 330
 	public function city() {
331
-		return $this->get( 'ATT_city' );
331
+		return $this->get('ATT_city');
332 332
 	}
333 333
 
334 334
 
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 	 * @return string
339 339
 	 */
340 340
 	public function state_ID() {
341
-		return $this->get( 'STA_ID' );
341
+		return $this->get('STA_ID');
342 342
 	}
343 343
 
344 344
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 	 * @return string
348 348
 	 */
349 349
 	public function state_abbrev() {
350
-		return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __( 'Unknown', 'event_espresso' );
350
+		return $this->state_obj() instanceof EE_State ? $this->state_obj()->abbrev() : __('Unknown', 'event_espresso');
351 351
 	}
352 352
 
353 353
 
@@ -357,18 +357,18 @@  discard block
 block discarded – undo
357 357
 	 * @return EE_State
358 358
 	 */
359 359
 	public function state_obj() {
360
-		return $this->get_first_related( 'State' );
360
+		return $this->get_first_related('State');
361 361
 	}
362 362
 
363 363
 	/**
364 364
 	 * Returns the state's name, otherwise 'Unknown'
365 365
 	 * @return string
366 366
 	 */
367
-	public function state_name(){
368
-		if( $this->state_obj() ){
367
+	public function state_name() {
368
+		if ($this->state_obj()) {
369 369
 			return $this->state_obj()->name();
370
-		}else{
371
-			return __( 'Unknown', 'event_espresso' );
370
+		} else {
371
+			return __('Unknown', 'event_espresso');
372 372
 		}
373 373
 	}
374 374
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 	 * @return string
382 382
 	 */
383 383
 	public function state() {
384
-		if ( apply_filters( 'FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj() ) ) {
384
+		if (apply_filters('FHEE__EEI_Address__state__use_abbreviation', true, $this->state_obj())) {
385 385
 			return $this->state_abbrev();
386 386
 		} else {
387 387
 			return $this->state_name();
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	 * @return string
396 396
 	 */
397 397
 	public function country_ID() {
398
-		return $this->get( 'CNT_ISO' );
398
+		return $this->get('CNT_ISO');
399 399
 	}
400 400
 
401 401
 
@@ -405,18 +405,18 @@  discard block
 block discarded – undo
405 405
 	 * @return EE_Country
406 406
 	 */
407 407
 	public function country_obj() {
408
-		return $this->get_first_related( 'Country' );
408
+		return $this->get_first_related('Country');
409 409
 	}
410 410
 
411 411
 	/**
412 412
 	 * Returns the country's name if known, otherwise 'Unknown'
413 413
 	 * @return string
414 414
 	 */
415
-	public function country_name(){
416
-		if( $this->country_obj() ){
415
+	public function country_name() {
416
+		if ($this->country_obj()) {
417 417
 			return $this->country_obj()->name();
418
-		}else{
419
-			return __( 'Unknown', 'event_espresso' );
418
+		} else {
419
+			return __('Unknown', 'event_espresso');
420 420
 		}
421 421
 	}
422 422
 
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 	 * @return string
430 430
 	 */
431 431
 	public function country() {
432
-		if ( apply_filters( 'FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj() ) ) {
432
+		if (apply_filters('FHEE__EEI_Address__country__use_abbreviation', true, $this->country_obj())) {
433 433
 			return $this->country_ID();
434 434
 		} else {
435 435
 			return $this->country_name();
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 	 * @return string
444 444
 	 */
445 445
 	public function zip() {
446
-		return $this->get( 'ATT_zip' );
446
+		return $this->get('ATT_zip');
447 447
 	}
448 448
 
449 449
 
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
 	 * @return string
454 454
 	 */
455 455
 	public function email() {
456
-		return $this->get( 'ATT_email' );
456
+		return $this->get('ATT_email');
457 457
 	}
458 458
 
459 459
 
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	 * @return string
464 464
 	 */
465 465
 	public function phone() {
466
-		return $this->get( 'ATT_phone' );
466
+		return $this->get('ATT_phone');
467 467
 	}
468 468
 
469 469
 
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 	 * @return        bool
474 474
 	 */
475 475
 	public function deleted() {
476
-		return $this->get( 'ATT_deleted' );
476
+		return $this->get('ATT_deleted');
477 477
 	}
478 478
 
479 479
 
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
 	 * @param array $query_params
484 484
 	 * @return EE_Registration[]
485 485
 	 */
486
-	public function get_registrations( $query_params = array() ) {
487
-		return $this->get_many_related( 'Registration', $query_params );
486
+	public function get_registrations($query_params = array()) {
487
+		return $this->get_many_related('Registration', $query_params);
488 488
 	}
489 489
 
490 490
 
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	 * @return EE_Registration
495 495
 	 */
496 496
 	public function get_most_recent_registration() {
497
-		return $this->get_first_related( 'Registration', array( 'order_by' => array( 'REG_date' => 'DESC' ) ) ); //null, 'REG_date', 'DESC', '=', 'OBJECT_K');
497
+		return $this->get_first_related('Registration', array('order_by' => array('REG_date' => 'DESC'))); //null, 'REG_date', 'DESC', '=', 'OBJECT_K');
498 498
 	}
499 499
 
500 500
 
@@ -504,8 +504,8 @@  discard block
 block discarded – undo
504 504
 	 * @param int $event_id
505 505
 	 * @return EE_Registration
506 506
 	 */
507
-	public function get_most_recent_registration_for_event( $event_id ) {
508
-		return $this->get_first_related( 'Registration', array(array( 'EVT_ID' => $event_id ), 'order_by' => array('REG_date' => 'DESC')));//, '=', 'OBJECT_K' );
507
+	public function get_most_recent_registration_for_event($event_id) {
508
+		return $this->get_first_related('Registration', array(array('EVT_ID' => $event_id), 'order_by' => array('REG_date' => 'DESC'))); //, '=', 'OBJECT_K' );
509 509
 	}
510 510
 
511 511
 
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 	 * @return array
516 516
 	 */
517 517
 	public function events() {
518
-		return $this->get_many_related( 'Event' );
518
+		return $this->get_many_related('Event');
519 519
 	}
520 520
 
521 521
 	/**
@@ -524,17 +524,17 @@  discard block
 block discarded – undo
524 524
 	 * @param EE_Payment_Method $payment_method the _gateway_name property on the gateway class
525 525
 	 * @return EE_Form_Section_Proper
526 526
 	 */
527
-	public function billing_info_for_payment_method($payment_method){
527
+	public function billing_info_for_payment_method($payment_method) {
528 528
 		$pm_type = $payment_method->type_obj();
529
-		if( ! $pm_type instanceof EE_PMT_Base ){
529
+		if ( ! $pm_type instanceof EE_PMT_Base) {
530 530
 			return NULL;
531 531
 		}
532
-		$billing_info =  $this->get_post_meta( $this->get_billing_info_postmeta_name( $payment_method ), true );
533
-		if ( ! $billing_info){
532
+		$billing_info = $this->get_post_meta($this->get_billing_info_postmeta_name($payment_method), true);
533
+		if ( ! $billing_info) {
534 534
 			return NULL;
535 535
 		}
536 536
 		$billing_form = $pm_type->billing_form();
537
-		$billing_form->receive_form_submission( array( $billing_form->name() => $billing_info ), FALSE );
537
+		$billing_form->receive_form_submission(array($billing_form->name() => $billing_info), FALSE);
538 538
 		return $billing_form;
539 539
 	}
540 540
 
@@ -544,10 +544,10 @@  discard block
 block discarded – undo
544 544
 	 * @param EE_Payment_Method $payment_method
545 545
 	 * @return string
546 546
 	 */
547
-	public function get_billing_info_postmeta_name($payment_method){
548
-		if( $payment_method->type_obj() instanceof EE_PMT_Base ){
549
-			return 'billing_info_' . $payment_method->type_obj()->system_name();
550
-		}else{
547
+	public function get_billing_info_postmeta_name($payment_method) {
548
+		if ($payment_method->type_obj() instanceof EE_PMT_Base) {
549
+			return 'billing_info_'.$payment_method->type_obj()->system_name();
550
+		} else {
551 551
 			return NULL;
552 552
 		}
553 553
 	}
@@ -558,13 +558,13 @@  discard block
 block discarded – undo
558 558
 	 * @param EE_Payment_Method $payment_method
559 559
 	 * @return boolean
560 560
 	 */
561
-	public function save_and_clean_billing_info_for_payment_method($billing_form, $payment_method){
562
-		if( ! $billing_form instanceof EE_Billing_Attendee_Info_Form ){
563
-			EE_Error::add_error( __( 'Cannot save billing info because there is none.', 'event_espresso' ) );
561
+	public function save_and_clean_billing_info_for_payment_method($billing_form, $payment_method) {
562
+		if ( ! $billing_form instanceof EE_Billing_Attendee_Info_Form) {
563
+			EE_Error::add_error(__('Cannot save billing info because there is none.', 'event_espresso'));
564 564
 			return false;
565 565
 		}
566 566
 		$billing_form->clean_sensitive_data();
567
-		return update_post_meta($this->ID(), $this->get_billing_info_postmeta_name( $payment_method ), $billing_form->input_values( true ) );
567
+		return update_post_meta($this->ID(), $this->get_billing_info_postmeta_name($payment_method), $billing_form->input_values(true));
568 568
 	}
569 569
 
570 570
 }
Please login to merge, or discard this patch.
core/db_classes/EE_Change_Log.class.php 3 patches
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -47,14 +47,14 @@  discard block
 block discarded – undo
47 47
 	 * @param array $props_n_values  incoming values from the database
48 48
 	 * @param string $timezone  incoming timezone as set by the model.  If not set the timezone for
49 49
 	 *                          		the website will be used.
50
-	 * @return EE_Attendee
50
+	 * @return EE_Change_Log
51 51
 	 */
52 52
 	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
53 53
 		return new self( $props_n_values, TRUE, $timezone );
54 54
 	}
55 55
 	/**
56 56
 	 * Gets message
57
-	 * @return mixed
57
+	 * @return boolean
58 58
 	 */
59 59
 	function message() {
60 60
 		return $this->get('LOG_message');
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	}
70 70
 	/**
71 71
 	 * Gets time
72
-	 * @return string
72
+	 * @return boolean
73 73
 	 */
74 74
 	function time() {
75 75
 		return $this->get('LOG_time');
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	}
85 85
 	/**
86 86
 	 * Gets log_type
87
-	 * @return string
87
+	 * @return boolean
88 88
 	 */
89 89
 	function log_type() {
90 90
 		return $this->get('LOG_log_type');
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	}
100 100
 	/**
101 101
 	 * Gets type of the model object related to this log
102
-	 * @return string
102
+	 * @return boolean
103 103
 	 */
104 104
 	function OBJ_type() {
105 105
 		return $this->get('OBJ_type');
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	}
115 115
 	/**
116 116
 	 * Gets OBJ_ID (the ID of the item related to this log)
117
-	 * @return mixed
117
+	 * @return boolean
118 118
 	 */
119 119
 	function OBJ_ID() {
120 120
 		return $this->get('OBJ_ID');
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 	}
130 130
 	/**
131 131
 	 * Gets wp_user
132
-	 * @return int
132
+	 * @return boolean
133 133
 	 */
134 134
 	function wp_user() {
135 135
 		return $this->get('LOG_wp_user');
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 
6 7
 /**
7 8
  * Event Espresso
@@ -152,7 +153,7 @@  discard block
 block discarded – undo
152 153
 		$is_model_name = EE_Registry::instance()->is_model_name($model_name_of_related_obj);
153 154
 		if( ! $is_model_name ){
154 155
 			return null;
155
-		}else{
156
+		} else{
156 157
 			return $this->get_first_related($model_name_of_related_obj);
157 158
 		}
158 159
 	}
@@ -169,13 +170,13 @@  discard block
 block discarded – undo
169 170
 		if($object instanceof EE_Base_Class){
170 171
 			$this->set_OBJ_type($object->get_model()->get_this_model_name());
171 172
 			$this->set_OBJ_ID($object->ID());
172
-		}else{
173
+		} else{
173 174
 			$this->set_OBJ_type(NULL);
174 175
 			$this->set_OBJ_ID(NULL);
175 176
 		}
176 177
 		if($save){
177 178
 			return $this->save();
178
-		}else{
179
+		} else{
179 180
 			return NULL;
180 181
 		}
181 182
 	}
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 
6 6
 /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * ------------------------------------------------------------------------
27 27
  */
28
-class EE_Change_Log extends EE_Base_Class{
28
+class EE_Change_Log extends EE_Base_Class {
29 29
 
30 30
 	/**
31 31
 	 *
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
 	 *                             		    date_format and the second value is the time format
37 37
 	 * @return EE_Attendee
38 38
 	 */
39
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
40
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
41
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
39
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
40
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
41
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
42 42
 	}
43 43
 
44 44
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 	 *                          		the website will be used.
50 50
 	 * @return EE_Attendee
51 51
 	 */
52
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
53
-		return new self( $props_n_values, TRUE, $timezone );
52
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
53
+		return new self($props_n_values, TRUE, $timezone);
54 54
 	}
55 55
 	/**
56 56
 	 * Gets message
@@ -147,12 +147,12 @@  discard block
 block discarded – undo
147 147
 	 * Gets the model object attached to this log
148 148
 	 * @return EE_Base_Class
149 149
 	 */
150
-	function object(){
150
+	function object() {
151 151
 		$model_name_of_related_obj = $this->OBJ_type();
152 152
 		$is_model_name = EE_Registry::instance()->is_model_name($model_name_of_related_obj);
153
-		if( ! $is_model_name ){
153
+		if ( ! $is_model_name) {
154 154
 			return null;
155
-		}else{
155
+		} else {
156 156
 			return $this->get_first_related($model_name_of_related_obj);
157 157
 		}
158 158
 	}
@@ -165,17 +165,17 @@  discard block
 block discarded – undo
165 165
 	 * @param boolean $save
166 166
 	 * @return boolean if $save=true, NULL is $save=false
167 167
 	 */
168
-	function set_object($object, $save = TRUE ) {
169
-		if($object instanceof EE_Base_Class){
168
+	function set_object($object, $save = TRUE) {
169
+		if ($object instanceof EE_Base_Class) {
170 170
 			$this->set_OBJ_type($object->get_model()->get_this_model_name());
171 171
 			$this->set_OBJ_ID($object->ID());
172
-		}else{
172
+		} else {
173 173
 			$this->set_OBJ_type(NULL);
174 174
 			$this->set_OBJ_ID(NULL);
175 175
 		}
176
-		if($save){
176
+		if ($save) {
177 177
 			return $this->save();
178
-		}else{
178
+		} else {
179 179
 			return NULL;
180 180
 		}
181 181
 	}
Please login to merge, or discard this patch.