@@ -77,7 +77,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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' ); |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -2,18 +2,18 @@ |
||
2 | 2 | exit( 'No direct script access allowed' ); |
3 | 3 | } |
4 | 4 | /** |
5 | - * Event Espresso |
|
6 | - * |
|
7 | - * Event Registration and Management Plugin for WordPress |
|
8 | - * |
|
9 | - * @ package Event Espresso |
|
10 | - * @ author Event Espresso |
|
11 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | - * @ link {@link http://www.eventespresso.com} |
|
14 | - * @ since 4.0 |
|
15 | - * |
|
16 | - */ |
|
5 | + * Event Espresso |
|
6 | + * |
|
7 | + * Event Registration and Management Plugin for WordPress |
|
8 | + * |
|
9 | + * @ package Event Espresso |
|
10 | + * @ author Event Espresso |
|
11 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | + * @ link {@link http://www.eventespresso.com} |
|
14 | + * @ since 4.0 |
|
15 | + * |
|
16 | + */ |
|
17 | 17 | |
18 | 18 | |
19 | 19 |
@@ -216,7 +216,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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(); |
@@ -2,18 +2,18 @@ |
||
2 | 2 | exit( 'No direct script access allowed' ); |
3 | 3 | } |
4 | 4 | /** |
5 | - * Event Espresso |
|
6 | - * |
|
7 | - * Event Registration and Management Plugin for WordPress |
|
8 | - * |
|
9 | - * @ package Event Espresso |
|
10 | - * @ author Seth Shoultes |
|
11 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | - * @ link {@link http://www.eventespresso.com} |
|
14 | - * @ since 4.0 |
|
15 | - * |
|
16 | - */ |
|
5 | + * Event Espresso |
|
6 | + * |
|
7 | + * Event Registration and Management Plugin for WordPress |
|
8 | + * |
|
9 | + * @ package Event Espresso |
|
10 | + * @ author Seth Shoultes |
|
11 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | + * @ link {@link http://www.eventespresso.com} |
|
14 | + * @ since 4.0 |
|
15 | + * |
|
16 | + */ |
|
17 | 17 | |
18 | 18 | |
19 | 19 |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function construction_finalized(){ |
93 | 93 | if( $this->_model instanceof EEM_Base && $this->_action ){ |
94 | 94 | return true; |
95 | - }else{ |
|
95 | + } else{ |
|
96 | 96 | return false; |
97 | 97 | } |
98 | 98 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | public function has_generated_cap_restrictions(){ |
126 | 126 | if( $this->_cap_restrictions_generated === false ){ |
127 | 127 | return false; |
128 | - }else{ |
|
128 | + } else{ |
|
129 | 129 | return true; |
130 | 130 | } |
131 | 131 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | $caps_for_admin = EE_Registry::instance()->CAP->get_ee_capabilities( 'administrator' ); |
154 | 154 | if( in_array( self::get_cap_name( $model, $action ), $caps_for_admin ) ) { |
155 | 155 | return true; |
156 | - }else{ |
|
156 | + } else{ |
|
157 | 157 | return false; |
158 | 158 | } |
159 | 159 | } |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 |
||
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__ ); |
|
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__); |
|
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | /** |
@@ -580,14 +580,14 @@ discard block |
||
580 | 580 | * @return string |
581 | 581 | */ |
582 | 582 | public function get_admin_edit_link() { |
583 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
583 | + EE_Registry::instance()->load_helper('URL'); |
|
584 | 584 | return EEH_URL::add_query_args_and_nonce( |
585 | 585 | array( |
586 | 586 | 'page' => 'espresso_registrations', |
587 | 587 | 'action' => 'edit_attendee', |
588 | 588 | 'post' => $this->ID() |
589 | 589 | ), |
590 | - admin_url( 'admin.php' ) |
|
590 | + admin_url('admin.php') |
|
591 | 591 | ); |
592 | 592 | } |
593 | 593 | |
@@ -604,13 +604,13 @@ discard block |
||
604 | 604 | * @return string |
605 | 605 | */ |
606 | 606 | public function get_admin_overview_link() { |
607 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
607 | + EE_Registry::instance()->load_helper('URL'); |
|
608 | 608 | return EEH_URL::add_query_args_and_nonce( |
609 | 609 | array( |
610 | 610 | 'page' => 'espresso_registrations', |
611 | 611 | 'action' => 'contact_list' |
612 | 612 | ), |
613 | - admin_url( 'admin.php' ) |
|
613 | + admin_url('admin.php') |
|
614 | 614 | ); |
615 | 615 | } |
616 | 616 |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | * @access protected |
513 | 513 | * @param string $fieldname the property item the corresponding value is for. |
514 | 514 | * @param mixed $value The value we are caching. |
515 | - * @param null $cache_type |
|
515 | + * @param string $cache_type |
|
516 | 516 | * @return void |
517 | 517 | */ |
518 | 518 | protected function _set_cached_property( $fieldname, $value, $cache_type = NULL ) { |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | * |
826 | 826 | * @param null $field_to_order_by What field is being used as the reference point. |
827 | 827 | * @param array $query_params Any additional conditions on the query. |
828 | - * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
828 | + * @param string $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
829 | 829 | * you can indicate just the columns you want returned |
830 | 830 | * |
831 | 831 | * @return array|EE_Base_Class |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | * |
851 | 851 | * @param null $field_to_order_by What field is being used as the reference point. |
852 | 852 | * @param array $query_params Any additional conditions on the query. |
853 | - * @param null $columns_to_select If left null, then an EE_Base_Class object is returned, otherwise |
|
853 | + * @param string $columns_to_select If left null, then an EE_Base_Class object is returned, otherwise |
|
854 | 854 | * you can indicate just the column you want returned |
855 | 855 | * |
856 | 856 | * @return array|EE_Base_Class |
@@ -987,11 +987,11 @@ discard block |
||
987 | 987 | * |
988 | 988 | * @access protected |
989 | 989 | * @param string $field_name Field on the instantiated EE_Base_Class child object |
990 | - * @param null $dt_frmt valid datetime format used for date (if '' then we just use the default on the field, if NULL we use the last-used format) |
|
991 | - * @param null $tm_frmt Same as above except this is for time format |
|
990 | + * @param string|null $dt_frmt valid datetime format used for date (if '' then we just use the default on the field, if NULL we use the last-used format) |
|
991 | + * @param null|string $tm_frmt Same as above except this is for time format |
|
992 | 992 | * @param string $date_or_time if NULL then both are returned, otherwise "D" = only date and "T" = only time. |
993 | 993 | * @param boolean $echo Whether the dtt is echoing using pretty echoing or just returned using vanilla get |
994 | - * @return void | string | bool | EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown if field is not a valid dtt field, or void if echoing |
|
994 | + * @return string|boolean | string | bool | EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown if field is not a valid dtt field, or void if echoing |
|
995 | 995 | */ |
996 | 996 | protected function _get_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL, $date_or_time = NULL, $echo = FALSE ) { |
997 | 997 | |
@@ -1164,7 +1164,7 @@ discard block |
||
1164 | 1164 | * sets the time on a datetime property |
1165 | 1165 | * |
1166 | 1166 | * @access protected |
1167 | - * @param string|Datetime $time a valid time string for php datetime functions (or DateTime object) |
|
1167 | + * @param string $time a valid time string for php datetime functions (or DateTime object) |
|
1168 | 1168 | * @param string $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field) |
1169 | 1169 | */ |
1170 | 1170 | protected function _set_time_for( $time, $fieldname ) { |
@@ -1179,7 +1179,7 @@ discard block |
||
1179 | 1179 | * sets the date on a datetime property |
1180 | 1180 | * |
1181 | 1181 | * @access protected |
1182 | - * @param string|DateTime $date a valid date string for php datetime functions ( or DateTime object) |
|
1182 | + * @param string $date a valid date string for php datetime functions ( or DateTime object) |
|
1183 | 1183 | * @param string $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field) |
1184 | 1184 | */ |
1185 | 1185 | protected function _set_date_for( $date, $fieldname ) { |
@@ -1483,7 +1483,7 @@ discard block |
||
1483 | 1483 | |
1484 | 1484 | /** |
1485 | 1485 | * for getting a model while instantiated. |
1486 | - * @return \EEM_Base | \EEM_CPT_Base |
|
1486 | + * @return boolean | \EEM_CPT_Base |
|
1487 | 1487 | */ |
1488 | 1488 | public function get_model() { |
1489 | 1489 | $modelName = self::_get_model_classname( get_class($this) ); |
@@ -1514,7 +1514,7 @@ discard block |
||
1514 | 1514 | * If there is a key in the incoming array that matches the primary key for the model AND it is not null, then we check the db. If there's a an object we return it. If not we return false. |
1515 | 1515 | * @param array $props_n_values incoming array of properties and their values |
1516 | 1516 | * @param string $classname the classname of the child class |
1517 | - * @param null $timezone |
|
1517 | + * @param null|string $timezone |
|
1518 | 1518 | * @return mixed (EE_Base_Class|bool) |
1519 | 1519 | */ |
1520 | 1520 | protected static function _check_for_object( $props_n_values, $classname, $timezone = NULL ) { |
@@ -1550,7 +1550,7 @@ discard block |
||
1550 | 1550 | * @param $classname |
1551 | 1551 | * @param null $timezone |
1552 | 1552 | * @throws EE_Error |
1553 | - * @return EEM_Base |
|
1553 | + * @return boolean |
|
1554 | 1554 | */ |
1555 | 1555 | protected static function _get_model( $classname, $timezone = NULL ){ |
1556 | 1556 | //find model for this class |
@@ -1566,8 +1566,8 @@ discard block |
||
1566 | 1566 | /** |
1567 | 1567 | * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee) |
1568 | 1568 | * @param string $model_classname |
1569 | - * @param null $timezone |
|
1570 | - * @return EEM_Base |
|
1569 | + * @param string|null $timezone |
|
1570 | + * @return boolean |
|
1571 | 1571 | */ |
1572 | 1572 | protected static function _get_model_instance_with_name($model_classname, $timezone = NULL){ |
1573 | 1573 | $model_classname = str_replace( 'EEM_', '', $model_classname ); |
@@ -1,4 +1,6 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | do_action( 'AHEE_log', __FILE__, ' FILE LOADED', '' ); |
3 | 5 | /** |
4 | 6 | * |
@@ -170,7 +172,7 @@ discard block |
||
170 | 172 | foreach($this->get_model()->relation_settings() as $relation_name=>$relation_obj){ |
171 | 173 | if($relation_obj instanceof EE_Belongs_To_Relation){ |
172 | 174 | $this->_model_relations[$relation_name] = NULL; |
173 | - }else{ |
|
175 | + } else{ |
|
174 | 176 | $this->_model_relations[$relation_name] = array(); |
175 | 177 | } |
176 | 178 | } |
@@ -215,7 +217,7 @@ discard block |
||
215 | 217 | if( isset( $this->_props_n_values_provided_in_constructor[ $field_name ] ) && |
216 | 218 | $field_settings = $this->get_Model()->field_settings_for( $field_name )){ |
217 | 219 | return $field_settings->prepare_for_get( $this->_props_n_values_provided_in_constructor[ $field_name ] ); |
218 | - }else{ |
|
220 | + } else{ |
|
219 | 221 | return NULL; |
220 | 222 | } |
221 | 223 | } |
@@ -264,7 +266,7 @@ discard block |
||
264 | 266 | empty( $this->_fields[$field_name] ) ? $this->set( $field_name, time() ) : $this->set( $field_name, $this->_fields[$field_name] ); |
265 | 267 | } |
266 | 268 | |
267 | - }else{ |
|
269 | + } else{ |
|
268 | 270 | $this->_fields[$field_name] = $holder_of_value; |
269 | 271 | } |
270 | 272 | |
@@ -292,7 +294,7 @@ discard block |
||
292 | 294 | } |
293 | 295 | //let's unset any cache for this field_name from the $_cached_properties property. |
294 | 296 | $this->_clear_cached_property( $field_name ); |
295 | - }else{ |
|
297 | + } else{ |
|
296 | 298 | throw new EE_Error( sprintf( __( "A valid EE_Model_Field_Base could not be found for the given field name: %s", "event_espresso" ), $field_name ) ); |
297 | 299 | } |
298 | 300 | |
@@ -588,8 +590,9 @@ discard block |
||
588 | 590 | * @return void |
589 | 591 | */ |
590 | 592 | protected function _clear_cached_property( $property_name ) { |
591 | - if ( isset( $this->_cached_properties[ $property_name ] ) ) |
|
592 | - unset( $this->_cached_properties[ $property_name ] ); |
|
593 | + if ( isset( $this->_cached_properties[ $property_name ] ) ) { |
|
594 | + unset( $this->_cached_properties[ $property_name ] ); |
|
595 | + } |
|
593 | 596 | } |
594 | 597 | |
595 | 598 | |
@@ -629,10 +632,10 @@ discard block |
||
629 | 632 | if($clear_all){ |
630 | 633 | $obj_removed = true; |
631 | 634 | $this->_model_relations[$relationName] = null; |
632 | - }elseif($relationship_to_model instanceof EE_Belongs_To_Relation){ |
|
635 | + } elseif($relationship_to_model instanceof EE_Belongs_To_Relation){ |
|
633 | 636 | $obj_removed = $this->_model_relations[$relationName]; |
634 | 637 | $this->_model_relations[$relationName] = null; |
635 | - }else{ |
|
638 | + } else{ |
|
636 | 639 | if($object_to_remove_or_index_into_array instanceof EE_Base_Class && $object_to_remove_or_index_into_array->ID()){ |
637 | 640 | $index_in_cache = $object_to_remove_or_index_into_array->ID(); |
638 | 641 | if( is_array($this->_model_relations[$relationName]) && ! isset($this->_model_relations[$relationName][$index_in_cache])){ |
@@ -646,20 +649,20 @@ discard block |
||
646 | 649 | } |
647 | 650 | if($index_found_at){ |
648 | 651 | $index_in_cache = $index_found_at; |
649 | - }else{ |
|
652 | + } else{ |
|
650 | 653 | //it wasn't found. huh. well obviously it doesn't need to be removed from teh cache |
651 | 654 | //if it wasn't in it to begin with. So we're done |
652 | 655 | return $object_to_remove_or_index_into_array; |
653 | 656 | } |
654 | 657 | } |
655 | - }elseif($object_to_remove_or_index_into_array instanceof EE_Base_Class){ |
|
658 | + } elseif($object_to_remove_or_index_into_array instanceof EE_Base_Class){ |
|
656 | 659 | //so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it! |
657 | 660 | foreach($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want){ |
658 | 661 | if($potentially_obj_we_want == $object_to_remove_or_index_into_array){ |
659 | 662 | $index_in_cache = $index; |
660 | 663 | } |
661 | 664 | } |
662 | - }else{ |
|
665 | + } else{ |
|
663 | 666 | $index_in_cache = $object_to_remove_or_index_into_array; |
664 | 667 | } |
665 | 668 | //supposedly we've found it. But it could just be that the client code |
@@ -668,7 +671,7 @@ discard block |
||
668 | 671 | isset( $this->_model_relations[$relationName][$index_in_cache])){ |
669 | 672 | $obj_removed = $this->_model_relations[$relationName][$index_in_cache]; |
670 | 673 | unset($this->_model_relations[$relationName][$index_in_cache]); |
671 | - }else{ |
|
674 | + } else{ |
|
672 | 675 | //that thing was never cached anyways. |
673 | 676 | $obj_removed = NULL; |
674 | 677 | } |
@@ -724,7 +727,7 @@ discard block |
||
724 | 727 | $cached_array_or_object = $this->_model_relations[$relationName]; |
725 | 728 | if(is_array($cached_array_or_object)){ |
726 | 729 | return array_shift($cached_array_or_object); |
727 | - }else{ |
|
730 | + } else{ |
|
728 | 731 | return $cached_array_or_object; |
729 | 732 | } |
730 | 733 | } |
@@ -743,10 +746,10 @@ discard block |
||
743 | 746 | $cached_array_or_object = $this->_model_relations[$relationName]; |
744 | 747 | if(is_array($cached_array_or_object)){ |
745 | 748 | $objects = $cached_array_or_object; |
746 | - }elseif($cached_array_or_object){ |
|
749 | + } elseif($cached_array_or_object){ |
|
747 | 750 | //if the result is not an array, but exists, make it an array |
748 | 751 | $objects = array($cached_array_or_object); |
749 | - }else{ |
|
752 | + } else{ |
|
750 | 753 | //if nothing was found, return an empty array |
751 | 754 | $objects = array(); |
752 | 755 | } |
@@ -761,7 +764,7 @@ discard block |
||
761 | 764 | if( $model_object->ID() ){ |
762 | 765 | $model->add_to_entity_map( $model_object ); |
763 | 766 | } |
764 | - }else{ |
|
767 | + } else{ |
|
765 | 768 | throw new EE_Error( sprintf( __( 'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object', 'event_espresso' ), $relationName, gettype( $model_object ))); |
766 | 769 | } |
767 | 770 | } |
@@ -886,10 +889,10 @@ discard block |
||
886 | 889 | if( $field_obj->is_nullable()){ |
887 | 890 | //if the field allows nulls, then let it be null |
888 | 891 | $field_value = NULL; |
889 | - }else{ |
|
892 | + } else{ |
|
890 | 893 | $field_value = $field_obj->get_default_value(); |
891 | 894 | } |
892 | - }else{ |
|
895 | + } else{ |
|
893 | 896 | $field_value = $field_obj->prepare_for_set_from_db( $field_value_from_db ); |
894 | 897 | } |
895 | 898 | $this->_fields[$field_name] = $field_value; |
@@ -1009,15 +1012,17 @@ discard block |
||
1009 | 1012 | $this->_tm_frmt = $in_tm_frmt; |
1010 | 1013 | } |
1011 | 1014 | |
1012 | - if ( $echo ) |
|
1013 | - $field->set_pretty_date_format( $in_dt_frmt ); |
|
1014 | - else |
|
1015 | - $field->set_date_format( $in_dt_frmt ); |
|
1015 | + if ( $echo ) { |
|
1016 | + $field->set_pretty_date_format( $in_dt_frmt ); |
|
1017 | + } else { |
|
1018 | + $field->set_date_format( $in_dt_frmt ); |
|
1019 | + } |
|
1016 | 1020 | |
1017 | - if ( $echo ) |
|
1018 | - $field->set_pretty_time_format( $in_tm_frmt ); |
|
1019 | - else |
|
1020 | - $field->set_time_format( $in_tm_frmt ); |
|
1021 | + if ( $echo ) { |
|
1022 | + $field->set_pretty_time_format( $in_tm_frmt ); |
|
1023 | + } else { |
|
1024 | + $field->set_time_format( $in_tm_frmt ); |
|
1025 | + } |
|
1021 | 1026 | |
1022 | 1027 | //set timezone in field object |
1023 | 1028 | $field->set_timezone( $this->_timezone ); |
@@ -1240,8 +1245,9 @@ discard block |
||
1240 | 1245 | EE_Registry::instance()->load_helper('DTT_Helper'); |
1241 | 1246 | $timezone = EEH_DTT_Helper::get_timezone(); |
1242 | 1247 | |
1243 | - if ( $timezone == $this->_timezone ) |
|
1244 | - return ''; |
|
1248 | + if ( $timezone == $this->_timezone ) { |
|
1249 | + return ''; |
|
1250 | + } |
|
1245 | 1251 | |
1246 | 1252 | $original_timezone = $this->_timezone; |
1247 | 1253 | $this->set_timezone( $timezone ); |
@@ -1249,8 +1255,9 @@ discard block |
||
1249 | 1255 | $fn = (array) $field_name; |
1250 | 1256 | $args = array_merge( $fn, (array) $args ); |
1251 | 1257 | |
1252 | - if ( !method_exists( $this, $callback ) ) |
|
1253 | - throw new EE_Error(sprintf( __('The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', 'event_espresso'), $callback ) ); |
|
1258 | + if ( !method_exists( $this, $callback ) ) { |
|
1259 | + throw new EE_Error(sprintf( __('The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', 'event_espresso'), $callback ) ); |
|
1260 | + } |
|
1254 | 1261 | $args = (array) $args; |
1255 | 1262 | $return = $prepend . call_user_func_array( array( $this, $callback ), $args ) . $append; |
1256 | 1263 | |
@@ -1292,7 +1299,7 @@ discard block |
||
1292 | 1299 | $model=$this->get_model(); |
1293 | 1300 | if($model instanceof EEM_Soft_Delete_Base){ |
1294 | 1301 | $result=$model->delete_permanently_by_ID($this->ID()); |
1295 | - }else{ |
|
1302 | + } else{ |
|
1296 | 1303 | $result = $this->delete(); |
1297 | 1304 | } |
1298 | 1305 | return $result ? true : false; |
@@ -1362,7 +1369,7 @@ discard block |
||
1362 | 1369 | $this->_update_cached_related_model_objs_fks(); |
1363 | 1370 | } |
1364 | 1371 | } |
1365 | - }else{//PK is NOT auto-increment |
|
1372 | + } else{//PK is NOT auto-increment |
|
1366 | 1373 | //so check if one like it already exists in the db |
1367 | 1374 | if( $this->get_model()->exists_by_ID( $this->ID() ) ){ |
1368 | 1375 | if( ! $this->in_entity_map() && WP_DEBUG ){ |
@@ -1377,12 +1384,12 @@ discard block |
||
1377 | 1384 | ); |
1378 | 1385 | } |
1379 | 1386 | $results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID()); |
1380 | - }else{ |
|
1387 | + } else{ |
|
1381 | 1388 | $results = $this->get_model()->insert($save_cols_n_values); |
1382 | 1389 | $this->_update_cached_related_model_objs_fks(); |
1383 | 1390 | } |
1384 | 1391 | } |
1385 | - }else{//there is NO primary key |
|
1392 | + } else{//there is NO primary key |
|
1386 | 1393 | $already_in_db = false; |
1387 | 1394 | foreach($this->get_model()->unique_indexes() as $index){ |
1388 | 1395 | $uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields()); |
@@ -1393,7 +1400,7 @@ discard block |
||
1393 | 1400 | if( $already_in_db ){ |
1394 | 1401 | $combined_pk_fields_n_values = array_intersect_key( $save_cols_n_values, $this->get_model()->get_combined_primary_key_fields() ); |
1395 | 1402 | $results = $this->get_model()->update( $save_cols_n_values,$combined_pk_fields_n_values ); |
1396 | - }else{ |
|
1403 | + } else{ |
|
1397 | 1404 | $results = $this->get_model()->insert( $save_cols_n_values ); |
1398 | 1405 | } |
1399 | 1406 | } |
@@ -1445,7 +1452,7 @@ discard block |
||
1445 | 1452 | //make sure this has been saved |
1446 | 1453 | if( ! $this->ID()){ |
1447 | 1454 | $id = $this->save(); |
1448 | - }else{ |
|
1455 | + } else{ |
|
1449 | 1456 | $id = $this->ID(); |
1450 | 1457 | } |
1451 | 1458 | //now save all the NEW cached model objects (ie they don't exist in the DB) |
@@ -1464,7 +1471,7 @@ discard block |
||
1464 | 1471 | $this->_add_relation_to($related_model_obj, $relationName); |
1465 | 1472 | $related_model_obj->save_new_cached_related_model_objs(); |
1466 | 1473 | // } |
1467 | - }else{ |
|
1474 | + } else{ |
|
1468 | 1475 | foreach($this->_model_relations[$relationName] as $related_model_obj){ |
1469 | 1476 | //add a relation to that relation type (which saves the appropriate thing in the process) |
1470 | 1477 | //but ONLY if it DOES NOT exist in the DB |
@@ -1523,13 +1530,13 @@ discard block |
||
1523 | 1530 | |
1524 | 1531 | if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) { |
1525 | 1532 | $existing = self::_get_model( $classname, $timezone )->get_one_by_ID( $props_n_values[$primary_id_ref] ); |
1526 | - }else{ |
|
1533 | + } else{ |
|
1527 | 1534 | $existing = null; |
1528 | 1535 | } |
1529 | - }elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields( $props_n_values ) ){ |
|
1536 | + } elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields( $props_n_values ) ){ |
|
1530 | 1537 | //no primary key on this model, but there's still a matching item in the DB |
1531 | 1538 | $existing = self::_get_model($classname, $timezone)->get_one_by_ID( self::_get_model($classname, $timezone)->get_index_primary_key_string( $props_n_values ) ); |
1532 | - }else{ |
|
1539 | + } else{ |
|
1533 | 1540 | $existing = null; |
1534 | 1541 | } |
1535 | 1542 | if ( $existing ) { |
@@ -1587,7 +1594,7 @@ discard block |
||
1587 | 1594 | private static function _get_model_classname( $model_name = null){ |
1588 | 1595 | if(strpos($model_name,"EE_")===0){ |
1589 | 1596 | $model_classname=str_replace("EE_","EEM_",$model_name); |
1590 | - }else{ |
|
1597 | + } else{ |
|
1591 | 1598 | $model_classname = "EEM_".$model_name; |
1592 | 1599 | } |
1593 | 1600 | return $model_classname; |
@@ -1621,7 +1628,7 @@ discard block |
||
1621 | 1628 | //now that we know the name of the variable, use a variable variable to get its value and return its |
1622 | 1629 | if( $this->get_model()->has_primary_key_field() ) { |
1623 | 1630 | return $this->_fields[self::_get_primary_key_name( get_class($this) )]; |
1624 | - }else{ |
|
1631 | + } else{ |
|
1625 | 1632 | return $this->get_model()->get_index_primary_key_string( $this->_fields ); |
1626 | 1633 | } |
1627 | 1634 | } |
@@ -1679,7 +1686,7 @@ discard block |
||
1679 | 1686 | if($this->ID()){//if this exists in the DB, save the relation change to the DB too |
1680 | 1687 | $otherObject = $this->get_model()->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $where_query ); |
1681 | 1688 | $this->clear_cache($relationName, $otherObject); |
1682 | - }else{//this doesn't exist in the DB, just remove it from the cache |
|
1689 | + } else{//this doesn't exist in the DB, just remove it from the cache |
|
1683 | 1690 | $otherObject = $this->clear_cache($relationName,$otherObjectModelObjectOrID); |
1684 | 1691 | } |
1685 | 1692 | return $otherObject; |
@@ -1695,7 +1702,7 @@ discard block |
||
1695 | 1702 | if($this->ID()){//if this exists in the DB, save the relation change to the DB too |
1696 | 1703 | $otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params ); |
1697 | 1704 | $this->clear_cache($relationName,null,true); |
1698 | - }else{//this doesn't exist in the DB, just remove it from the cache |
|
1705 | + } else{//this doesn't exist in the DB, just remove it from the cache |
|
1699 | 1706 | $otherObjects = $this->clear_cache($relationName,null,true); |
1700 | 1707 | } |
1701 | 1708 | return $otherObjects; |
@@ -1718,7 +1725,7 @@ discard block |
||
1718 | 1725 | //if there are query parameters, forget about caching the related model objects. |
1719 | 1726 | if( $query_params ){ |
1720 | 1727 | $related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params); |
1721 | - }else{ |
|
1728 | + } else{ |
|
1722 | 1729 | //did we already cache the result of this query? |
1723 | 1730 | $cached_results = $this->get_all_from_cache($relationName); |
1724 | 1731 | if ( ! $cached_results ){ |
@@ -1728,11 +1735,11 @@ discard block |
||
1728 | 1735 | foreach($related_model_objects as $related_model_object){ |
1729 | 1736 | $this->cache($relationName, $related_model_object); |
1730 | 1737 | } |
1731 | - }else{ |
|
1738 | + } else{ |
|
1732 | 1739 | $related_model_objects = $cached_results; |
1733 | 1740 | } |
1734 | 1741 | } |
1735 | - }else{//this doesn't exist itn eh DB, so just get the related things from the cache |
|
1742 | + } else{//this doesn't exist itn eh DB, so just get the related things from the cache |
|
1736 | 1743 | $related_model_objects = $this->get_all_from_cache($relationName); |
1737 | 1744 | } |
1738 | 1745 | return $related_model_objects; |
@@ -1784,22 +1791,22 @@ discard block |
||
1784 | 1791 | //on a relation which should have an array of objects (because the cache might have an array of objects) |
1785 | 1792 | if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){ |
1786 | 1793 | $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
1787 | - }else{ |
|
1794 | + } else{ |
|
1788 | 1795 | //first, check if we've already cached the result of this query |
1789 | 1796 | $cached_result = $this->get_one_from_cache($relationName); |
1790 | 1797 | if ( ! $cached_result ){ |
1791 | 1798 | |
1792 | 1799 | $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
1793 | 1800 | $this->cache($relationName,$related_model_object); |
1794 | - }else{ |
|
1801 | + } else{ |
|
1795 | 1802 | $related_model_object = $cached_result; |
1796 | 1803 | } |
1797 | 1804 | } |
1798 | - }else{ |
|
1805 | + } else{ |
|
1799 | 1806 | //this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might |
1800 | 1807 | if( $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){ |
1801 | 1808 | $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
1802 | - }else{ |
|
1809 | + } else{ |
|
1803 | 1810 | $related_model_object = null; |
1804 | 1811 | } |
1805 | 1812 | //this doesn't exist in the DB and apparently the thing it belongs to doesn't either, just get what's cached on this object |
@@ -1825,7 +1832,7 @@ discard block |
||
1825 | 1832 | public function delete_related($relationName,$query_params = array()){ |
1826 | 1833 | if($this->ID()){ |
1827 | 1834 | $count = $this->get_model()->delete_related($this, $relationName, $query_params); |
1828 | - }else{ |
|
1835 | + } else{ |
|
1829 | 1836 | $count = count($this->get_all_from_cache($relationName)); |
1830 | 1837 | $this->clear_cache($relationName,NULL,TRUE); |
1831 | 1838 | } |
@@ -1845,7 +1852,7 @@ discard block |
||
1845 | 1852 | public function delete_related_permanently($relationName,$query_params = array()){ |
1846 | 1853 | if($this->ID()){ |
1847 | 1854 | $count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params); |
1848 | - }else{ |
|
1855 | + } else{ |
|
1849 | 1856 | $count = count($this->get_all_from_cache($relationName)); |
1850 | 1857 | } |
1851 | 1858 | $this->clear_cache($relationName,NULL,TRUE); |
@@ -1880,8 +1887,9 @@ discard block |
||
1880 | 1887 | |
1881 | 1888 | foreach ( (array) $properties as $property_name ) { |
1882 | 1889 | //first make sure this property exists |
1883 | - if ( ! $this->_fields[ $property_name ] ) |
|
1884 | - throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s). Double check the spelling please', 'event_espresso'), $property_name ) ); |
|
1890 | + if ( ! $this->_fields[ $property_name ] ) { |
|
1891 | + throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s). Double check the spelling please', 'event_espresso'), $property_name ) ); |
|
1892 | + } |
|
1885 | 1893 | } |
1886 | 1894 | |
1887 | 1895 | return TRUE; |
@@ -1961,7 +1969,7 @@ discard block |
||
1961 | 1969 | $existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params); |
1962 | 1970 | if( ! $existing_rows_like_that){ |
1963 | 1971 | return $this->add_extra_meta($meta_key, $meta_value); |
1964 | - }else{ |
|
1972 | + } else{ |
|
1965 | 1973 | foreach( $existing_rows_like_that as $existing_row){ |
1966 | 1974 | $existing_row->save( array( 'EXM_value' => $meta_value ) ); |
1967 | 1975 | } |
@@ -2027,10 +2035,10 @@ discard block |
||
2027 | 2035 | $result = $this->get_first_related('Extra_Meta',array(array('EXM_key'=>$meta_key))); |
2028 | 2036 | if ( $result instanceof EE_Extra_Meta ){ |
2029 | 2037 | return $result->value(); |
2030 | - }else{ |
|
2038 | + } else{ |
|
2031 | 2039 | return $default; |
2032 | 2040 | } |
2033 | - }else{ |
|
2041 | + } else{ |
|
2034 | 2042 | $results = $this->get_many_related('Extra_Meta',array(array('EXM_key'=>$meta_key))); |
2035 | 2043 | if($results){ |
2036 | 2044 | $values = array(); |
@@ -2040,7 +2048,7 @@ discard block |
||
2040 | 2048 | } |
2041 | 2049 | } |
2042 | 2050 | return $values; |
2043 | - }else{ |
|
2051 | + } else{ |
|
2044 | 2052 | return $default; |
2045 | 2053 | } |
2046 | 2054 | } |
@@ -2066,7 +2074,7 @@ discard block |
||
2066 | 2074 | $return_array[$extra_meta_obj->key()] = $extra_meta_obj->value(); |
2067 | 2075 | } |
2068 | 2076 | } |
2069 | - }else{ |
|
2077 | + } else{ |
|
2070 | 2078 | $extra_meta_objs = $this->get_many_related('Extra_Meta'); |
2071 | 2079 | foreach($extra_meta_objs as $extra_meta_obj){ |
2072 | 2080 | if ( $extra_meta_obj instanceof EE_Extra_Meta ) { |
@@ -2088,7 +2096,7 @@ discard block |
||
2088 | 2096 | $field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base'); |
2089 | 2097 | if($field_we_can_use){ |
2090 | 2098 | return $this->get($field_we_can_use->get_name()); |
2091 | - }else{ |
|
2099 | + } else{ |
|
2092 | 2100 | $first_few_properties = $this->model_field_array(); |
2093 | 2101 | $first_few_properties = array_slice($first_few_properties,0,3); |
2094 | 2102 | $name_parts = array(); |
@@ -2108,7 +2116,7 @@ discard block |
||
2108 | 2116 | if( $this->ID() && $this->get_model()->get_from_entity_map( $this->ID() ) === $this ) { |
2109 | 2117 | //well, if we looked, did we find it in the entity map? |
2110 | 2118 | return TRUE; |
2111 | - }else{ |
|
2119 | + } else{ |
|
2112 | 2120 | return FALSE; |
2113 | 2121 | } |
2114 | 2122 | } |
@@ -2122,7 +2130,7 @@ discard block |
||
2122 | 2130 | public function refresh_from_db(){ |
2123 | 2131 | if( $this->ID() && $this->in_entity_map() ){ |
2124 | 2132 | $this->get_model()->refresh_entity_map_from_db( $this->ID() ); |
2125 | - }else{ |
|
2133 | + } else{ |
|
2126 | 2134 | //if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database) |
2127 | 2135 | //if it has an ID but it's not in the map, and you're asking me to refresh it |
2128 | 2136 | //that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | -do_action( 'AHEE_log', __FILE__, ' FILE LOADED', '' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | +do_action('AHEE_log', __FILE__, ' FILE LOADED', ''); |
|
3 | 3 | /** |
4 | 4 | * |
5 | 5 | * Event Espresso |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * ------------------------------------------------------------------------ |
25 | 25 | */ |
26 | 26 | |
27 | -abstract class EE_Base_Class{ |
|
27 | +abstract class EE_Base_Class { |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * This is an array of the original properties and values provided during construction |
@@ -117,60 +117,60 @@ discard block |
||
117 | 117 | * @throws EE_Error |
118 | 118 | * @return \EE_Base_Class |
119 | 119 | */ |
120 | - protected function __construct( $fieldValues = array(), $bydb = FALSE, $timezone = '', $date_formats = array() ){ |
|
120 | + protected function __construct($fieldValues = array(), $bydb = FALSE, $timezone = '', $date_formats = array()) { |
|
121 | 121 | |
122 | - $className=get_class($this); |
|
122 | + $className = get_class($this); |
|
123 | 123 | |
124 | - do_action("AHEE__{$className}__construct",$this,$fieldValues); |
|
125 | - $model=$this->get_model(); |
|
126 | - $model_fields = $model->field_settings( FALSE ); |
|
124 | + do_action("AHEE__{$className}__construct", $this, $fieldValues); |
|
125 | + $model = $this->get_model(); |
|
126 | + $model_fields = $model->field_settings(FALSE); |
|
127 | 127 | // ensure $fieldValues is an array |
128 | - $fieldValues = is_array( $fieldValues ) ? $fieldValues : array( $fieldValues ); |
|
128 | + $fieldValues = is_array($fieldValues) ? $fieldValues : array($fieldValues); |
|
129 | 129 | // EEH_Debug_Tools::printr( $fieldValues, '$fieldValues <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
130 | 130 | // verify client code has not passed any invalid field names |
131 | - foreach($fieldValues as $field_name=> $field_value){ |
|
132 | - if( ! isset( $model_fields[ $field_name] ) ){ |
|
133 | - throw new EE_Error(sprintf(__("Invalid field (%s) passed to constructor of %s. Allowed fields are :%s", "event_espresso"),$field_name,get_class($this),implode(", ",array_keys($model_fields)))); |
|
131 | + foreach ($fieldValues as $field_name=> $field_value) { |
|
132 | + if ( ! isset($model_fields[$field_name])) { |
|
133 | + throw new EE_Error(sprintf(__("Invalid field (%s) passed to constructor of %s. Allowed fields are :%s", "event_espresso"), $field_name, get_class($this), implode(", ", array_keys($model_fields)))); |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | // EEH_Debug_Tools::printr( $model_fields, '$model_fields <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
137 | - EE_Registry::instance()->load_helper( 'DTT_Helper' ); |
|
138 | - $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string( $timezone ); |
|
137 | + EE_Registry::instance()->load_helper('DTT_Helper'); |
|
138 | + $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
139 | 139 | |
140 | - if ( ! empty( $date_formats ) && is_array( $date_formats ) ) { |
|
140 | + if ( ! empty($date_formats) && is_array($date_formats)) { |
|
141 | 141 | $this->_dt_frmt = $date_formats[0]; |
142 | 142 | $this->_tm_frmt = $date_formats[1]; |
143 | 143 | } else { |
144 | 144 | //set default formats for date and time |
145 | - $this->_dt_frmt = get_option( 'date_format' ); |
|
146 | - $this->_tm_frmt = get_option( 'time_format' ); |
|
145 | + $this->_dt_frmt = get_option('date_format'); |
|
146 | + $this->_tm_frmt = get_option('time_format'); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | //if db model is instantiating |
150 | - if ( $bydb ){ |
|
150 | + if ($bydb) { |
|
151 | 151 | //client code has indicated these field values are from the database |
152 | - foreach( $model_fields as $fieldName => $field ){ |
|
153 | - $this->set_from_db( $fieldName, isset( $fieldValues[ $fieldName] ) ? $fieldValues[ $fieldName ] : null ); |
|
152 | + foreach ($model_fields as $fieldName => $field) { |
|
153 | + $this->set_from_db($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null); |
|
154 | 154 | } |
155 | 155 | } else { |
156 | 156 | //we're constructing a brand |
157 | 157 | //new instance of the model object. Generally, this means we'll need to do more field validation |
158 | - foreach( $model_fields as $fieldName => $field ){ |
|
159 | - $this->set( $fieldName, isset( $fieldValues[ $fieldName ] ) ? $fieldValues[ $fieldName ] : null, true ); |
|
158 | + foreach ($model_fields as $fieldName => $field) { |
|
159 | + $this->set($fieldName, isset($fieldValues[$fieldName]) ? $fieldValues[$fieldName] : null, true); |
|
160 | 160 | } |
161 | 161 | } |
162 | 162 | |
163 | 163 | //remember what values were passed to this constructor |
164 | 164 | $this->_props_n_values_provided_in_constructor = $fieldValues; |
165 | 165 | //remember in entity mapper |
166 | - if($model->has_primary_key_field() && $this->ID() && ! $bydb ){ |
|
166 | + if ($model->has_primary_key_field() && $this->ID() && ! $bydb) { |
|
167 | 167 | $model->add_to_entity_map($this); |
168 | 168 | } |
169 | 169 | //setup all the relations |
170 | - foreach($this->get_model()->relation_settings() as $relation_name=>$relation_obj){ |
|
171 | - if($relation_obj instanceof EE_Belongs_To_Relation){ |
|
170 | + foreach ($this->get_model()->relation_settings() as $relation_name=>$relation_obj) { |
|
171 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
172 | 172 | $this->_model_relations[$relation_name] = NULL; |
173 | - }else{ |
|
173 | + } else { |
|
174 | 174 | $this->_model_relations[$relation_name] = array(); |
175 | 175 | } |
176 | 176 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * Action done at the end of each model object construction |
179 | 179 | * @param EE_Base_Class $this the model object just created |
180 | 180 | */ |
181 | - do_action( 'AHEE__EE_Base_Class__construct__finished', $this ); |
|
181 | + do_action('AHEE__EE_Base_Class__construct__finished', $this); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @param boolean $allow_persist |
199 | 199 | * @return boolean |
200 | 200 | */ |
201 | - function set_allow_persist( $allow_persist ) { |
|
201 | + function set_allow_persist($allow_persist) { |
|
202 | 202 | return $this->_allow_persist = $allow_persist; |
203 | 203 | } |
204 | 204 | |
@@ -211,11 +211,11 @@ discard block |
||
211 | 211 | * @param string $field_name |
212 | 212 | * @return mixed|null |
213 | 213 | */ |
214 | - public function get_original( $field_name ){ |
|
215 | - if( isset( $this->_props_n_values_provided_in_constructor[ $field_name ] ) && |
|
216 | - $field_settings = $this->get_Model()->field_settings_for( $field_name )){ |
|
217 | - return $field_settings->prepare_for_get( $this->_props_n_values_provided_in_constructor[ $field_name ] ); |
|
218 | - }else{ |
|
214 | + public function get_original($field_name) { |
|
215 | + if (isset($this->_props_n_values_provided_in_constructor[$field_name]) && |
|
216 | + $field_settings = $this->get_Model()->field_settings_for($field_name)) { |
|
217 | + return $field_settings->prepare_for_get($this->_props_n_values_provided_in_constructor[$field_name]); |
|
218 | + } else { |
|
219 | 219 | return NULL; |
220 | 220 | } |
221 | 221 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * @param EE_Base_Class $obj |
226 | 226 | * @return string |
227 | 227 | */ |
228 | - public function get_class($obj){ |
|
228 | + public function get_class($obj) { |
|
229 | 229 | return get_class($obj); |
230 | 230 | } |
231 | 231 | |
@@ -238,19 +238,19 @@ discard block |
||
238 | 238 | * @param mixed $field_value |
239 | 239 | * @param bool $use_default |
240 | 240 | */ |
241 | - public function set( $field_name, $field_value, $use_default = FALSE ){ |
|
242 | - $field_obj = $this->get_model()->field_settings_for( $field_name ); |
|
243 | - if ( $field_obj instanceof EE_Model_Field_Base ) { |
|
241 | + public function set($field_name, $field_value, $use_default = FALSE) { |
|
242 | + $field_obj = $this->get_model()->field_settings_for($field_name); |
|
243 | + if ($field_obj instanceof EE_Model_Field_Base) { |
|
244 | 244 | // if ( method_exists( $field_obj, 'set_timezone' )) { |
245 | - if ( $field_obj instanceof EE_Datetime_Field ) { |
|
246 | - $field_obj->set_timezone( $this->_timezone ); |
|
247 | - $field_obj->set_date_format( $this->_dt_frmt ); |
|
248 | - $field_obj->set_time_format( $this->_tm_frmt ); |
|
245 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
246 | + $field_obj->set_timezone($this->_timezone); |
|
247 | + $field_obj->set_date_format($this->_dt_frmt); |
|
248 | + $field_obj->set_time_format($this->_tm_frmt); |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | $holder_of_value = $field_obj->prepare_for_set($field_value); |
252 | 252 | //should the value be null? |
253 | - if( ($field_value === NULL || $holder_of_value === NULL || $holder_of_value ==='') && $use_default){ |
|
253 | + if (($field_value === NULL || $holder_of_value === NULL || $holder_of_value === '') && $use_default) { |
|
254 | 254 | $this->_fields[$field_name] = $field_obj->get_default_value(); |
255 | 255 | |
256 | 256 | /** |
@@ -260,19 +260,19 @@ discard block |
||
260 | 260 | * object. |
261 | 261 | * @since 4.6.10+ |
262 | 262 | */ |
263 | - if ( $field_obj instanceof EE_Datetime_Field && ! is_null( $this->_fields[$field_name] ) && ! $this->_fields[$field_name] instanceof DateTime ) { |
|
264 | - empty( $this->_fields[$field_name] ) ? $this->set( $field_name, time() ) : $this->set( $field_name, $this->_fields[$field_name] ); |
|
263 | + if ($field_obj instanceof EE_Datetime_Field && ! is_null($this->_fields[$field_name]) && ! $this->_fields[$field_name] instanceof DateTime) { |
|
264 | + empty($this->_fields[$field_name]) ? $this->set($field_name, time()) : $this->set($field_name, $this->_fields[$field_name]); |
|
265 | 265 | } |
266 | 266 | |
267 | - }else{ |
|
267 | + } else { |
|
268 | 268 | $this->_fields[$field_name] = $holder_of_value; |
269 | 269 | } |
270 | 270 | |
271 | 271 | //if we're not in the constructor... |
272 | 272 | //now check if what we set was a primary key |
273 | - if($this->_props_n_values_provided_in_constructor && //note: props_n_values_provided_in_constructor is only set at the END of the constructor |
|
273 | + if ($this->_props_n_values_provided_in_constructor && //note: props_n_values_provided_in_constructor is only set at the END of the constructor |
|
274 | 274 | $field_name == $this->_get_primary_key_name(get_class($this)) && |
275 | - $field_value){ |
|
275 | + $field_value) { |
|
276 | 276 | //if so, we want all this object's fields to be filled either with |
277 | 277 | //what we've explicitly set on this model |
278 | 278 | //or what we have in the db |
@@ -280,20 +280,20 @@ discard block |
||
280 | 280 | $fields_on_model = $this->_get_model(get_class($this))->field_settings(); |
281 | 281 | |
282 | 282 | $obj_in_db = $this->_get_model(get_class($this))->get_one_by_ID($field_value); |
283 | - foreach($fields_on_model as $field_obj){ |
|
284 | - if( ! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor) |
|
285 | - && $field_obj->get_name() != $field_name ){ |
|
283 | + foreach ($fields_on_model as $field_obj) { |
|
284 | + if ( ! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor) |
|
285 | + && $field_obj->get_name() != $field_name) { |
|
286 | 286 | |
287 | - $this->set($field_obj->get_name(),$obj_in_db->get($field_obj->get_name())); |
|
287 | + $this->set($field_obj->get_name(), $obj_in_db->get($field_obj->get_name())); |
|
288 | 288 | } |
289 | 289 | } |
290 | 290 | //oh this model object has an ID? well make sure its in the entity mapper |
291 | 291 | $this->get_model()->add_to_entity_map($this); |
292 | 292 | } |
293 | 293 | //let's unset any cache for this field_name from the $_cached_properties property. |
294 | - $this->_clear_cached_property( $field_name ); |
|
295 | - }else{ |
|
296 | - throw new EE_Error( sprintf( __( "A valid EE_Model_Field_Base could not be found for the given field name: %s", "event_espresso" ), $field_name ) ); |
|
294 | + $this->_clear_cached_property($field_name); |
|
295 | + } else { |
|
296 | + throw new EE_Error(sprintf(__("A valid EE_Model_Field_Base could not be found for the given field name: %s", "event_espresso"), $field_name)); |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | } |
@@ -310,14 +310,14 @@ discard block |
||
310 | 310 | * @param mixed $field_value The value to set. |
311 | 311 | * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs. |
312 | 312 | */ |
313 | - public function set_field_or_extra_meta( $field_name, $field_value ) { |
|
314 | - if ( $this->get_model()->has_field( $field_name ) ) { |
|
315 | - $this->set( $field_name, $field_value ); |
|
313 | + public function set_field_or_extra_meta($field_name, $field_value) { |
|
314 | + if ($this->get_model()->has_field($field_name)) { |
|
315 | + $this->set($field_name, $field_value); |
|
316 | 316 | return true; |
317 | 317 | } else { |
318 | 318 | //ensure this object is saved first so that extra meta can be properly related. |
319 | 319 | $this->save(); |
320 | - return $this->update_extra_meta( $field_name, $field_value ); |
|
320 | + return $this->update_extra_meta($field_name, $field_value); |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | |
@@ -341,12 +341,12 @@ discard block |
||
341 | 341 | * @param string $field_name expecting the fully qualified field name. |
342 | 342 | * @return mixed|null value for the field if found. null if not found. |
343 | 343 | */ |
344 | - public function get_field_or_extra_meta( $field_name ) { |
|
345 | - if ( $this->get_model()->has_field( $field_name ) ) { |
|
346 | - $column_value = $this->get( $field_name ); |
|
344 | + public function get_field_or_extra_meta($field_name) { |
|
345 | + if ($this->get_model()->has_field($field_name)) { |
|
346 | + $column_value = $this->get($field_name); |
|
347 | 347 | } else { |
348 | 348 | //This isn't a column in the main table, let's see if it is in the extra meta. |
349 | - $column_value = $this->get_extra_meta( $field_name, true, null ); |
|
349 | + $column_value = $this->get_extra_meta($field_name, true, null); |
|
350 | 350 | } |
351 | 351 | return $column_value; |
352 | 352 | } |
@@ -365,19 +365,19 @@ discard block |
||
365 | 365 | * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php |
366 | 366 | * @return void |
367 | 367 | */ |
368 | - public function set_timezone( $timezone = '' ) { |
|
368 | + public function set_timezone($timezone = '') { |
|
369 | 369 | EE_Registry::instance()->load_helper('DTT_Helper'); |
370 | - $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string( $timezone ); |
|
370 | + $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
371 | 371 | //make sure we clear all cached properties because they won't be relevant now |
372 | 372 | $this->_clear_cached_properties(); |
373 | 373 | |
374 | 374 | //make sure we update field settings and the date for all EE_Datetime_Fields |
375 | - $model_fields = $this->get_model()->field_settings( false ); |
|
376 | - foreach ( $model_fields as $field_name => $field_obj ) { |
|
377 | - if ( $field_obj instanceof EE_Datetime_Field ) { |
|
378 | - $field_obj->set_timezone( $this->_timezone ); |
|
379 | - if ( isset( $this->_fields[$field_name] ) && $this->_fields[$field_name] instanceof DateTime ) { |
|
380 | - $this->_fields[$field_name]->setTimezone( new DateTimeZone( $this->_timezone ) ); |
|
375 | + $model_fields = $this->get_model()->field_settings(false); |
|
376 | + foreach ($model_fields as $field_name => $field_obj) { |
|
377 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
378 | + $field_obj->set_timezone($this->_timezone); |
|
379 | + if (isset($this->_fields[$field_name]) && $this->_fields[$field_name] instanceof DateTime) { |
|
380 | + $this->_fields[$field_name]->setTimezone(new DateTimeZone($this->_timezone)); |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | } |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | * |
407 | 407 | * @param string $format should be a format recognizable by PHP date() functions. |
408 | 408 | */ |
409 | - public function set_date_format( $format ) { |
|
409 | + public function set_date_format($format) { |
|
410 | 410 | $this->_dt_frmt = $format; |
411 | 411 | //clear cached_properties because they won't be relevant now. |
412 | 412 | $this->_clear_cached_properties(); |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | * @since 4.6 |
423 | 423 | * @param string $format should be a format recognizable by PHP date() functions. |
424 | 424 | */ |
425 | - public function set_time_format( $format ) { |
|
425 | + public function set_time_format($format) { |
|
426 | 426 | $this->_tm_frmt = $format; |
427 | 427 | //clear cached_properties because they won't be relevant now. |
428 | 428 | $this->_clear_cached_properties(); |
@@ -439,8 +439,8 @@ discard block |
||
439 | 439 | * |
440 | 440 | * @return mixed string|array |
441 | 441 | */ |
442 | - public function get_format( $full = true ) { |
|
443 | - return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array( $this->_dt_frmt, $this->_tm_frmt ); |
|
442 | + public function get_format($full = true) { |
|
443 | + return $full ? $this->_dt_frmt.' '.$this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt); |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | |
@@ -458,17 +458,17 @@ discard block |
||
458 | 458 | * @throws EE_Error |
459 | 459 | * @return mixed index into cache, or just TRUE if the relation is of type Belongs_To (because there's only one related thing, no array) |
460 | 460 | */ |
461 | - public function cache( $relationName = '', $object_to_cache = NULL, $cache_id = NULL ){ |
|
461 | + public function cache($relationName = '', $object_to_cache = NULL, $cache_id = NULL) { |
|
462 | 462 | // its entirely possible that there IS no related object yet in which case there is nothing to cache. |
463 | - if ( ! $object_to_cache instanceof EE_Base_Class ) { |
|
463 | + if ( ! $object_to_cache instanceof EE_Base_Class) { |
|
464 | 464 | return FALSE; |
465 | 465 | } |
466 | 466 | // also get "how" the object is related, or throw an error |
467 | - if( ! $relationship_to_model = $this->get_model()->related_settings_for( $relationName )) { |
|
468 | - throw new EE_Error( sprintf( __( 'There is no relationship to %s on a %s. Cannot cache it', 'event_espresso' ), $relationName, get_class( $this ))); |
|
467 | + if ( ! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) { |
|
468 | + throw new EE_Error(sprintf(__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'), $relationName, get_class($this))); |
|
469 | 469 | } |
470 | 470 | // how many things are related ? |
471 | - if( $relationship_to_model instanceof EE_Belongs_To_Relation ){ |
|
471 | + if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
472 | 472 | // if it's a "belongs to" relationship, then there's only one related model object eg, if this is a registration, there's only 1 attendee for it |
473 | 473 | // so for these model objects just set it to be cached |
474 | 474 | $this->_model_relations[$relationName] = $object_to_cache; |
@@ -476,26 +476,26 @@ discard block |
||
476 | 476 | } else { |
477 | 477 | // otherwise, this is the "many" side of a one to many relationship, so we'll add the object to the array of related objects for that type. |
478 | 478 | // eg: if this is an event, there are many registrations for that event, so we cache the registrations in an array |
479 | - if( ! is_array( $this->_model_relations[$relationName] )) { |
|
479 | + if ( ! is_array($this->_model_relations[$relationName])) { |
|
480 | 480 | // if for some reason, the cached item is a model object, then stick that in the array, otherwise start with an empty array |
481 | - $this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class ? array( $this->_model_relations[$relationName] ) : array(); |
|
481 | + $this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class ? array($this->_model_relations[$relationName]) : array(); |
|
482 | 482 | } |
483 | 483 | // first check for a cache_id which is normally empty |
484 | - if ( ! empty( $cache_id )) { |
|
484 | + if ( ! empty($cache_id)) { |
|
485 | 485 | // if the cache_id exists, then it means we are purposely trying to cache this with a known key that can then be used to retrieve the object later on |
486 | - $this->_model_relations[$relationName][ $cache_id ] = $object_to_cache; |
|
486 | + $this->_model_relations[$relationName][$cache_id] = $object_to_cache; |
|
487 | 487 | $return = $cache_id; |
488 | - } elseif ( $object_to_cache->ID() ) { |
|
488 | + } elseif ($object_to_cache->ID()) { |
|
489 | 489 | // OR the cached object originally came from the db, so let's just use it's PK for an ID |
490 | - $this->_model_relations[$relationName][ $object_to_cache->ID() ] = $object_to_cache; |
|
490 | + $this->_model_relations[$relationName][$object_to_cache->ID()] = $object_to_cache; |
|
491 | 491 | $return = $object_to_cache->ID(); |
492 | 492 | } else { |
493 | 493 | // OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID |
494 | 494 | $this->_model_relations[$relationName][] = $object_to_cache; |
495 | 495 | // move the internal pointer to the end of the array |
496 | - end( $this->_model_relations[$relationName] ); |
|
496 | + end($this->_model_relations[$relationName]); |
|
497 | 497 | // and grab the key so that we can return it |
498 | - $return = key( $this->_model_relations[$relationName] ); |
|
498 | + $return = key($this->_model_relations[$relationName]); |
|
499 | 499 | } |
500 | 500 | |
501 | 501 | } |
@@ -513,11 +513,11 @@ discard block |
||
513 | 513 | * @param null $cache_type |
514 | 514 | * @return void |
515 | 515 | */ |
516 | - protected function _set_cached_property( $fieldname, $value, $cache_type = NULL ) { |
|
516 | + protected function _set_cached_property($fieldname, $value, $cache_type = NULL) { |
|
517 | 517 | //first make sure this property exists |
518 | 518 | $this->get_model()->field_settings_for($fieldname); |
519 | 519 | |
520 | - $cache_type = empty( $cache_type ) ? 'standard' : $cache_type; |
|
520 | + $cache_type = empty($cache_type) ? 'standard' : $cache_type; |
|
521 | 521 | $this->_cached_properties[$fieldname][$cache_type] = $value; |
522 | 522 | } |
523 | 523 | |
@@ -532,34 +532,34 @@ discard block |
||
532 | 532 | * It can also accept certain pre-defined "schema" strings to define how to output the property. see the field's prepare_for_pretty_echoing for what strings can be used |
533 | 533 | * @return mixed whatever the value for the property is we're retrieving |
534 | 534 | */ |
535 | - protected function _get_cached_property( $fieldname, $pretty = FALSE, $extra_cache_ref = NULL ) { |
|
535 | + protected function _get_cached_property($fieldname, $pretty = FALSE, $extra_cache_ref = NULL) { |
|
536 | 536 | //verify the field exists |
537 | 537 | $this->get_model()->field_settings_for($fieldname); |
538 | 538 | |
539 | 539 | $cache_type = $pretty ? 'pretty' : 'standard'; |
540 | - $cache_type .= !empty( $extra_cache_ref ) ? '_' . $extra_cache_ref : ''; |
|
540 | + $cache_type .= ! empty($extra_cache_ref) ? '_'.$extra_cache_ref : ''; |
|
541 | 541 | |
542 | - if ( isset( $this->_cached_properties[$fieldname][$cache_type] ) ) { |
|
542 | + if (isset($this->_cached_properties[$fieldname][$cache_type])) { |
|
543 | 543 | return $this->_cached_properties[$fieldname][$cache_type]; |
544 | 544 | } |
545 | 545 | |
546 | 546 | $field_obj = $this->get_model()->field_settings_for($fieldname); |
547 | - if ( $field_obj instanceof EE_Model_Field_Base ) { |
|
547 | + if ($field_obj instanceof EE_Model_Field_Base) { |
|
548 | 548 | /** |
549 | 549 | * maybe this is EE_Datetime_Field. If so we need to make sure timezone and |
550 | 550 | * formats are correct. |
551 | 551 | */ |
552 | - if ( $field_obj instanceof EE_Datetime_Field ) { |
|
553 | - $field_obj->set_timezone( $this->_timezone ); |
|
554 | - $field_obj->set_date_format( $this->_dt_frmt, $pretty ); |
|
555 | - $field_obj->set_time_format( $this->_tm_frmt, $pretty ); |
|
552 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
553 | + $field_obj->set_timezone($this->_timezone); |
|
554 | + $field_obj->set_date_format($this->_dt_frmt, $pretty); |
|
555 | + $field_obj->set_time_format($this->_tm_frmt, $pretty); |
|
556 | 556 | } |
557 | 557 | |
558 | - if( ! isset($this->_fields[$fieldname])){ |
|
558 | + if ( ! isset($this->_fields[$fieldname])) { |
|
559 | 559 | $this->_fields[$fieldname] = NULL; |
560 | 560 | } |
561 | - $value = $pretty ? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref) : $field_obj->prepare_for_get($this->_fields[$fieldname] ); |
|
562 | - $this->_set_cached_property( $fieldname, $value, $cache_type ); |
|
561 | + $value = $pretty ? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref) : $field_obj->prepare_for_get($this->_fields[$fieldname]); |
|
562 | + $this->_set_cached_property($fieldname, $value, $cache_type); |
|
563 | 563 | return $value; |
564 | 564 | } |
565 | 565 | return FALSE; |
@@ -585,9 +585,9 @@ discard block |
||
585 | 585 | * @param string $property_name the property to remove if it exists (from the _cached_properties array) |
586 | 586 | * @return void |
587 | 587 | */ |
588 | - protected function _clear_cached_property( $property_name ) { |
|
589 | - if ( isset( $this->_cached_properties[ $property_name ] ) ) |
|
590 | - unset( $this->_cached_properties[ $property_name ] ); |
|
588 | + protected function _clear_cached_property($property_name) { |
|
589 | + if (isset($this->_cached_properties[$property_name])) |
|
590 | + unset($this->_cached_properties[$property_name]); |
|
591 | 591 | } |
592 | 592 | |
593 | 593 | |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | * @param string $model_name name of the related thing, eg 'Attendee', |
599 | 599 | * @return EE_Base_Class |
600 | 600 | */ |
601 | - protected function ensure_related_thing_is_model_obj($object_or_id,$model_name){ |
|
601 | + protected function ensure_related_thing_is_model_obj($object_or_id, $model_name) { |
|
602 | 602 | $other_model_instance = self::_get_model_instance_with_name(self::_get_model_classname($model_name), $this->_timezone); |
603 | 603 | $model_obj = $other_model_instance->ensure_is_obj($object_or_id); |
604 | 604 | return $model_obj; |
@@ -618,55 +618,55 @@ discard block |
||
618 | 618 | * @throws EE_Error |
619 | 619 | * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a relation from all |
620 | 620 | */ |
621 | - public function clear_cache($relationName, $object_to_remove_or_index_into_array = NULL, $clear_all = FALSE){ |
|
621 | + public function clear_cache($relationName, $object_to_remove_or_index_into_array = NULL, $clear_all = FALSE) { |
|
622 | 622 | $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
623 | 623 | $index_in_cache = ''; |
624 | - if( ! $relationship_to_model){ |
|
625 | - throw new EE_Error(sprintf(__("There is no relationship to %s on a %s. Cannot clear that cache",'event_espresso'),$relationName,get_class($this))); |
|
624 | + if ( ! $relationship_to_model) { |
|
625 | + throw new EE_Error(sprintf(__("There is no relationship to %s on a %s. Cannot clear that cache", 'event_espresso'), $relationName, get_class($this))); |
|
626 | 626 | } |
627 | - if($clear_all){ |
|
627 | + if ($clear_all) { |
|
628 | 628 | $obj_removed = true; |
629 | 629 | $this->_model_relations[$relationName] = null; |
630 | - }elseif($relationship_to_model instanceof EE_Belongs_To_Relation){ |
|
630 | + }elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
631 | 631 | $obj_removed = $this->_model_relations[$relationName]; |
632 | 632 | $this->_model_relations[$relationName] = null; |
633 | - }else{ |
|
634 | - if($object_to_remove_or_index_into_array instanceof EE_Base_Class && $object_to_remove_or_index_into_array->ID()){ |
|
633 | + } else { |
|
634 | + if ($object_to_remove_or_index_into_array instanceof EE_Base_Class && $object_to_remove_or_index_into_array->ID()) { |
|
635 | 635 | $index_in_cache = $object_to_remove_or_index_into_array->ID(); |
636 | - if( is_array($this->_model_relations[$relationName]) && ! isset($this->_model_relations[$relationName][$index_in_cache])){ |
|
636 | + if (is_array($this->_model_relations[$relationName]) && ! isset($this->_model_relations[$relationName][$index_in_cache])) { |
|
637 | 637 | $index_found_at = NULL; |
638 | 638 | //find this object in the array even though it has a different key |
639 | - foreach($this->_model_relations[$relationName] as $index=>$obj){ |
|
640 | - if( $obj instanceof EE_Base_Class && ( $obj == $object_to_remove_or_index_into_array || $obj->ID() == $object_to_remove_or_index_into_array->ID() )) { |
|
639 | + foreach ($this->_model_relations[$relationName] as $index=>$obj) { |
|
640 | + if ($obj instanceof EE_Base_Class && ($obj == $object_to_remove_or_index_into_array || $obj->ID() == $object_to_remove_or_index_into_array->ID())) { |
|
641 | 641 | $index_found_at = $index; |
642 | 642 | break; |
643 | 643 | } |
644 | 644 | } |
645 | - if($index_found_at){ |
|
645 | + if ($index_found_at) { |
|
646 | 646 | $index_in_cache = $index_found_at; |
647 | - }else{ |
|
647 | + } else { |
|
648 | 648 | //it wasn't found. huh. well obviously it doesn't need to be removed from teh cache |
649 | 649 | //if it wasn't in it to begin with. So we're done |
650 | 650 | return $object_to_remove_or_index_into_array; |
651 | 651 | } |
652 | 652 | } |
653 | - }elseif($object_to_remove_or_index_into_array instanceof EE_Base_Class){ |
|
653 | + }elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) { |
|
654 | 654 | //so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it! |
655 | - foreach($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want){ |
|
656 | - if($potentially_obj_we_want == $object_to_remove_or_index_into_array){ |
|
655 | + foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) { |
|
656 | + if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) { |
|
657 | 657 | $index_in_cache = $index; |
658 | 658 | } |
659 | 659 | } |
660 | - }else{ |
|
660 | + } else { |
|
661 | 661 | $index_in_cache = $object_to_remove_or_index_into_array; |
662 | 662 | } |
663 | 663 | //supposedly we've found it. But it could just be that the client code |
664 | 664 | //provided a bad index/object |
665 | - if(isset( $this->_model_relations[$relationName]) && |
|
666 | - isset( $this->_model_relations[$relationName][$index_in_cache])){ |
|
665 | + if (isset($this->_model_relations[$relationName]) && |
|
666 | + isset($this->_model_relations[$relationName][$index_in_cache])) { |
|
667 | 667 | $obj_removed = $this->_model_relations[$relationName][$index_in_cache]; |
668 | 668 | unset($this->_model_relations[$relationName][$index_in_cache]); |
669 | - }else{ |
|
669 | + } else { |
|
670 | 670 | //that thing was never cached anyways. |
671 | 671 | $obj_removed = NULL; |
672 | 672 | } |
@@ -685,24 +685,24 @@ discard block |
||
685 | 685 | * @param string $current_cache_id - the ID that was used when originally caching the object |
686 | 686 | * @return boolean TRUE on success, FALSE on fail |
687 | 687 | */ |
688 | - public function update_cache_after_object_save( $relationName, EE_Base_Class $newly_saved_object, $current_cache_id = '') { |
|
688 | + public function update_cache_after_object_save($relationName, EE_Base_Class $newly_saved_object, $current_cache_id = '') { |
|
689 | 689 | // verify that incoming object is of the correct type |
690 | - $obj_class = 'EE_' . $relationName; |
|
691 | - if ( $newly_saved_object instanceof $obj_class ) { |
|
690 | + $obj_class = 'EE_'.$relationName; |
|
691 | + if ($newly_saved_object instanceof $obj_class) { |
|
692 | 692 | /* @type EE_Base_Class $newly_saved_object*/ |
693 | 693 | // now get the type of relation |
694 | - $relationship_to_model = $this->get_model()->related_settings_for( $relationName ); |
|
694 | + $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
|
695 | 695 | // if this is a 1:1 relationship |
696 | - if( $relationship_to_model instanceof EE_Belongs_To_Relation ) { |
|
696 | + if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
697 | 697 | // then just replace the cached object with the newly saved object |
698 | 698 | $this->_model_relations[$relationName] = $newly_saved_object; |
699 | 699 | return TRUE; |
700 | 700 | // or if it's some kind of sordid feral polyamorous relationship... |
701 | - } elseif ( is_array( $this->_model_relations[$relationName] ) && isset( $this->_model_relations[$relationName][ $current_cache_id ] )) { |
|
701 | + } elseif (is_array($this->_model_relations[$relationName]) && isset($this->_model_relations[$relationName][$current_cache_id])) { |
|
702 | 702 | // then remove the current cached item |
703 | - unset( $this->_model_relations[$relationName][ $current_cache_id ] ); |
|
703 | + unset($this->_model_relations[$relationName][$current_cache_id]); |
|
704 | 704 | // and cache the newly saved object using it's new ID |
705 | - $this->_model_relations[$relationName][ $newly_saved_object->ID() ] = $newly_saved_object; |
|
705 | + $this->_model_relations[$relationName][$newly_saved_object->ID()] = $newly_saved_object; |
|
706 | 706 | return TRUE; |
707 | 707 | } |
708 | 708 | } |
@@ -718,11 +718,11 @@ discard block |
||
718 | 718 | * @param string $relationName |
719 | 719 | * @return EE_Base_Class |
720 | 720 | */ |
721 | - public function get_one_from_cache($relationName){ |
|
722 | - $cached_array_or_object = $this->_model_relations[$relationName]; |
|
723 | - if(is_array($cached_array_or_object)){ |
|
721 | + public function get_one_from_cache($relationName) { |
|
722 | + $cached_array_or_object = $this->_model_relations[$relationName]; |
|
723 | + if (is_array($cached_array_or_object)) { |
|
724 | 724 | return array_shift($cached_array_or_object); |
725 | - }else{ |
|
725 | + } else { |
|
726 | 726 | return $cached_array_or_object; |
727 | 727 | } |
728 | 728 | } |
@@ -737,14 +737,14 @@ discard block |
||
737 | 737 | * @throws \EE_Error |
738 | 738 | * @return EE_Base_Class[] NOT necessarily indexed by primary keys |
739 | 739 | */ |
740 | - public function get_all_from_cache($relationName){ |
|
741 | - $cached_array_or_object = $this->_model_relations[$relationName]; |
|
742 | - if(is_array($cached_array_or_object)){ |
|
740 | + public function get_all_from_cache($relationName) { |
|
741 | + $cached_array_or_object = $this->_model_relations[$relationName]; |
|
742 | + if (is_array($cached_array_or_object)) { |
|
743 | 743 | $objects = $cached_array_or_object; |
744 | - }elseif($cached_array_or_object){ |
|
744 | + }elseif ($cached_array_or_object) { |
|
745 | 745 | //if the result is not an array, but exists, make it an array |
746 | 746 | $objects = array($cached_array_or_object); |
747 | - }else{ |
|
747 | + } else { |
|
748 | 748 | //if nothing was found, return an empty array |
749 | 749 | $objects = array(); |
750 | 750 | } |
@@ -752,15 +752,15 @@ discard block |
||
752 | 752 | //basically, if this model object was stored in the session, and these cached model objects |
753 | 753 | //already have IDs, let's make sure they're in their model's entity mapper |
754 | 754 | //otherwise we will have duplicates next time we call EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() ); |
755 | - foreach( $objects as $model_object ){ |
|
756 | - $model = EE_Registry::instance()->load_model( $relationName ); |
|
757 | - if( $model instanceof EEM_Base && $model_object instanceof EE_Base_Class ){ |
|
755 | + foreach ($objects as $model_object) { |
|
756 | + $model = EE_Registry::instance()->load_model($relationName); |
|
757 | + if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) { |
|
758 | 758 | //ensure its in the map if it has an ID; otherwise it will be added to the map when its saved |
759 | - if( $model_object->ID() ){ |
|
760 | - $model->add_to_entity_map( $model_object ); |
|
759 | + if ($model_object->ID()) { |
|
760 | + $model->add_to_entity_map($model_object); |
|
761 | 761 | } |
762 | - }else{ |
|
763 | - throw new EE_Error( sprintf( __( 'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object', 'event_espresso' ), $relationName, gettype( $model_object ))); |
|
762 | + } else { |
|
763 | + throw new EE_Error(sprintf(__('Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object', 'event_espresso'), $relationName, gettype($model_object))); |
|
764 | 764 | } |
765 | 765 | } |
766 | 766 | return $objects; |
@@ -779,13 +779,13 @@ discard block |
||
779 | 779 | * |
780 | 780 | * @return array|EE_Base_Class[] |
781 | 781 | */ |
782 | - public function next_x( $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) { |
|
783 | - $field = empty( $field_to_order_by ) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
784 | - $current_value = ! empty( $field ) ? $this->get( $field ) : null; |
|
785 | - if ( empty( $field ) || empty( $current_value ) ) { |
|
782 | + public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) { |
|
783 | + $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
784 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
785 | + if (empty($field) || empty($current_value)) { |
|
786 | 786 | return array(); |
787 | 787 | } |
788 | - return $this->get_model()->next_x( $current_value, $field, $limit, $query_params, $columns_to_select ); |
|
788 | + return $this->get_model()->next_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
789 | 789 | } |
790 | 790 | |
791 | 791 | |
@@ -804,13 +804,13 @@ discard block |
||
804 | 804 | * |
805 | 805 | * @return array|EE_Base_Class[] |
806 | 806 | */ |
807 | - public function previous_x( $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) { |
|
808 | - $field = empty( $field_to_order_by ) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
809 | - $current_value = ! empty( $field ) ? $this->get( $field ) : null; |
|
810 | - if ( empty( $field ) || empty( $current_value ) ) { |
|
807 | + public function previous_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) { |
|
808 | + $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
809 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
810 | + if (empty($field) || empty($current_value)) { |
|
811 | 811 | return array(); |
812 | 812 | } |
813 | - return $this->get_model()->previous_x( $current_value, $field, $limit, $query_params, $columns_to_select ); |
|
813 | + return $this->get_model()->previous_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
814 | 814 | } |
815 | 815 | |
816 | 816 | |
@@ -828,13 +828,13 @@ discard block |
||
828 | 828 | * |
829 | 829 | * @return array|EE_Base_Class |
830 | 830 | */ |
831 | - public function next( $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) { |
|
832 | - $field = empty( $field_to_order_by ) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
833 | - $current_value = ! empty( $field ) ? $this->get( $field ) : null; |
|
834 | - if ( empty( $field ) || empty( $current_value ) ) { |
|
831 | + public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null) { |
|
832 | + $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
833 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
834 | + if (empty($field) || empty($current_value)) { |
|
835 | 835 | return array(); |
836 | 836 | } |
837 | - return $this->get_model()->next( $current_value, $field, $query_params, $columns_to_select ); |
|
837 | + return $this->get_model()->next($current_value, $field, $query_params, $columns_to_select); |
|
838 | 838 | } |
839 | 839 | |
840 | 840 | |
@@ -853,13 +853,13 @@ discard block |
||
853 | 853 | * |
854 | 854 | * @return array|EE_Base_Class |
855 | 855 | */ |
856 | - public function previous( $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) { |
|
857 | - $field = empty( $field_to_order_by ) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
858 | - $current_value = ! empty( $field ) ? $this->get( $field ) : null; |
|
859 | - if ( empty( $field ) || empty( $current_value ) ) { |
|
856 | + public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null) { |
|
857 | + $field = empty($field_to_order_by) && $this->get_model()->has_primary_key_field() ? $this->get_model()->get_primary_key_field()->get_name() : $field_to_order_by; |
|
858 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
859 | + if (empty($field) || empty($current_value)) { |
|
860 | 860 | return array(); |
861 | 861 | } |
862 | - return $this->get_model()->previous( $current_value, $field, $query_params, $columns_to_select ); |
|
862 | + return $this->get_model()->previous($current_value, $field, $query_params, $columns_to_select); |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | |
@@ -873,25 +873,25 @@ discard block |
||
873 | 873 | * @param string $field_name |
874 | 874 | * @param mixed $field_value_from_db |
875 | 875 | */ |
876 | - public function set_from_db($field_name,$field_value_from_db){ |
|
876 | + public function set_from_db($field_name, $field_value_from_db) { |
|
877 | 877 | $field_obj = $this->get_model()->field_settings_for($field_name); |
878 | - if ( $field_obj instanceof EE_Model_Field_Base ) { |
|
878 | + if ($field_obj instanceof EE_Model_Field_Base) { |
|
879 | 879 | //you would think the DB has no NULLs for non-null label fields right? wrong! |
880 | 880 | //eg, a CPT model object could have an entry in the posts table, but no |
881 | 881 | //entry in the meta table. Meaning that all its columns in the meta table |
882 | 882 | //are null! yikes! so when we find one like that, use defaults for its meta columns |
883 | - if($field_value_from_db === NULL ){ |
|
884 | - if( $field_obj->is_nullable()){ |
|
883 | + if ($field_value_from_db === NULL) { |
|
884 | + if ($field_obj->is_nullable()) { |
|
885 | 885 | //if the field allows nulls, then let it be null |
886 | 886 | $field_value = NULL; |
887 | - }else{ |
|
887 | + } else { |
|
888 | 888 | $field_value = $field_obj->get_default_value(); |
889 | 889 | } |
890 | - }else{ |
|
891 | - $field_value = $field_obj->prepare_for_set_from_db( $field_value_from_db ); |
|
890 | + } else { |
|
891 | + $field_value = $field_obj->prepare_for_set_from_db($field_value_from_db); |
|
892 | 892 | } |
893 | 893 | $this->_fields[$field_name] = $field_value; |
894 | - $this->_clear_cached_property( $field_name ); |
|
894 | + $this->_clear_cached_property($field_name); |
|
895 | 895 | } |
896 | 896 | } |
897 | 897 | |
@@ -903,8 +903,8 @@ discard block |
||
903 | 903 | * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property (in cases where the same property may be used for different outputs - i.e. datetime, money etc.) |
904 | 904 | * @return boolean |
905 | 905 | */ |
906 | - public function get($field_name, $extra_cache_ref = NULL ){ |
|
907 | - return $this->_get_cached_property( $field_name, FALSE, $extra_cache_ref ); |
|
906 | + public function get($field_name, $extra_cache_ref = NULL) { |
|
907 | + return $this->_get_cached_property($field_name, FALSE, $extra_cache_ref); |
|
908 | 908 | } |
909 | 909 | |
910 | 910 | |
@@ -934,11 +934,11 @@ discard block |
||
934 | 934 | * just null is returned (because that indicates that likely |
935 | 935 | * this field is nullable). |
936 | 936 | */ |
937 | - public function get_DateTime_object( $field_name ) { |
|
938 | - $field_settings = $this->get_model()->field_settings_for( $field_name ); |
|
937 | + public function get_DateTime_object($field_name) { |
|
938 | + $field_settings = $this->get_model()->field_settings_for($field_name); |
|
939 | 939 | |
940 | - if ( ! $field_settings instanceof EE_Datetime_Field ) { |
|
941 | - EE_Error::add_error( sprintf( __('The field %s is not an EE_Datetime_Field field. There is no DateTime object stored on this field type.', 'event_espresso' ), $field_name ), __FILE__, __FUNCTION__, __LINE__ ); |
|
940 | + if ( ! $field_settings instanceof EE_Datetime_Field) { |
|
941 | + EE_Error::add_error(sprintf(__('The field %s is not an EE_Datetime_Field field. There is no DateTime object stored on this field type.', 'event_espresso'), $field_name), __FILE__, __FUNCTION__, __LINE__); |
|
942 | 942 | return false; |
943 | 943 | } |
944 | 944 | |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property (in cases where the same property may be used for different outputs - i.e. datetime, money etc.) |
955 | 955 | * @return void |
956 | 956 | */ |
957 | - public function e($field_name, $extra_cache_ref = NULL){ |
|
957 | + public function e($field_name, $extra_cache_ref = NULL) { |
|
958 | 958 | echo $this->get_pretty($field_name, $extra_cache_ref); |
959 | 959 | } |
960 | 960 | /** |
@@ -963,8 +963,8 @@ discard block |
||
963 | 963 | * @param string $field_name |
964 | 964 | * @return void |
965 | 965 | */ |
966 | - public function f($field_name){ |
|
967 | - $this->e($field_name,'form_input'); |
|
966 | + public function f($field_name) { |
|
967 | + $this->e($field_name, 'form_input'); |
|
968 | 968 | } |
969 | 969 | |
970 | 970 | /** |
@@ -973,8 +973,8 @@ discard block |
||
973 | 973 | * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property (in cases where the same property may be used for different outputs - i.e. datetime, money etc.) |
974 | 974 | * @return mixed |
975 | 975 | */ |
976 | - public function get_pretty($field_name, $extra_cache_ref = NULL){ |
|
977 | - return $this->_get_cached_property( $field_name, TRUE, $extra_cache_ref ); |
|
976 | + public function get_pretty($field_name, $extra_cache_ref = NULL) { |
|
977 | + return $this->_get_cached_property($field_name, TRUE, $extra_cache_ref); |
|
978 | 978 | } |
979 | 979 | |
980 | 980 | |
@@ -991,37 +991,37 @@ discard block |
||
991 | 991 | * @param boolean $echo Whether the dtt is echoing using pretty echoing or just returned using vanilla get |
992 | 992 | * @return void | string | bool | EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown if field is not a valid dtt field, or void if echoing |
993 | 993 | */ |
994 | - protected function _get_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL, $date_or_time = NULL, $echo = FALSE ) { |
|
994 | + protected function _get_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL, $date_or_time = NULL, $echo = FALSE) { |
|
995 | 995 | |
996 | - $in_dt_frmt = empty($dt_frmt) ? $this->_dt_frmt : $dt_frmt; |
|
996 | + $in_dt_frmt = empty($dt_frmt) ? $this->_dt_frmt : $dt_frmt; |
|
997 | 997 | $in_tm_frmt = empty($tm_frmt) ? $this->_tm_frmt : $tm_frmt; |
998 | 998 | |
999 | 999 | //validate field for datetime and returns field settings if valid. |
1000 | - $field = $this->_get_dtt_field_settings( $field_name ); |
|
1000 | + $field = $this->_get_dtt_field_settings($field_name); |
|
1001 | 1001 | |
1002 | 1002 | //clear cached property if either formats are not null. |
1003 | - if( $dt_frmt !== null || $tm_frmt !== null ) { |
|
1004 | - $this->_clear_cached_property( $field_name ); |
|
1003 | + if ($dt_frmt !== null || $tm_frmt !== null) { |
|
1004 | + $this->_clear_cached_property($field_name); |
|
1005 | 1005 | //reset format properties because they are used in get() |
1006 | 1006 | $this->_dt_frmt = $in_dt_frmt; |
1007 | 1007 | $this->_tm_frmt = $in_tm_frmt; |
1008 | 1008 | } |
1009 | 1009 | |
1010 | - if ( $echo ) |
|
1011 | - $field->set_pretty_date_format( $in_dt_frmt ); |
|
1010 | + if ($echo) |
|
1011 | + $field->set_pretty_date_format($in_dt_frmt); |
|
1012 | 1012 | else |
1013 | - $field->set_date_format( $in_dt_frmt ); |
|
1013 | + $field->set_date_format($in_dt_frmt); |
|
1014 | 1014 | |
1015 | - if ( $echo ) |
|
1016 | - $field->set_pretty_time_format( $in_tm_frmt ); |
|
1015 | + if ($echo) |
|
1016 | + $field->set_pretty_time_format($in_tm_frmt); |
|
1017 | 1017 | else |
1018 | - $field->set_time_format( $in_tm_frmt ); |
|
1018 | + $field->set_time_format($in_tm_frmt); |
|
1019 | 1019 | |
1020 | 1020 | //set timezone in field object |
1021 | - $field->set_timezone( $this->_timezone ); |
|
1021 | + $field->set_timezone($this->_timezone); |
|
1022 | 1022 | |
1023 | 1023 | //set the output returned |
1024 | - switch ( $date_or_time ) { |
|
1024 | + switch ($date_or_time) { |
|
1025 | 1025 | |
1026 | 1026 | case 'D' : |
1027 | 1027 | $field->set_date_time_output('date'); |
@@ -1036,11 +1036,11 @@ discard block |
||
1036 | 1036 | } |
1037 | 1037 | |
1038 | 1038 | |
1039 | - if ( $echo ) { |
|
1040 | - $this->e( $field_name, $date_or_time ); |
|
1039 | + if ($echo) { |
|
1040 | + $this->e($field_name, $date_or_time); |
|
1041 | 1041 | return ''; |
1042 | 1042 | } |
1043 | - return $this->get( $field_name, $date_or_time ); |
|
1043 | + return $this->get($field_name, $date_or_time); |
|
1044 | 1044 | } |
1045 | 1045 | |
1046 | 1046 | |
@@ -1050,8 +1050,8 @@ discard block |
||
1050 | 1050 | * @param string $format format for the date returned (if NULL we use default in dt_frmt property) |
1051 | 1051 | * @return string datetime value formatted |
1052 | 1052 | */ |
1053 | - public function get_date( $field_name, $format = NULL ) { |
|
1054 | - return $this->_get_datetime( $field_name, $format, NULL, 'D' ); |
|
1053 | + public function get_date($field_name, $format = NULL) { |
|
1054 | + return $this->_get_datetime($field_name, $format, NULL, 'D'); |
|
1055 | 1055 | } |
1056 | 1056 | |
1057 | 1057 | |
@@ -1060,8 +1060,8 @@ discard block |
||
1060 | 1060 | * @param $field_name |
1061 | 1061 | * @param null $format |
1062 | 1062 | */ |
1063 | - public function e_date( $field_name, $format = NULL ) { |
|
1064 | - $this->_get_datetime( $field_name, $format, NULL, 'D', TRUE ); |
|
1063 | + public function e_date($field_name, $format = NULL) { |
|
1064 | + $this->_get_datetime($field_name, $format, NULL, 'D', TRUE); |
|
1065 | 1065 | } |
1066 | 1066 | |
1067 | 1067 | |
@@ -1071,8 +1071,8 @@ discard block |
||
1071 | 1071 | * @param string $format format for the time returned ( if NULL we use default in tm_frmt property) |
1072 | 1072 | * @return string datetime value formatted |
1073 | 1073 | */ |
1074 | - public function get_time( $field_name, $format = NULL ) { |
|
1075 | - return $this->_get_datetime( $field_name, NULL, $format, 'T' ); |
|
1074 | + public function get_time($field_name, $format = NULL) { |
|
1075 | + return $this->_get_datetime($field_name, NULL, $format, 'T'); |
|
1076 | 1076 | } |
1077 | 1077 | |
1078 | 1078 | |
@@ -1081,8 +1081,8 @@ discard block |
||
1081 | 1081 | * @param $field_name |
1082 | 1082 | * @param null $format |
1083 | 1083 | */ |
1084 | - public function e_time( $field_name, $format = NULL ) { |
|
1085 | - $this->_get_datetime( $field_name, NULL, $format, 'T', TRUE ); |
|
1084 | + public function e_time($field_name, $format = NULL) { |
|
1085 | + $this->_get_datetime($field_name, NULL, $format, 'T', TRUE); |
|
1086 | 1086 | } |
1087 | 1087 | |
1088 | 1088 | |
@@ -1095,8 +1095,8 @@ discard block |
||
1095 | 1095 | * @param string $tm_frmt format for the time returned (if NULL we use default in tm_frmt property) |
1096 | 1096 | * @return string datetime value formatted |
1097 | 1097 | */ |
1098 | - public function get_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL ) { |
|
1099 | - return $this->_get_datetime( $field_name, $dt_frmt, $tm_frmt ); |
|
1098 | + public function get_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL) { |
|
1099 | + return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt); |
|
1100 | 1100 | } |
1101 | 1101 | |
1102 | 1102 | |
@@ -1106,8 +1106,8 @@ discard block |
||
1106 | 1106 | * @param null $dt_frmt |
1107 | 1107 | * @param null $tm_frmt |
1108 | 1108 | */ |
1109 | - public function e_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL ) { |
|
1110 | - $this->_get_datetime( $field_name, $dt_frmt, $tm_frmt, NULL, TRUE); |
|
1109 | + public function e_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL) { |
|
1110 | + $this->_get_datetime($field_name, $dt_frmt, $tm_frmt, NULL, TRUE); |
|
1111 | 1111 | } |
1112 | 1112 | |
1113 | 1113 | |
@@ -1122,10 +1122,10 @@ discard block |
||
1122 | 1122 | * @return string Date and time string in set locale or false if no field exists for the given |
1123 | 1123 | * field name. |
1124 | 1124 | */ |
1125 | - public function get_i18n_datetime( $field_name, $format = NULL ) { |
|
1126 | - EE_Registry::instance()->load_helper( 'DTT_Helper' ); |
|
1127 | - $format = empty( $format ) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format; |
|
1128 | - return date_i18n( $format, EEH_DTT_Helper::get_timestamp_with_offset( $this->get_raw( $field_name ), $this->_timezone ) ); |
|
1125 | + public function get_i18n_datetime($field_name, $format = NULL) { |
|
1126 | + EE_Registry::instance()->load_helper('DTT_Helper'); |
|
1127 | + $format = empty($format) ? $this->_dt_frmt.' '.$this->_tm_frmt : $format; |
|
1128 | + return date_i18n($format, EEH_DTT_Helper::get_timestamp_with_offset($this->get_raw($field_name), $this->_timezone)); |
|
1129 | 1129 | } |
1130 | 1130 | |
1131 | 1131 | |
@@ -1137,14 +1137,14 @@ discard block |
||
1137 | 1137 | * @throws EE_Error |
1138 | 1138 | * @return EE_Datetime_Field |
1139 | 1139 | */ |
1140 | - protected function _get_dtt_field_settings( $field_name ) { |
|
1140 | + protected function _get_dtt_field_settings($field_name) { |
|
1141 | 1141 | $field = $this->get_model()->field_settings_for($field_name); |
1142 | 1142 | |
1143 | 1143 | //check if field is dtt |
1144 | - if ( $field instanceof EE_Datetime_Field ) { |
|
1144 | + if ($field instanceof EE_Datetime_Field) { |
|
1145 | 1145 | return $field; |
1146 | 1146 | } else { |
1147 | - throw new EE_Error( sprintf( __('The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field. Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor', 'event_espresso'), $field_name, self::_get_model_classname( get_class($this) ) ) ); |
|
1147 | + throw new EE_Error(sprintf(__('The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field. Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor', 'event_espresso'), $field_name, self::_get_model_classname(get_class($this)))); |
|
1148 | 1148 | } |
1149 | 1149 | } |
1150 | 1150 | |
@@ -1165,8 +1165,8 @@ discard block |
||
1165 | 1165 | * @param string|Datetime $time a valid time string for php datetime functions (or DateTime object) |
1166 | 1166 | * @param string $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field) |
1167 | 1167 | */ |
1168 | - protected function _set_time_for( $time, $fieldname ) { |
|
1169 | - $this->_set_date_time( 'T', $time, $fieldname ); |
|
1168 | + protected function _set_time_for($time, $fieldname) { |
|
1169 | + $this->_set_date_time('T', $time, $fieldname); |
|
1170 | 1170 | } |
1171 | 1171 | |
1172 | 1172 | |
@@ -1180,8 +1180,8 @@ discard block |
||
1180 | 1180 | * @param string|DateTime $date a valid date string for php datetime functions ( or DateTime object) |
1181 | 1181 | * @param string $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field) |
1182 | 1182 | */ |
1183 | - protected function _set_date_for( $date, $fieldname ) { |
|
1184 | - $this->_set_date_time( 'D', $date, $fieldname ); |
|
1183 | + protected function _set_date_for($date, $fieldname) { |
|
1184 | + $this->_set_date_time('D', $date, $fieldname); |
|
1185 | 1185 | } |
1186 | 1186 | |
1187 | 1187 | |
@@ -1197,21 +1197,21 @@ discard block |
||
1197 | 1197 | * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object) |
1198 | 1198 | * @param string $fieldname the name of the field the date OR time is being set on (must match a EE_Datetime_Field property) |
1199 | 1199 | */ |
1200 | - protected function _set_date_time( $what = 'T', $datetime_value, $fieldname ) { |
|
1201 | - $field = $this->_get_dtt_field_settings( $fieldname ); |
|
1202 | - $field->set_timezone( $this->_timezone ); |
|
1203 | - $field->set_date_format( $this->_dt_frmt ); |
|
1204 | - $field->set_time_format( $this->_tm_frmt ); |
|
1200 | + protected function _set_date_time($what = 'T', $datetime_value, $fieldname) { |
|
1201 | + $field = $this->_get_dtt_field_settings($fieldname); |
|
1202 | + $field->set_timezone($this->_timezone); |
|
1203 | + $field->set_date_format($this->_dt_frmt); |
|
1204 | + $field->set_time_format($this->_tm_frmt); |
|
1205 | 1205 | |
1206 | - switch ( $what ) { |
|
1206 | + switch ($what) { |
|
1207 | 1207 | case 'T' : |
1208 | - $this->_fields[$fieldname] = $field->prepare_for_set_with_new_time( $datetime_value, $this->_fields[$fieldname] ); |
|
1208 | + $this->_fields[$fieldname] = $field->prepare_for_set_with_new_time($datetime_value, $this->_fields[$fieldname]); |
|
1209 | 1209 | break; |
1210 | 1210 | case 'D' : |
1211 | - $this->_fields[$fieldname] = $field->prepare_for_set_with_new_date( $datetime_value, $this->_fields[$fieldname] ); |
|
1211 | + $this->_fields[$fieldname] = $field->prepare_for_set_with_new_date($datetime_value, $this->_fields[$fieldname]); |
|
1212 | 1212 | break; |
1213 | 1213 | case 'B' : |
1214 | - $this->_fields[$fieldname] = $field->prepare_for_set( $datetime_value ); |
|
1214 | + $this->_fields[$fieldname] = $field->prepare_for_set($datetime_value); |
|
1215 | 1215 | break; |
1216 | 1216 | } |
1217 | 1217 | |
@@ -1234,25 +1234,25 @@ discard block |
||
1234 | 1234 | * @throws EE_Error |
1235 | 1235 | * @return string timestamp |
1236 | 1236 | */ |
1237 | - public function display_in_my_timezone( $field_name, $callback = 'get_datetime', $args = NULL, $prepend = '', $append = '' ) { |
|
1237 | + public function display_in_my_timezone($field_name, $callback = 'get_datetime', $args = NULL, $prepend = '', $append = '') { |
|
1238 | 1238 | EE_Registry::instance()->load_helper('DTT_Helper'); |
1239 | 1239 | $timezone = EEH_DTT_Helper::get_timezone(); |
1240 | 1240 | |
1241 | - if ( $timezone == $this->_timezone ) |
|
1241 | + if ($timezone == $this->_timezone) |
|
1242 | 1242 | return ''; |
1243 | 1243 | |
1244 | 1244 | $original_timezone = $this->_timezone; |
1245 | - $this->set_timezone( $timezone ); |
|
1245 | + $this->set_timezone($timezone); |
|
1246 | 1246 | |
1247 | 1247 | $fn = (array) $field_name; |
1248 | - $args = array_merge( $fn, (array) $args ); |
|
1248 | + $args = array_merge($fn, (array) $args); |
|
1249 | 1249 | |
1250 | - if ( !method_exists( $this, $callback ) ) |
|
1251 | - throw new EE_Error(sprintf( __('The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', 'event_espresso'), $callback ) ); |
|
1250 | + if ( ! method_exists($this, $callback)) |
|
1251 | + throw new EE_Error(sprintf(__('The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', 'event_espresso'), $callback)); |
|
1252 | 1252 | $args = (array) $args; |
1253 | - $return = $prepend . call_user_func_array( array( $this, $callback ), $args ) . $append; |
|
1253 | + $return = $prepend.call_user_func_array(array($this, $callback), $args).$append; |
|
1254 | 1254 | |
1255 | - $this->set_timezone( $original_timezone ); |
|
1255 | + $this->set_timezone($original_timezone); |
|
1256 | 1256 | return $return; |
1257 | 1257 | } |
1258 | 1258 | |
@@ -1263,20 +1263,20 @@ discard block |
||
1263 | 1263 | * Deletes this model object. That may mean just 'soft deleting' it though. |
1264 | 1264 | * @return boolean | int |
1265 | 1265 | */ |
1266 | - public function delete(){ |
|
1266 | + public function delete() { |
|
1267 | 1267 | /** |
1268 | 1268 | * Called just before deleting a model object |
1269 | 1269 | * |
1270 | 1270 | * @param EE_Base_Class $model_object about to be 'deleted' |
1271 | 1271 | */ |
1272 | - do_action( 'AHEE__EE_Base_Class__delete__before', $this ); |
|
1273 | - $result = $this->get_model()->delete_by_ID( $this->ID() ); |
|
1272 | + do_action('AHEE__EE_Base_Class__delete__before', $this); |
|
1273 | + $result = $this->get_model()->delete_by_ID($this->ID()); |
|
1274 | 1274 | /** |
1275 | 1275 | * Called just after deleting a model object |
1276 | 1276 | * @param EE_Base_Class $model_object that was just 'deleted' |
1277 | 1277 | * @param boolean $result |
1278 | 1278 | */ |
1279 | - do_action( 'AHEE__EE_Base_Class__delete__end', $this, $result ); |
|
1279 | + do_action('AHEE__EE_Base_Class__delete__end', $this, $result); |
|
1280 | 1280 | return $result; |
1281 | 1281 | } |
1282 | 1282 | |
@@ -1286,11 +1286,11 @@ discard block |
||
1286 | 1286 | * Deletes this model object permanently from db (but keep in mind related models my block the delete and return an error) |
1287 | 1287 | * @return bool |
1288 | 1288 | */ |
1289 | - public function delete_permanently(){ |
|
1290 | - $model=$this->get_model(); |
|
1291 | - if($model instanceof EEM_Soft_Delete_Base){ |
|
1292 | - $result=$model->delete_permanently_by_ID($this->ID()); |
|
1293 | - }else{ |
|
1289 | + public function delete_permanently() { |
|
1290 | + $model = $this->get_model(); |
|
1291 | + if ($model instanceof EEM_Soft_Delete_Base) { |
|
1292 | + $result = $model->delete_permanently_by_ID($this->ID()); |
|
1293 | + } else { |
|
1294 | 1294 | $result = $this->delete(); |
1295 | 1295 | } |
1296 | 1296 | return $result ? true : false; |
@@ -1309,17 +1309,17 @@ discard block |
||
1309 | 1309 | * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object |
1310 | 1310 | * isn't allowed to persist (as determined by EE_Base_Class::allow_persist()) |
1311 | 1311 | */ |
1312 | - public function save($set_cols_n_values=array()) { |
|
1312 | + public function save($set_cols_n_values = array()) { |
|
1313 | 1313 | /** |
1314 | 1314 | * Filters the fields we're about to save on the model object |
1315 | 1315 | * |
1316 | 1316 | * @param array $set_cols_n_values |
1317 | 1317 | * @param EE_Base_Class $model_object |
1318 | 1318 | */ |
1319 | - $set_cols_n_values = apply_filters( 'FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values, $this ); |
|
1319 | + $set_cols_n_values = apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values, $this); |
|
1320 | 1320 | //set attributes as provided in $set_cols_n_values |
1321 | - foreach($set_cols_n_values as $column=>$value){ |
|
1322 | - $this->set($column,$value); |
|
1321 | + foreach ($set_cols_n_values as $column=>$value) { |
|
1322 | + $this->set($column, $value); |
|
1323 | 1323 | } |
1324 | 1324 | /** |
1325 | 1325 | * Saving a model object. |
@@ -1327,8 +1327,8 @@ discard block |
||
1327 | 1327 | * Before we perform a save, this action is fired. |
1328 | 1328 | * @param EE_Base_Class $model_object the model object about to be saved. |
1329 | 1329 | */ |
1330 | - do_action( 'AHEE__EE_Base_Class__save__begin', $this ); |
|
1331 | - if( ! $this->allow_persist() ) { |
|
1330 | + do_action('AHEE__EE_Base_Class__save__begin', $this); |
|
1331 | + if ( ! $this->allow_persist()) { |
|
1332 | 1332 | return 0; |
1333 | 1333 | } |
1334 | 1334 | //now get current attribute values |
@@ -1338,61 +1338,61 @@ discard block |
||
1338 | 1338 | $old_assumption_concerning_value_preparation = $this->get_model()->get_assumption_concerning_values_already_prepared_by_model_object(); |
1339 | 1339 | $this->get_model()->assume_values_already_prepared_by_model_object(true); |
1340 | 1340 | //does this model have an autoincrement PK? |
1341 | - if($this->get_model()->has_primary_key_field()){ |
|
1342 | - if($this->get_model()->get_primary_key_field()->is_auto_increment()){ |
|
1341 | + if ($this->get_model()->has_primary_key_field()) { |
|
1342 | + if ($this->get_model()->get_primary_key_field()->is_auto_increment()) { |
|
1343 | 1343 | //ok check if it's set, if so: update; if not, insert |
1344 | - if ( ! empty( $save_cols_n_values[self::_get_primary_key_name( get_class($this) )] ) ){ |
|
1345 | - $results = $this->get_model()->update_by_ID ( $save_cols_n_values, $this->ID() ); |
|
1344 | + if ( ! empty($save_cols_n_values[self::_get_primary_key_name(get_class($this))])) { |
|
1345 | + $results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID()); |
|
1346 | 1346 | } else { |
1347 | - unset($save_cols_n_values[self::_get_primary_key_name( get_class( $this) )]); |
|
1348 | - $results = $this->get_model()->insert( $save_cols_n_values, true); |
|
1349 | - if($results){ |
|
1347 | + unset($save_cols_n_values[self::_get_primary_key_name(get_class($this))]); |
|
1348 | + $results = $this->get_model()->insert($save_cols_n_values, true); |
|
1349 | + if ($results) { |
|
1350 | 1350 | //if successful, set the primary key |
1351 | 1351 | //but don't use the normal SET method, because it will check if |
1352 | 1352 | //an item with the same ID exists in the mapper & db, then |
1353 | 1353 | //will find it in the db (because we just added it) and THAT object |
1354 | 1354 | //will get added to the mapper before we can add this one! |
1355 | 1355 | //but if we just avoid using the SET method, all that headache can be avoided |
1356 | - $pk_field_name =self::_get_primary_key_name( get_class($this)); |
|
1356 | + $pk_field_name = self::_get_primary_key_name(get_class($this)); |
|
1357 | 1357 | $this->_fields[$pk_field_name] = $results; |
1358 | 1358 | $this->_clear_cached_property($pk_field_name); |
1359 | - $this->get_model()->add_to_entity_map( $this ); |
|
1359 | + $this->get_model()->add_to_entity_map($this); |
|
1360 | 1360 | $this->_update_cached_related_model_objs_fks(); |
1361 | 1361 | } |
1362 | 1362 | } |
1363 | - }else{//PK is NOT auto-increment |
|
1363 | + } else {//PK is NOT auto-increment |
|
1364 | 1364 | //so check if one like it already exists in the db |
1365 | - if( $this->get_model()->exists_by_ID( $this->ID() ) ){ |
|
1366 | - if( ! $this->in_entity_map() && WP_DEBUG ){ |
|
1365 | + if ($this->get_model()->exists_by_ID($this->ID())) { |
|
1366 | + if ( ! $this->in_entity_map() && WP_DEBUG) { |
|
1367 | 1367 | throw new EE_Error( |
1368 | 1368 | sprintf( |
1369 | - __( 'Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s', 'event_espresso' ), |
|
1369 | + __('Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s', 'event_espresso'), |
|
1370 | 1370 | get_class($this), |
1371 | - get_class( $this->get_model() ) . '::instance()->add_to_entity_map()', |
|
1372 | - get_class( $this->get_model() ) . '::instance()->get_one_by_ID()', |
|
1371 | + get_class($this->get_model()).'::instance()->add_to_entity_map()', |
|
1372 | + get_class($this->get_model()).'::instance()->get_one_by_ID()', |
|
1373 | 1373 | '<br />' |
1374 | 1374 | ) |
1375 | 1375 | ); |
1376 | 1376 | } |
1377 | 1377 | $results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID()); |
1378 | - }else{ |
|
1378 | + } else { |
|
1379 | 1379 | $results = $this->get_model()->insert($save_cols_n_values); |
1380 | 1380 | $this->_update_cached_related_model_objs_fks(); |
1381 | 1381 | } |
1382 | 1382 | } |
1383 | - }else{//there is NO primary key |
|
1383 | + } else {//there is NO primary key |
|
1384 | 1384 | $already_in_db = false; |
1385 | - foreach($this->get_model()->unique_indexes() as $index){ |
|
1385 | + foreach ($this->get_model()->unique_indexes() as $index) { |
|
1386 | 1386 | $uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields()); |
1387 | - if($this->get_model()->exists(array($uniqueness_where_params))){ |
|
1387 | + if ($this->get_model()->exists(array($uniqueness_where_params))) { |
|
1388 | 1388 | $already_in_db = true; |
1389 | 1389 | } |
1390 | 1390 | } |
1391 | - if( $already_in_db ){ |
|
1392 | - $combined_pk_fields_n_values = array_intersect_key( $save_cols_n_values, $this->get_model()->get_combined_primary_key_fields() ); |
|
1393 | - $results = $this->get_model()->update( $save_cols_n_values,$combined_pk_fields_n_values ); |
|
1394 | - }else{ |
|
1395 | - $results = $this->get_model()->insert( $save_cols_n_values ); |
|
1391 | + if ($already_in_db) { |
|
1392 | + $combined_pk_fields_n_values = array_intersect_key($save_cols_n_values, $this->get_model()->get_combined_primary_key_fields()); |
|
1393 | + $results = $this->get_model()->update($save_cols_n_values, $combined_pk_fields_n_values); |
|
1394 | + } else { |
|
1395 | + $results = $this->get_model()->insert($save_cols_n_values); |
|
1396 | 1396 | } |
1397 | 1397 | } |
1398 | 1398 | //restore the old assumption about values being prepared by the model object |
@@ -1405,7 +1405,7 @@ discard block |
||
1405 | 1405 | * @param boolean|int $results if it were updated, TRUE or FALSE; if it were newly inserted |
1406 | 1406 | * the new ID (or 0 if an error occurred and it wasn't updated) |
1407 | 1407 | */ |
1408 | - do_action( 'AHEE__EE_Base_Class__save__end', $this, $results ); |
|
1408 | + do_action('AHEE__EE_Base_Class__save__end', $this, $results); |
|
1409 | 1409 | return $results; |
1410 | 1410 | } |
1411 | 1411 | |
@@ -1417,13 +1417,13 @@ discard block |
||
1417 | 1417 | * and we want to let its cached relations with foreign keys to it know about that change. Eg: we've created a transaction but haven't saved it to the db. We also create a registration and don't save it to the DB, but we DO cache it on the transaction. Now, when we save the transaction, the registration's TXN_ID will be automatically updated, whether or not they exist in the DB (if they do, their DB records will be automatically updated) |
1418 | 1418 | * @return void |
1419 | 1419 | */ |
1420 | - protected function _update_cached_related_model_objs_fks(){ |
|
1421 | - foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ){ |
|
1422 | - if( $relation_obj instanceof EE_Has_Many_Relation ){ |
|
1423 | - foreach( $this->get_all_from_cache( $relation_name ) as $related_model_obj_in_cache) { |
|
1424 | - $fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to( $this->get_model()->get_this_model_name() ); |
|
1425 | - $related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID() ); |
|
1426 | - if( $related_model_obj_in_cache->ID() ){ |
|
1420 | + protected function _update_cached_related_model_objs_fks() { |
|
1421 | + foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) { |
|
1422 | + if ($relation_obj instanceof EE_Has_Many_Relation) { |
|
1423 | + foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) { |
|
1424 | + $fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to($this->get_model()->get_this_model_name()); |
|
1425 | + $related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID()); |
|
1426 | + if ($related_model_obj_in_cache->ID()) { |
|
1427 | 1427 | $related_model_obj_in_cache->save(); |
1428 | 1428 | } |
1429 | 1429 | } |
@@ -1439,21 +1439,21 @@ discard block |
||
1439 | 1439 | * and this object and properly setup |
1440 | 1440 | * @return int ID of new model object on save; 0 on failure+ |
1441 | 1441 | */ |
1442 | - public function save_new_cached_related_model_objs(){ |
|
1442 | + public function save_new_cached_related_model_objs() { |
|
1443 | 1443 | //make sure this has been saved |
1444 | - if( ! $this->ID()){ |
|
1444 | + if ( ! $this->ID()) { |
|
1445 | 1445 | $id = $this->save(); |
1446 | - }else{ |
|
1446 | + } else { |
|
1447 | 1447 | $id = $this->ID(); |
1448 | 1448 | } |
1449 | 1449 | //now save all the NEW cached model objects (ie they don't exist in the DB) |
1450 | - foreach($this->get_model()->relation_settings() as $relationName => $relationObj){ |
|
1450 | + foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) { |
|
1451 | 1451 | |
1452 | 1452 | |
1453 | - if($this->_model_relations[$relationName]){ |
|
1453 | + if ($this->_model_relations[$relationName]) { |
|
1454 | 1454 | //is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation) |
1455 | 1455 | //or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)? |
1456 | - if($relationObj instanceof EE_Belongs_To_Relation){ |
|
1456 | + if ($relationObj instanceof EE_Belongs_To_Relation) { |
|
1457 | 1457 | //add a relation to that relation type (which saves the appropriate thing in the process) |
1458 | 1458 | //but ONLY if it DOES NOT exist in the DB |
1459 | 1459 | /* @var $related_model_obj EE_Base_Class */ |
@@ -1462,8 +1462,8 @@ discard block |
||
1462 | 1462 | $this->_add_relation_to($related_model_obj, $relationName); |
1463 | 1463 | $related_model_obj->save_new_cached_related_model_objs(); |
1464 | 1464 | // } |
1465 | - }else{ |
|
1466 | - foreach($this->_model_relations[$relationName] as $related_model_obj){ |
|
1465 | + } else { |
|
1466 | + foreach ($this->_model_relations[$relationName] as $related_model_obj) { |
|
1467 | 1467 | //add a relation to that relation type (which saves the appropriate thing in the process) |
1468 | 1468 | //but ONLY if it DOES NOT exist in the DB |
1469 | 1469 | // if( ! $related_model_obj->ID()){ |
@@ -1484,8 +1484,8 @@ discard block |
||
1484 | 1484 | * @return \EEM_Base | \EEM_CPT_Base |
1485 | 1485 | */ |
1486 | 1486 | public function get_model() { |
1487 | - $modelName = self::_get_model_classname( get_class($this) ); |
|
1488 | - return self::_get_model_instance_with_name($modelName, $this->_timezone ); |
|
1487 | + $modelName = self::_get_model_classname(get_class($this)); |
|
1488 | + return self::_get_model_instance_with_name($modelName, $this->_timezone); |
|
1489 | 1489 | } |
1490 | 1490 | |
1491 | 1491 | |
@@ -1495,10 +1495,10 @@ discard block |
||
1495 | 1495 | * @param $classname |
1496 | 1496 | * @return mixed bool|EE_Base_Class|EEM_CPT_Base |
1497 | 1497 | */ |
1498 | - protected static function _get_object_from_entity_mapper($props_n_values, $classname){ |
|
1498 | + protected static function _get_object_from_entity_mapper($props_n_values, $classname) { |
|
1499 | 1499 | //TODO: will not work for Term_Relationships because they have no PK! |
1500 | - $primary_id_ref = self::_get_primary_key_name( $classname ); |
|
1501 | - if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) { |
|
1500 | + $primary_id_ref = self::_get_primary_key_name($classname); |
|
1501 | + if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) { |
|
1502 | 1502 | $id = $props_n_values[$primary_id_ref]; |
1503 | 1503 | return self::_get_model($classname)->get_from_entity_map($id); |
1504 | 1504 | } |
@@ -1515,24 +1515,24 @@ discard block |
||
1515 | 1515 | * @param null $timezone |
1516 | 1516 | * @return mixed (EE_Base_Class|bool) |
1517 | 1517 | */ |
1518 | - protected static function _check_for_object( $props_n_values, $classname, $timezone = NULL ) { |
|
1519 | - if( self::_get_model( $classname )->has_primary_key_field()){ |
|
1520 | - $primary_id_ref = self::_get_primary_key_name( $classname ); |
|
1518 | + protected static function _check_for_object($props_n_values, $classname, $timezone = NULL) { |
|
1519 | + if (self::_get_model($classname)->has_primary_key_field()) { |
|
1520 | + $primary_id_ref = self::_get_primary_key_name($classname); |
|
1521 | 1521 | |
1522 | - if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) { |
|
1523 | - $existing = self::_get_model( $classname, $timezone )->get_one_by_ID( $props_n_values[$primary_id_ref] ); |
|
1524 | - }else{ |
|
1522 | + if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) { |
|
1523 | + $existing = self::_get_model($classname, $timezone)->get_one_by_ID($props_n_values[$primary_id_ref]); |
|
1524 | + } else { |
|
1525 | 1525 | $existing = null; |
1526 | 1526 | } |
1527 | - }elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields( $props_n_values ) ){ |
|
1527 | + }elseif (self::_get_model($classname, $timezone)->has_all_combined_primary_key_fields($props_n_values)) { |
|
1528 | 1528 | //no primary key on this model, but there's still a matching item in the DB |
1529 | - $existing = self::_get_model($classname, $timezone)->get_one_by_ID( self::_get_model($classname, $timezone)->get_index_primary_key_string( $props_n_values ) ); |
|
1530 | - }else{ |
|
1529 | + $existing = self::_get_model($classname, $timezone)->get_one_by_ID(self::_get_model($classname, $timezone)->get_index_primary_key_string($props_n_values)); |
|
1530 | + } else { |
|
1531 | 1531 | $existing = null; |
1532 | 1532 | } |
1533 | - if ( $existing ) { |
|
1534 | - foreach ( $props_n_values as $property => $field_value ) { |
|
1535 | - $existing->set( $property, $field_value ); |
|
1533 | + if ($existing) { |
|
1534 | + foreach ($props_n_values as $property => $field_value) { |
|
1535 | + $existing->set($property, $field_value); |
|
1536 | 1536 | } |
1537 | 1537 | return $existing; |
1538 | 1538 | } else { |
@@ -1550,13 +1550,13 @@ discard block |
||
1550 | 1550 | * @throws EE_Error |
1551 | 1551 | * @return EEM_Base |
1552 | 1552 | */ |
1553 | - protected static function _get_model( $classname, $timezone = NULL ){ |
|
1553 | + protected static function _get_model($classname, $timezone = NULL) { |
|
1554 | 1554 | //find model for this class |
1555 | - if( ! $classname ){ |
|
1556 | - throw new EE_Error(sprintf(__("What were you thinking calling _get_model(%s)?? You need to specify the class name", "event_espresso"),$classname)); |
|
1555 | + if ( ! $classname) { |
|
1556 | + throw new EE_Error(sprintf(__("What were you thinking calling _get_model(%s)?? You need to specify the class name", "event_espresso"), $classname)); |
|
1557 | 1557 | } |
1558 | - $modelName=self::_get_model_classname($classname); |
|
1559 | - return self::_get_model_instance_with_name($modelName, $timezone ); |
|
1558 | + $modelName = self::_get_model_classname($classname); |
|
1559 | + return self::_get_model_instance_with_name($modelName, $timezone); |
|
1560 | 1560 | } |
1561 | 1561 | |
1562 | 1562 | |
@@ -1567,10 +1567,10 @@ discard block |
||
1567 | 1567 | * @param null $timezone |
1568 | 1568 | * @return EEM_Base |
1569 | 1569 | */ |
1570 | - protected static function _get_model_instance_with_name($model_classname, $timezone = NULL){ |
|
1571 | - $model_classname = str_replace( 'EEM_', '', $model_classname ); |
|
1572 | - $model = EE_Registry::instance()->load_model( $model_classname ); |
|
1573 | - $model->set_timezone( $timezone ); |
|
1570 | + protected static function _get_model_instance_with_name($model_classname, $timezone = NULL) { |
|
1571 | + $model_classname = str_replace('EEM_', '', $model_classname); |
|
1572 | + $model = EE_Registry::instance()->load_model($model_classname); |
|
1573 | + $model->set_timezone($timezone); |
|
1574 | 1574 | return $model; |
1575 | 1575 | } |
1576 | 1576 | |
@@ -1582,10 +1582,10 @@ discard block |
||
1582 | 1582 | * @param null $model_name |
1583 | 1583 | * @return string like EEM_Attendee |
1584 | 1584 | */ |
1585 | - private static function _get_model_classname( $model_name = null){ |
|
1586 | - if(strpos($model_name,"EE_")===0){ |
|
1587 | - $model_classname=str_replace("EE_","EEM_",$model_name); |
|
1588 | - }else{ |
|
1585 | + private static function _get_model_classname($model_name = null) { |
|
1586 | + if (strpos($model_name, "EE_") === 0) { |
|
1587 | + $model_classname = str_replace("EE_", "EEM_", $model_name); |
|
1588 | + } else { |
|
1589 | 1589 | $model_classname = "EEM_".$model_name; |
1590 | 1590 | } |
1591 | 1591 | return $model_classname; |
@@ -1599,11 +1599,11 @@ discard block |
||
1599 | 1599 | * @throws EE_Error |
1600 | 1600 | * @return string |
1601 | 1601 | */ |
1602 | - protected static function _get_primary_key_name( $classname = NULL ){ |
|
1603 | - if( ! $classname){ |
|
1604 | - throw new EE_Error(sprintf(__("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"),$classname)); |
|
1602 | + protected static function _get_primary_key_name($classname = NULL) { |
|
1603 | + if ( ! $classname) { |
|
1604 | + throw new EE_Error(sprintf(__("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"), $classname)); |
|
1605 | 1605 | } |
1606 | - return self::_get_model( $classname )->get_primary_key_field()->get_name(); |
|
1606 | + return self::_get_model($classname)->get_primary_key_field()->get_name(); |
|
1607 | 1607 | } |
1608 | 1608 | |
1609 | 1609 | |
@@ -1615,12 +1615,12 @@ discard block |
||
1615 | 1615 | * Usually defaults for integer primary keys are 0; string primary keys are usually NULL). |
1616 | 1616 | * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string |
1617 | 1617 | */ |
1618 | - public function ID(){ |
|
1618 | + public function ID() { |
|
1619 | 1619 | //now that we know the name of the variable, use a variable variable to get its value and return its |
1620 | - if( $this->get_model()->has_primary_key_field() ) { |
|
1621 | - return $this->_fields[self::_get_primary_key_name( get_class($this) )]; |
|
1622 | - }else{ |
|
1623 | - return $this->get_model()->get_index_primary_key_string( $this->_fields ); |
|
1620 | + if ($this->get_model()->has_primary_key_field()) { |
|
1621 | + return $this->_fields[self::_get_primary_key_name(get_class($this))]; |
|
1622 | + } else { |
|
1623 | + return $this->get_model()->get_index_primary_key_string($this->_fields); |
|
1624 | 1624 | } |
1625 | 1625 | } |
1626 | 1626 | |
@@ -1638,24 +1638,24 @@ discard block |
||
1638 | 1638 | * @throws EE_Error |
1639 | 1639 | * @return EE_Base_Class the object the relation was added to |
1640 | 1640 | */ |
1641 | - public function _add_relation_to( $otherObjectModelObjectOrID,$relationName, $extra_join_model_fields_n_values = array(), $cache_id = NULL ){ |
|
1641 | + public function _add_relation_to($otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values = array(), $cache_id = NULL) { |
|
1642 | 1642 | //if this thing exists in the DB, save the relation to the DB |
1643 | - if( $this->ID() ){ |
|
1644 | - $otherObject = $this->get_model()->add_relationship_to( $this, $otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values ); |
|
1643 | + if ($this->ID()) { |
|
1644 | + $otherObject = $this->get_model()->add_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values); |
|
1645 | 1645 | //clear cache so future get_many_related and get_first_related() return new results. |
1646 | - $this->clear_cache( $relationName, $otherObject, TRUE ); |
|
1646 | + $this->clear_cache($relationName, $otherObject, TRUE); |
|
1647 | 1647 | } else { |
1648 | 1648 | //this thing doesn't exist in the DB, so just cache it |
1649 | - if( ! $otherObjectModelObjectOrID instanceof EE_Base_Class){ |
|
1650 | - throw new EE_Error( sprintf( |
|
1651 | - __( 'Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s', 'event_espresso' ), |
|
1649 | + if ( ! $otherObjectModelObjectOrID instanceof EE_Base_Class) { |
|
1650 | + throw new EE_Error(sprintf( |
|
1651 | + __('Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s', 'event_espresso'), |
|
1652 | 1652 | $otherObjectModelObjectOrID, |
1653 | - get_class( $this ) |
|
1653 | + get_class($this) |
|
1654 | 1654 | )); |
1655 | 1655 | } else { |
1656 | 1656 | $otherObject = $otherObjectModelObjectOrID; |
1657 | 1657 | } |
1658 | - $this->cache( $relationName, $otherObjectModelObjectOrID, $cache_id ); |
|
1658 | + $this->cache($relationName, $otherObjectModelObjectOrID, $cache_id); |
|
1659 | 1659 | } |
1660 | 1660 | |
1661 | 1661 | |
@@ -1673,12 +1673,12 @@ discard block |
||
1673 | 1673 | * @param array $where_query You can optionally include an array of key=>value pairs that allow you to further constrict the relation to being added. However, keep in mind that the columns (keys) given must match a column on the JOIN table and currently only the HABTM models accept these additional conditions. Also remember that if an exact match isn't found for these extra cols/val pairs, then a NEW row is created in the join table. |
1674 | 1674 | * @return EE_Base_Class the relation was removed from |
1675 | 1675 | */ |
1676 | - public function _remove_relation_to($otherObjectModelObjectOrID,$relationName, $where_query = array() ){ |
|
1677 | - if($this->ID()){//if this exists in the DB, save the relation change to the DB too |
|
1678 | - $otherObject = $this->get_model()->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $where_query ); |
|
1676 | + public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array()) { |
|
1677 | + if ($this->ID()) {//if this exists in the DB, save the relation change to the DB too |
|
1678 | + $otherObject = $this->get_model()->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $where_query); |
|
1679 | 1679 | $this->clear_cache($relationName, $otherObject); |
1680 | - }else{//this doesn't exist in the DB, just remove it from the cache |
|
1681 | - $otherObject = $this->clear_cache($relationName,$otherObjectModelObjectOrID); |
|
1680 | + } else {//this doesn't exist in the DB, just remove it from the cache |
|
1681 | + $otherObject = $this->clear_cache($relationName, $otherObjectModelObjectOrID); |
|
1682 | 1682 | } |
1683 | 1683 | return $otherObject; |
1684 | 1684 | } |
@@ -1689,12 +1689,12 @@ discard block |
||
1689 | 1689 | * @param array $where_query_params like EEM_Base::get_all's $query_params[0] (where conditions) |
1690 | 1690 | * @return EE_Base_Class |
1691 | 1691 | */ |
1692 | - public function _remove_relations($relationName,$where_query_params = array()){ |
|
1693 | - if($this->ID()){//if this exists in the DB, save the relation change to the DB too |
|
1694 | - $otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params ); |
|
1695 | - $this->clear_cache($relationName,null,true); |
|
1696 | - }else{//this doesn't exist in the DB, just remove it from the cache |
|
1697 | - $otherObjects = $this->clear_cache($relationName,null,true); |
|
1692 | + public function _remove_relations($relationName, $where_query_params = array()) { |
|
1693 | + if ($this->ID()) {//if this exists in the DB, save the relation change to the DB too |
|
1694 | + $otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params); |
|
1695 | + $this->clear_cache($relationName, null, true); |
|
1696 | + } else {//this doesn't exist in the DB, just remove it from the cache |
|
1697 | + $otherObjects = $this->clear_cache($relationName, null, true); |
|
1698 | 1698 | } |
1699 | 1699 | return $otherObjects; |
1700 | 1700 | } |
@@ -1711,26 +1711,26 @@ discard block |
||
1711 | 1711 | * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary keys |
1712 | 1712 | * or might not be saved yet. Consider using EEM_Base::get_IDs() on these results if you want IDs |
1713 | 1713 | */ |
1714 | - public function get_many_related($relationName,$query_params = array()){ |
|
1715 | - if($this->ID()){//this exists in the DB, so get the related things from either the cache or the DB |
|
1714 | + public function get_many_related($relationName, $query_params = array()) { |
|
1715 | + if ($this->ID()) {//this exists in the DB, so get the related things from either the cache or the DB |
|
1716 | 1716 | //if there are query parameters, forget about caching the related model objects. |
1717 | - if( $query_params ){ |
|
1717 | + if ($query_params) { |
|
1718 | 1718 | $related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params); |
1719 | - }else{ |
|
1719 | + } else { |
|
1720 | 1720 | //did we already cache the result of this query? |
1721 | 1721 | $cached_results = $this->get_all_from_cache($relationName); |
1722 | - if ( ! $cached_results ){ |
|
1722 | + if ( ! $cached_results) { |
|
1723 | 1723 | $related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params); |
1724 | 1724 | //if no query parameters were passed, then we got all the related model objects |
1725 | 1725 | //for that relation. We can cache them then. |
1726 | - foreach($related_model_objects as $related_model_object){ |
|
1726 | + foreach ($related_model_objects as $related_model_object) { |
|
1727 | 1727 | $this->cache($relationName, $related_model_object); |
1728 | 1728 | } |
1729 | - }else{ |
|
1729 | + } else { |
|
1730 | 1730 | $related_model_objects = $cached_results; |
1731 | 1731 | } |
1732 | 1732 | } |
1733 | - }else{//this doesn't exist itn eh DB, so just get the related things from the cache |
|
1733 | + } else {//this doesn't exist itn eh DB, so just get the related things from the cache |
|
1734 | 1734 | $related_model_objects = $this->get_all_from_cache($relationName); |
1735 | 1735 | } |
1736 | 1736 | return $related_model_objects; |
@@ -1747,8 +1747,8 @@ discard block |
||
1747 | 1747 | * @param bool $distinct if we want to only count the distinct values for the column then you can trigger that by the setting $distinct to TRUE; |
1748 | 1748 | * @return int |
1749 | 1749 | */ |
1750 | - public function count_related($relation_name, $query_params =array(),$field_to_count = NULL, $distinct = FALSE){ |
|
1751 | - return $this->get_model()->count_related($this,$relation_name,$query_params,$field_to_count,$distinct); |
|
1750 | + public function count_related($relation_name, $query_params = array(), $field_to_count = NULL, $distinct = FALSE) { |
|
1751 | + return $this->get_model()->count_related($this, $relation_name, $query_params, $field_to_count, $distinct); |
|
1752 | 1752 | } |
1753 | 1753 | |
1754 | 1754 | |
@@ -1762,7 +1762,7 @@ discard block |
||
1762 | 1762 | * By default, uses primary key (which doesn't make much sense, so you should probably change it) |
1763 | 1763 | * @return int |
1764 | 1764 | */ |
1765 | - public function sum_related($relation_name, $query_params = array(), $field_to_sum = null){ |
|
1765 | + public function sum_related($relation_name, $query_params = array(), $field_to_sum = null) { |
|
1766 | 1766 | return $this->get_model()->sum_related($this, $relation_name, $query_params, $field_to_sum); |
1767 | 1767 | } |
1768 | 1768 | |
@@ -1774,34 +1774,34 @@ discard block |
||
1774 | 1774 | * @param array $query_params like EEM_Base::get_all |
1775 | 1775 | * @return EE_Base_Class (not an array, a single object) |
1776 | 1776 | */ |
1777 | - public function get_first_related($relationName,$query_params = array()){ |
|
1778 | - if($this->ID()){//this exists in the DB, get from the cache OR the DB |
|
1777 | + public function get_first_related($relationName, $query_params = array()) { |
|
1778 | + if ($this->ID()) {//this exists in the DB, get from the cache OR the DB |
|
1779 | 1779 | |
1780 | 1780 | //if they've provided some query parameters, don't bother trying to cache the result |
1781 | 1781 | //also make sure we're not caching the result of get_first_related |
1782 | 1782 | //on a relation which should have an array of objects (because the cache might have an array of objects) |
1783 | - if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){ |
|
1784 | - $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
|
1785 | - }else{ |
|
1783 | + if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) { |
|
1784 | + $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
|
1785 | + } else { |
|
1786 | 1786 | //first, check if we've already cached the result of this query |
1787 | 1787 | $cached_result = $this->get_one_from_cache($relationName); |
1788 | - if ( ! $cached_result ){ |
|
1788 | + if ( ! $cached_result) { |
|
1789 | 1789 | |
1790 | 1790 | $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
1791 | - $this->cache($relationName,$related_model_object); |
|
1792 | - }else{ |
|
1791 | + $this->cache($relationName, $related_model_object); |
|
1792 | + } else { |
|
1793 | 1793 | $related_model_object = $cached_result; |
1794 | 1794 | } |
1795 | 1795 | } |
1796 | - }else{ |
|
1796 | + } else { |
|
1797 | 1797 | //this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might |
1798 | - if( $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){ |
|
1799 | - $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
|
1800 | - }else{ |
|
1798 | + if ($this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) { |
|
1799 | + $related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params); |
|
1800 | + } else { |
|
1801 | 1801 | $related_model_object = null; |
1802 | 1802 | } |
1803 | 1803 | //this doesn't exist in the DB and apparently the thing it belongs to doesn't either, just get what's cached on this object |
1804 | - if( ! $related_model_object){ |
|
1804 | + if ( ! $related_model_object) { |
|
1805 | 1805 | $related_model_object = $this->get_one_from_cache($relationName); |
1806 | 1806 | } |
1807 | 1807 | |
@@ -1820,12 +1820,12 @@ discard block |
||
1820 | 1820 | * @param array $query_params like EEM_Base::get_all's |
1821 | 1821 | * @return int how many deleted |
1822 | 1822 | */ |
1823 | - public function delete_related($relationName,$query_params = array()){ |
|
1824 | - if($this->ID()){ |
|
1825 | - $count = $this->get_model()->delete_related($this, $relationName, $query_params); |
|
1826 | - }else{ |
|
1823 | + public function delete_related($relationName, $query_params = array()) { |
|
1824 | + if ($this->ID()) { |
|
1825 | + $count = $this->get_model()->delete_related($this, $relationName, $query_params); |
|
1826 | + } else { |
|
1827 | 1827 | $count = count($this->get_all_from_cache($relationName)); |
1828 | - $this->clear_cache($relationName,NULL,TRUE); |
|
1828 | + $this->clear_cache($relationName, NULL, TRUE); |
|
1829 | 1829 | } |
1830 | 1830 | return $count; |
1831 | 1831 | } |
@@ -1840,13 +1840,13 @@ discard block |
||
1840 | 1840 | * @param array $query_params like EEM_Base::get_all's |
1841 | 1841 | * @return int how many deleted (including those soft deleted) |
1842 | 1842 | */ |
1843 | - public function delete_related_permanently($relationName,$query_params = array()){ |
|
1844 | - if($this->ID()){ |
|
1845 | - $count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params); |
|
1846 | - }else{ |
|
1843 | + public function delete_related_permanently($relationName, $query_params = array()) { |
|
1844 | + if ($this->ID()) { |
|
1845 | + $count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params); |
|
1846 | + } else { |
|
1847 | 1847 | $count = count($this->get_all_from_cache($relationName)); |
1848 | 1848 | } |
1849 | - $this->clear_cache($relationName,NULL,TRUE); |
|
1849 | + $this->clear_cache($relationName, NULL, TRUE); |
|
1850 | 1850 | return $count; |
1851 | 1851 | } |
1852 | 1852 | |
@@ -1862,7 +1862,7 @@ discard block |
||
1862 | 1862 | * @param string $field_name property to check |
1863 | 1863 | * @return bool TRUE if existing,FALSE if not. |
1864 | 1864 | */ |
1865 | - public function is_set( $field_name ) { |
|
1865 | + public function is_set($field_name) { |
|
1866 | 1866 | return isset($this->_fields[$field_name]); |
1867 | 1867 | } |
1868 | 1868 | |
@@ -1874,12 +1874,12 @@ discard block |
||
1874 | 1874 | * @throws EE_Error |
1875 | 1875 | * @return bool TRUE if existing, throw EE_Error if not. |
1876 | 1876 | */ |
1877 | - protected function _property_exists( $properties ) { |
|
1877 | + protected function _property_exists($properties) { |
|
1878 | 1878 | |
1879 | - foreach ( (array) $properties as $property_name ) { |
|
1879 | + foreach ((array) $properties as $property_name) { |
|
1880 | 1880 | //first make sure this property exists |
1881 | - if ( ! $this->_fields[ $property_name ] ) |
|
1882 | - throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s). Double check the spelling please', 'event_espresso'), $property_name ) ); |
|
1881 | + if ( ! $this->_fields[$property_name]) |
|
1882 | + throw new EE_Error(sprintf(__('Trying to retrieve a non-existent property (%s). Double check the spelling please', 'event_espresso'), $property_name)); |
|
1883 | 1883 | } |
1884 | 1884 | |
1885 | 1885 | return TRUE; |
@@ -1896,7 +1896,7 @@ discard block |
||
1896 | 1896 | $fields = $this->get_model()->field_settings(FALSE); |
1897 | 1897 | $properties = array(); |
1898 | 1898 | //remove prepended underscore |
1899 | - foreach ( $fields as $field_name => $settings ) { |
|
1899 | + foreach ($fields as $field_name => $settings) { |
|
1900 | 1900 | $properties[$field_name] = $this->get($field_name); |
1901 | 1901 | } |
1902 | 1902 | return $properties; |
@@ -1926,14 +1926,14 @@ discard block |
||
1926 | 1926 | * @throws EE_Error |
1927 | 1927 | * @return mixed whatever the plugin which calls add_filter decides |
1928 | 1928 | */ |
1929 | - public function __call($methodName,$args){ |
|
1930 | - $className=get_class($this); |
|
1931 | - $tagName="FHEE__{$className}__{$methodName}"; |
|
1932 | - if(!has_filter($tagName)){ |
|
1933 | - throw new EE_Error(sprintf(__("Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}","event_espresso"), |
|
1934 | - $methodName,$className,$tagName)); |
|
1929 | + public function __call($methodName, $args) { |
|
1930 | + $className = get_class($this); |
|
1931 | + $tagName = "FHEE__{$className}__{$methodName}"; |
|
1932 | + if ( ! has_filter($tagName)) { |
|
1933 | + throw new EE_Error(sprintf(__("Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}", "event_espresso"), |
|
1934 | + $methodName, $className, $tagName)); |
|
1935 | 1935 | } |
1936 | - return apply_filters($tagName,null,$this,$args); |
|
1936 | + return apply_filters($tagName, null, $this, $args); |
|
1937 | 1937 | } |
1938 | 1938 | |
1939 | 1939 | |
@@ -1948,22 +1948,22 @@ discard block |
||
1948 | 1948 | * @return int records updated (or BOOLEAN if we actually ended up inserting the extra meta row) |
1949 | 1949 | * NOTE: if the values haven't changed, returns 0 |
1950 | 1950 | */ |
1951 | - public function update_extra_meta($meta_key,$meta_value,$previous_value = NULL){ |
|
1952 | - $query_params = array(array( |
|
1951 | + public function update_extra_meta($meta_key, $meta_value, $previous_value = NULL) { |
|
1952 | + $query_params = array(array( |
|
1953 | 1953 | 'EXM_key'=>$meta_key, |
1954 | 1954 | 'OBJ_ID'=>$this->ID(), |
1955 | 1955 | 'EXM_type'=>$this->get_model()->get_this_model_name())); |
1956 | - if($previous_value !== NULL){ |
|
1956 | + if ($previous_value !== NULL) { |
|
1957 | 1957 | $query_params[0]['EXM_value'] = $meta_value; |
1958 | 1958 | } |
1959 | 1959 | $existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params); |
1960 | - if( ! $existing_rows_like_that){ |
|
1960 | + if ( ! $existing_rows_like_that) { |
|
1961 | 1961 | return $this->add_extra_meta($meta_key, $meta_value); |
1962 | - }else{ |
|
1963 | - foreach( $existing_rows_like_that as $existing_row){ |
|
1964 | - $existing_row->save( array( 'EXM_value' => $meta_value ) ); |
|
1962 | + } else { |
|
1963 | + foreach ($existing_rows_like_that as $existing_row) { |
|
1964 | + $existing_row->save(array('EXM_value' => $meta_value)); |
|
1965 | 1965 | } |
1966 | - return count( $existing_rows_like_that ); |
|
1966 | + return count($existing_rows_like_that); |
|
1967 | 1967 | } |
1968 | 1968 | } |
1969 | 1969 | |
@@ -1976,10 +1976,10 @@ discard block |
||
1976 | 1976 | * @param boolean $unique |
1977 | 1977 | * @return boolean |
1978 | 1978 | */ |
1979 | - public function add_extra_meta($meta_key,$meta_value,$unique = false){ |
|
1980 | - if($unique){ |
|
1981 | - $existing_extra_meta = EEM_Extra_Meta::instance()->get_one(array(array('EXM_key'=>$meta_key,'OBJ_ID'=>$this->ID(),'EXM_type'=>$this->_get_model_classname(get_class($this))))); |
|
1982 | - if($existing_extra_meta){ |
|
1979 | + public function add_extra_meta($meta_key, $meta_value, $unique = false) { |
|
1980 | + if ($unique) { |
|
1981 | + $existing_extra_meta = EEM_Extra_Meta::instance()->get_one(array(array('EXM_key'=>$meta_key, 'OBJ_ID'=>$this->ID(), 'EXM_type'=>$this->_get_model_classname(get_class($this))))); |
|
1982 | + if ($existing_extra_meta) { |
|
1983 | 1983 | return false; |
1984 | 1984 | } |
1985 | 1985 | } |
@@ -1999,12 +1999,12 @@ discard block |
||
1999 | 1999 | * @param string $meta_value |
2000 | 2000 | * @return int number of extra meta rows deleted |
2001 | 2001 | */ |
2002 | - public function delete_extra_meta($meta_key,$meta_value = NULL){ |
|
2003 | - $query_params = array(array( |
|
2002 | + public function delete_extra_meta($meta_key, $meta_value = NULL) { |
|
2003 | + $query_params = array(array( |
|
2004 | 2004 | 'EXM_key'=>$meta_key, |
2005 | 2005 | 'OBJ_ID'=>$this->ID(), |
2006 | 2006 | 'EXM_type'=>$this->get_model()->get_this_model_name())); |
2007 | - if($meta_value !== NULL){ |
|
2007 | + if ($meta_value !== NULL) { |
|
2008 | 2008 | $query_params[0]['EXM_value'] = $meta_value; |
2009 | 2009 | } |
2010 | 2010 | $count_deleted = EEM_Extra_Meta::instance()->delete($query_params); |
@@ -2020,25 +2020,25 @@ discard block |
||
2020 | 2020 | * @param mixed $default if we don't find anything, what should we return? |
2021 | 2021 | * @return mixed single value if $single; array if ! $single |
2022 | 2022 | */ |
2023 | - public function get_extra_meta($meta_key,$single = FALSE,$default = NULL){ |
|
2024 | - if($single){ |
|
2025 | - $result = $this->get_first_related('Extra_Meta',array(array('EXM_key'=>$meta_key))); |
|
2026 | - if ( $result instanceof EE_Extra_Meta ){ |
|
2023 | + public function get_extra_meta($meta_key, $single = FALSE, $default = NULL) { |
|
2024 | + if ($single) { |
|
2025 | + $result = $this->get_first_related('Extra_Meta', array(array('EXM_key'=>$meta_key))); |
|
2026 | + if ($result instanceof EE_Extra_Meta) { |
|
2027 | 2027 | return $result->value(); |
2028 | - }else{ |
|
2028 | + } else { |
|
2029 | 2029 | return $default; |
2030 | 2030 | } |
2031 | - }else{ |
|
2032 | - $results = $this->get_many_related('Extra_Meta',array(array('EXM_key'=>$meta_key))); |
|
2033 | - if($results){ |
|
2031 | + } else { |
|
2032 | + $results = $this->get_many_related('Extra_Meta', array(array('EXM_key'=>$meta_key))); |
|
2033 | + if ($results) { |
|
2034 | 2034 | $values = array(); |
2035 | - foreach($results as $result){ |
|
2036 | - if ( $result instanceof EE_Extra_Meta ){ |
|
2035 | + foreach ($results as $result) { |
|
2036 | + if ($result instanceof EE_Extra_Meta) { |
|
2037 | 2037 | $values[$result->ID()] = $result->value(); |
2038 | 2038 | } |
2039 | 2039 | } |
2040 | 2040 | return $values; |
2041 | - }else{ |
|
2041 | + } else { |
|
2042 | 2042 | return $default; |
2043 | 2043 | } |
2044 | 2044 | } |
@@ -2055,20 +2055,20 @@ discard block |
||
2055 | 2055 | * @param boolean $one_of_each_key |
2056 | 2056 | * @return array |
2057 | 2057 | */ |
2058 | - public function all_extra_meta_array($one_of_each_key = true){ |
|
2058 | + public function all_extra_meta_array($one_of_each_key = true) { |
|
2059 | 2059 | $return_array = array(); |
2060 | - if($one_of_each_key){ |
|
2060 | + if ($one_of_each_key) { |
|
2061 | 2061 | $extra_meta_objs = $this->get_many_related('Extra_Meta', array('group_by'=>'EXM_key')); |
2062 | - foreach($extra_meta_objs as $extra_meta_obj){ |
|
2063 | - if ( $extra_meta_obj instanceof EE_Extra_Meta ) { |
|
2062 | + foreach ($extra_meta_objs as $extra_meta_obj) { |
|
2063 | + if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
2064 | 2064 | $return_array[$extra_meta_obj->key()] = $extra_meta_obj->value(); |
2065 | 2065 | } |
2066 | 2066 | } |
2067 | - }else{ |
|
2067 | + } else { |
|
2068 | 2068 | $extra_meta_objs = $this->get_many_related('Extra_Meta'); |
2069 | - foreach($extra_meta_objs as $extra_meta_obj){ |
|
2070 | - if ( $extra_meta_obj instanceof EE_Extra_Meta ) { |
|
2071 | - if( ! isset($return_array[$extra_meta_obj->key()])){ |
|
2069 | + foreach ($extra_meta_objs as $extra_meta_obj) { |
|
2070 | + if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
2071 | + if ( ! isset($return_array[$extra_meta_obj->key()])) { |
|
2072 | 2072 | $return_array[$extra_meta_obj->key()] = array(); |
2073 | 2073 | } |
2074 | 2074 | $return_array[$extra_meta_obj->key()][$extra_meta_obj->ID()] = $extra_meta_obj->value(); |
@@ -2081,19 +2081,19 @@ discard block |
||
2081 | 2081 | * Gets a pretty nice displayable nice for this model object. Often overridden |
2082 | 2082 | * @return string |
2083 | 2083 | */ |
2084 | - public function name(){ |
|
2084 | + public function name() { |
|
2085 | 2085 | //find a field that's not a text field |
2086 | 2086 | $field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base'); |
2087 | - if($field_we_can_use){ |
|
2087 | + if ($field_we_can_use) { |
|
2088 | 2088 | return $this->get($field_we_can_use->get_name()); |
2089 | - }else{ |
|
2089 | + } else { |
|
2090 | 2090 | $first_few_properties = $this->model_field_array(); |
2091 | - $first_few_properties = array_slice($first_few_properties,0,3); |
|
2091 | + $first_few_properties = array_slice($first_few_properties, 0, 3); |
|
2092 | 2092 | $name_parts = array(); |
2093 | - foreach( $first_few_properties as $name=> $value ){ |
|
2093 | + foreach ($first_few_properties as $name=> $value) { |
|
2094 | 2094 | $name_parts[] = "$name:$value"; |
2095 | 2095 | } |
2096 | - return implode(",",$name_parts); |
|
2096 | + return implode(",", $name_parts); |
|
2097 | 2097 | } |
2098 | 2098 | } |
2099 | 2099 | |
@@ -2102,11 +2102,11 @@ discard block |
||
2102 | 2102 | * Checks if this model object has been proven to already be in the entity map |
2103 | 2103 | * @return boolean |
2104 | 2104 | */ |
2105 | - public function in_entity_map(){ |
|
2106 | - if( $this->ID() && $this->get_model()->get_from_entity_map( $this->ID() ) === $this ) { |
|
2105 | + public function in_entity_map() { |
|
2106 | + if ($this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this) { |
|
2107 | 2107 | //well, if we looked, did we find it in the entity map? |
2108 | 2108 | return TRUE; |
2109 | - }else{ |
|
2109 | + } else { |
|
2110 | 2110 | return FALSE; |
2111 | 2111 | } |
2112 | 2112 | } |
@@ -2117,21 +2117,21 @@ discard block |
||
2117 | 2117 | * @throws EE_Error if this model object isn't in the entity mapper (because then you should |
2118 | 2118 | * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE |
2119 | 2119 | */ |
2120 | - public function refresh_from_db(){ |
|
2121 | - if( $this->ID() && $this->in_entity_map() ){ |
|
2122 | - $this->get_model()->refresh_entity_map_from_db( $this->ID() ); |
|
2123 | - }else{ |
|
2120 | + public function refresh_from_db() { |
|
2121 | + if ($this->ID() && $this->in_entity_map()) { |
|
2122 | + $this->get_model()->refresh_entity_map_from_db($this->ID()); |
|
2123 | + } else { |
|
2124 | 2124 | //if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database) |
2125 | 2125 | //if it has an ID but it's not in the map, and you're asking me to refresh it |
2126 | 2126 | //that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's |
2127 | 2127 | //absolutely nothing in it for this ID |
2128 | - if( WP_DEBUG ) { |
|
2128 | + if (WP_DEBUG) { |
|
2129 | 2129 | throw new EE_Error( |
2130 | 2130 | sprintf( |
2131 | - __( 'Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.', 'event_espresso' ), |
|
2131 | + __('Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.', 'event_espresso'), |
|
2132 | 2132 | $this->ID(), |
2133 | - get_class( $this->get_model() ) . '::instance()->add_to_entity_map()', |
|
2134 | - get_class( $this->get_model() ) . '::instance()->refresh_entity_map()' |
|
2133 | + get_class($this->get_model()).'::instance()->add_to_entity_map()', |
|
2134 | + get_class($this->get_model()).'::instance()->refresh_entity_map()' |
|
2135 | 2135 | ) |
2136 | 2136 | ); |
2137 | 2137 | } |
@@ -2143,8 +2143,8 @@ discard block |
||
2143 | 2143 | * (probably a bad assumption they have made, oh well) |
2144 | 2144 | * @return string |
2145 | 2145 | */ |
2146 | - public function __toString(){ |
|
2147 | - return sprintf( '%s (%s)', $this->name(), $this->ID() ); |
|
2146 | + public function __toString() { |
|
2147 | + return sprintf('%s (%s)', $this->name(), $this->ID()); |
|
2148 | 2148 | } |
2149 | 2149 | |
2150 | 2150 | /** |
@@ -2176,16 +2176,16 @@ discard block |
||
2176 | 2176 | * @return array |
2177 | 2177 | */ |
2178 | 2178 | public function __sleep() { |
2179 | - foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ) { |
|
2180 | - if( $relation_obj instanceof EE_Belongs_To_Relation ) { |
|
2181 | - $classname = 'EE_' . $this->get_model()->get_this_model_name(); |
|
2182 | - if( $this->get_one_from_cache( $relation_name ) instanceof $classname && |
|
2183 | - $this->get_one_from_cache( $relation_name )->ID() ) { |
|
2184 | - $this->clear_cache( $relation_name, $this->get_one_from_cache( $relation_name )->ID() ); |
|
2179 | + foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) { |
|
2180 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
2181 | + $classname = 'EE_'.$this->get_model()->get_this_model_name(); |
|
2182 | + if ($this->get_one_from_cache($relation_name) instanceof $classname && |
|
2183 | + $this->get_one_from_cache($relation_name)->ID()) { |
|
2184 | + $this->clear_cache($relation_name, $this->get_one_from_cache($relation_name)->ID()); |
|
2185 | 2185 | } |
2186 | 2186 | } |
2187 | 2187 | } |
2188 | - return array_keys( get_object_vars( $this ) ); |
|
2188 | + return array_keys(get_object_vars($this)); |
|
2189 | 2189 | } |
2190 | 2190 | |
2191 | 2191 |
@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | do_action( 'AHEE_log', __FILE__, ' FILE LOADED', '' ); |
3 | 3 | /** |
4 | - * |
|
5 | - * Event Espresso |
|
6 | - * |
|
7 | - * Event Registration and Management Plugin for WordPress |
|
8 | - * |
|
9 | - * @ package Event Espresso |
|
10 | - * @ author Seth Shoultes |
|
11 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
13 | - * @ link http://www.eventespresso.com |
|
14 | - * @ version 4.0 |
|
15 | - * |
|
16 | - * ------------------------------------------------------------------------ |
|
17 | - * |
|
18 | - * EE_Base_Class class |
|
19 | - * |
|
20 | - * @package Event Espresso |
|
21 | - * @subpackage includes/classes/EE_Base_Class.class.php |
|
22 | - * @author Michael Nelson |
|
23 | - * |
|
24 | - * ------------------------------------------------------------------------ |
|
25 | - */ |
|
4 | + * |
|
5 | + * Event Espresso |
|
6 | + * |
|
7 | + * Event Registration and Management Plugin for WordPress |
|
8 | + * |
|
9 | + * @ package Event Espresso |
|
10 | + * @ author Seth Shoultes |
|
11 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
13 | + * @ link http://www.eventespresso.com |
|
14 | + * @ version 4.0 |
|
15 | + * |
|
16 | + * ------------------------------------------------------------------------ |
|
17 | + * |
|
18 | + * EE_Base_Class class |
|
19 | + * |
|
20 | + * @package Event Espresso |
|
21 | + * @subpackage includes/classes/EE_Base_Class.class.php |
|
22 | + * @author Michael Nelson |
|
23 | + * |
|
24 | + * ------------------------------------------------------------------------ |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | abstract class EE_Base_Class{ |
28 | 28 | |
@@ -47,25 +47,25 @@ discard block |
||
47 | 47 | |
48 | 48 | |
49 | 49 | /** |
50 | - * date format |
|
51 | - * |
|
52 | - * pattern or format for displaying dates |
|
53 | - * |
|
54 | - * @access protected |
|
55 | - * @var string |
|
56 | - */ |
|
50 | + * date format |
|
51 | + * |
|
52 | + * pattern or format for displaying dates |
|
53 | + * |
|
54 | + * @access protected |
|
55 | + * @var string |
|
56 | + */ |
|
57 | 57 | protected $_dt_frmt; |
58 | 58 | |
59 | 59 | |
60 | 60 | |
61 | - /** |
|
62 | - * time format |
|
63 | - * |
|
64 | - * pattern or format for displaying time |
|
65 | - * |
|
66 | - * @access protected |
|
67 | - * @var string |
|
68 | - */ |
|
61 | + /** |
|
62 | + * time format |
|
63 | + * |
|
64 | + * pattern or format for displaying time |
|
65 | + * |
|
66 | + * @access protected |
|
67 | + * @var string |
|
68 | + */ |
|
69 | 69 | protected $_tm_frmt; |
70 | 70 | |
71 | 71 | |
@@ -205,12 +205,12 @@ discard block |
||
205 | 205 | |
206 | 206 | |
207 | 207 | /** |
208 | - * Gets the field's original value when this object was constructed during this request. |
|
209 | - * This can be helpful when determining if a model object has changed or not |
|
210 | - * |
|
211 | - * @param string $field_name |
|
212 | - * @return mixed|null |
|
213 | - */ |
|
208 | + * Gets the field's original value when this object was constructed during this request. |
|
209 | + * This can be helpful when determining if a model object has changed or not |
|
210 | + * |
|
211 | + * @param string $field_name |
|
212 | + * @return mixed|null |
|
213 | + */ |
|
214 | 214 | public function get_original( $field_name ){ |
215 | 215 | if( isset( $this->_props_n_values_provided_in_constructor[ $field_name ] ) && |
216 | 216 | $field_settings = $this->get_Model()->field_settings_for( $field_name )){ |
@@ -47,14 +47,14 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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'); |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 |
||
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__ ); |
|
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__); |
|
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 |
||
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 |
||
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 |
||
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 | } |
@@ -1,7 +1,8 @@ discard block |
||
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 |
||
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 |
||
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 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | * @param array $props_n_values incoming values from the database |
46 | 46 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
47 | 47 | * the website will be used. |
48 | - * @return EE_Attendee |
|
48 | + * @return EE_Checkin |
|
49 | 49 | */ |
50 | 50 | public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
51 | 51 | return new self( $props_n_values, TRUE, $timezone ); |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | -do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | +do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
3 | 3 | /** |
4 | 4 | * Event Espresso |
5 | 5 | * |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * @subpackage includes/classes/EE_Checkin.class.php |
24 | 24 | * @author Darren Ethier |
25 | 25 | */ |
26 | -class EE_Checkin extends EE_Base_Class{ |
|
26 | +class EE_Checkin extends EE_Base_Class { |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * |
@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | * date_format and the second value is the time format |
35 | 35 | * @return EE_Attendee |
36 | 36 | */ |
37 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
38 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__ ); |
|
39 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
37 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
38 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
39 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * the website will be used. |
48 | 48 | * @return EE_Attendee |
49 | 49 | */ |
50 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
51 | - return new self( $props_n_values, TRUE, $timezone ); |
|
50 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
51 | + return new self($props_n_values, TRUE, $timezone); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
3 | 5 | /** |
4 | 6 | * Event Espresso |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | /** |
53 | 53 | * Gets the country name |
54 | - * @return string |
|
54 | + * @return boolean |
|
55 | 55 | */ |
56 | 56 | public function name() { |
57 | 57 | return $this->get( 'CNT_name' ); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | /** |
63 | 63 | * gets the country's currency code |
64 | - * @return string |
|
64 | + * @return boolean |
|
65 | 65 | */ |
66 | 66 | public function currency_code() { |
67 | 67 | return $this->get( 'CNT_cur_code' ); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | /** |
84 | 84 | * Currency name singular |
85 | - * @return string |
|
85 | + * @return boolean |
|
86 | 86 | */ |
87 | 87 | public function currency_name_single() { |
88 | 88 | return $this->get( 'CNT_cur_single' ); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | /** |
94 | 94 | * Currency name plural |
95 | - * @return string |
|
95 | + * @return boolean |
|
96 | 96 | */ |
97 | 97 | public function currency_name_plural() { |
98 | 98 | return $this->get( 'CNT_cur_plural' ); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | /** |
114 | 114 | * currency_decimal_places : 2 = 0.00 3 = 0.000 |
115 | - * @return integer |
|
115 | + * @return boolean |
|
116 | 116 | */ |
117 | 117 | public function currency_decimal_places() { |
118 | 118 | return $this->get( 'CNT_cur_dec_plc' ); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | |
123 | 123 | /** |
124 | 124 | * currency_decimal_mark : (comma) ',' = 0,01 or (decimal) '.' = 0.01 |
125 | - * @return string |
|
125 | + * @return boolean |
|
126 | 126 | */ |
127 | 127 | public function currency_decimal_mark() { |
128 | 128 | return $this->get( 'CNT_cur_dec_mrk' ); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | /** |
134 | 134 | * currency thousands separator: (comma) ',' = 1,000 or (decimal) '.' = 1.000 |
135 | - * @return string |
|
135 | + * @return boolean |
|
136 | 136 | */ |
137 | 137 | public function currency_thousands_separator() { |
138 | 138 | return $this->get( 'CNT_cur_thsnds' ); |
@@ -2,18 +2,18 @@ |
||
2 | 2 | exit( 'No direct script access allowed' ); |
3 | 3 | } |
4 | 4 | /** |
5 | - * Event Espresso |
|
6 | - * |
|
7 | - * Event Registration and Management Plugin for WordPress |
|
8 | - * |
|
9 | - * @ package Event Espresso |
|
10 | - * @ author Seth Shoultes |
|
11 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | - * @ link {@link http://www.eventespresso.com} |
|
14 | - * @ since 3.2.P |
|
15 | - * |
|
16 | - */ |
|
5 | + * Event Espresso |
|
6 | + * |
|
7 | + * Event Registration and Management Plugin for WordPress |
|
8 | + * |
|
9 | + * @ package Event Espresso |
|
10 | + * @ author Seth Shoultes |
|
11 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | + * @ link {@link http://www.eventespresso.com} |
|
14 | + * @ since 3.2.P |
|
15 | + * |
|
16 | + */ |
|
17 | 17 | |
18 | 18 | |
19 | 19 |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * Event Espresso |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | * @param array $props_n_values |
31 | 31 | * @return EE_Country|mixed |
32 | 32 | */ |
33 | - public static function new_instance( $props_n_values = array() ) { |
|
34 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__ ); |
|
35 | - return $has_object ? $has_object : new self( $props_n_values ); |
|
33 | + public static function new_instance($props_n_values = array()) { |
|
34 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
35 | + return $has_object ? $has_object : new self($props_n_values); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | * @param array $props_n_values |
42 | 42 | * @return EE_Country |
43 | 43 | */ |
44 | - public static function new_instance_from_db( $props_n_values = array() ) { |
|
45 | - return new self( $props_n_values, TRUE ); |
|
44 | + public static function new_instance_from_db($props_n_values = array()) { |
|
45 | + return new self($props_n_values, TRUE); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * @return string |
55 | 55 | */ |
56 | 56 | public function name() { |
57 | - return $this->get( 'CNT_name' ); |
|
57 | + return $this->get('CNT_name'); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @return string |
65 | 65 | */ |
66 | 66 | public function currency_code() { |
67 | - return $this->get( 'CNT_cur_code' ); |
|
67 | + return $this->get('CNT_cur_code'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | * @return string |
75 | 75 | */ |
76 | 76 | public function currency_sign() { |
77 | - $CNT_cur_sign = $this->get( 'CNT_cur_sign' ); |
|
77 | + $CNT_cur_sign = $this->get('CNT_cur_sign'); |
|
78 | 78 | return $CNT_cur_sign ? $CNT_cur_sign : '¤'; |
79 | 79 | } |
80 | 80 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @return string |
86 | 86 | */ |
87 | 87 | public function currency_name_single() { |
88 | - return $this->get( 'CNT_cur_single' ); |
|
88 | + return $this->get('CNT_cur_single'); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return string |
96 | 96 | */ |
97 | 97 | public function currency_name_plural() { |
98 | - return $this->get( 'CNT_cur_plural' ); |
|
98 | + return $this->get('CNT_cur_plural'); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * @return boolean |
106 | 106 | */ |
107 | 107 | public function currency_sign_before() { |
108 | - return $this->get( 'CNT_cur_sign_b4' ); |
|
108 | + return $this->get('CNT_cur_sign_b4'); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * @return integer |
116 | 116 | */ |
117 | 117 | public function currency_decimal_places() { |
118 | - return $this->get( 'CNT_cur_dec_plc' ); |
|
118 | + return $this->get('CNT_cur_dec_plc'); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @return string |
126 | 126 | */ |
127 | 127 | public function currency_decimal_mark() { |
128 | - return $this->get( 'CNT_cur_dec_mrk' ); |
|
128 | + return $this->get('CNT_cur_dec_mrk'); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | * @return string |
136 | 136 | */ |
137 | 137 | public function currency_thousands_separator() { |
138 | - return $this->get( 'CNT_cur_thsnds' ); |
|
138 | + return $this->get('CNT_cur_thsnds'); |
|
139 | 139 | } |
140 | 140 | } |
141 | 141 | /* End of file EE_Country.class.php */ |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * The main purpose of this method is to return the parent for the model object |
99 | 99 | * |
100 | 100 | * @access public |
101 | - * @return int |
|
101 | + * @return boolean |
|
102 | 102 | */ |
103 | 103 | public function parent() { |
104 | 104 | return $this->get( 'parent' ); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | /** |
110 | 110 | * return the _status property |
111 | - * @return string |
|
111 | + * @return boolean |
|
112 | 112 | */ |
113 | 113 | public function status() { |
114 | 114 | return $this->get( 'status' ); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * |
131 | 131 | * @link http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail |
132 | 132 | * @access protected |
133 | - * @param string|array $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array representing width and height in pixels (i.e. array(32,32) ). |
|
133 | + * @param string $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array representing width and height in pixels (i.e. array(32,32) ). |
|
134 | 134 | * @param string|array $attr Optional. Query string or array of attributes. |
135 | 135 | * @return string HTML image element |
136 | 136 | */ |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | /** |
160 | 160 | * This uses the wp "wp_get_attachment_image_src()" function to return the feature image for the current class using the given size params. |
161 | - * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
|
161 | + * @param integer[] $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
|
162 | 162 | * @return string|boolean the url of the image or false if not found |
163 | 163 | */ |
164 | 164 | public function feature_image_url( $size = 'thumbnail' ) { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * Wrapper for get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta |
219 | 219 | * @param string $meta_key |
220 | 220 | * @param boolean $single |
221 | - * @return mixed <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
221 | + * @return string|null <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
222 | 222 | * <li>If $single is set to false, or left blank, the function returns an array containing all values of the specified key.</li> |
223 | 223 | * <li>If $single is set to true, the function returns the first value of the specified key (not in an array</li></ul> |
224 | 224 | */ |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | /** |
276 | 276 | * Gets all the term-taxonomies for this CPT |
277 | 277 | * @param array $query_params |
278 | - * @return EE_Term_Taxonomy |
|
278 | + * @return EE_Base_Class[] |
|
279 | 279 | */ |
280 | 280 | public function term_taxonomies( $query_params = array() ) { |
281 | 281 | return $this->get_many_related( 'Term_Taxonomy', $query_params ); |
@@ -1,5 +1,5 @@ discard block |
||
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 |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | * @param int $parent_term_taxonomy_id optional |
48 | 48 | * @return EE_Term_Taxonomy |
49 | 49 | */ |
50 | - function add_event_category( $category_name, $category_description = NULL, $parent_term_taxonomy_id = NULL ) { |
|
51 | - return $this->get_model()->add_event_category( $this, $category_name, $category_description, $parent_term_taxonomy_id ); |
|
50 | + function add_event_category($category_name, $category_description = NULL, $parent_term_taxonomy_id = NULL) { |
|
51 | + return $this->get_model()->add_event_category($this, $category_name, $category_description, $parent_term_taxonomy_id); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | |
@@ -58,8 +58,8 @@ discard block |
||
58 | 58 | * @param string $category_name |
59 | 59 | * @return bool |
60 | 60 | */ |
61 | - function remove_event_category( $category_name ) { |
|
62 | - return $this->get_model()->remove_event_category( $this, $category_name ); |
|
61 | + function remove_event_category($category_name) { |
|
62 | + return $this->get_model()->remove_event_category($this, $category_name); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | |
@@ -70,14 +70,14 @@ discard block |
||
70 | 70 | * @param EE_Term_Taxonomy $term_taxonomy |
71 | 71 | * @return EE_Base_Class the relation was removed from |
72 | 72 | */ |
73 | - function remove_relation_to_term_taxonomy( $term_taxonomy ) { |
|
74 | - if ( !$term_taxonomy ) { |
|
75 | - EE_Error::add_error( sprintf( __( "No Term_Taxonomy provided which to remove from model object of type %s and id %d", "event_espresso" ), get_class( $this ), $this->ID() ), __FILE__, __FUNCTION__, __LINE__ ); |
|
73 | + function remove_relation_to_term_taxonomy($term_taxonomy) { |
|
74 | + if ( ! $term_taxonomy) { |
|
75 | + EE_Error::add_error(sprintf(__("No Term_Taxonomy provided which to remove from model object of type %s and id %d", "event_espresso"), get_class($this), $this->ID()), __FILE__, __FUNCTION__, __LINE__); |
|
76 | 76 | return NULL; |
77 | 77 | } |
78 | - $term_taxonomy->set_count( $term_taxonomy->count() - 1 ); |
|
78 | + $term_taxonomy->set_count($term_taxonomy->count() - 1); |
|
79 | 79 | $term_taxonomy->save(); |
80 | - return $this->_remove_relation_to( $term_taxonomy, 'Term_Taxonomy' ); |
|
80 | + return $this->_remove_relation_to($term_taxonomy, 'Term_Taxonomy'); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @return int |
102 | 102 | */ |
103 | 103 | public function parent() { |
104 | - return $this->get( 'parent' ); |
|
104 | + return $this->get('parent'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return string |
112 | 112 | */ |
113 | 113 | public function status() { |
114 | - return $this->get( 'status' ); |
|
114 | + return $this->get('status'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | /** |
120 | 120 | * @param string $status |
121 | 121 | */ |
122 | - public function set_status( $status ) { |
|
123 | - $this->set( 'status', $status ); |
|
122 | + public function set_status($status) { |
|
123 | + $this->set('status', $status); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | * @param string|array $attr Optional. Query string or array of attributes. |
135 | 135 | * @return string HTML image element |
136 | 136 | */ |
137 | - protected function _get_feature_image( $size, $attr ) { |
|
137 | + protected function _get_feature_image($size, $attr) { |
|
138 | 138 | //first let's see if we already have the _feature_image property set AND if it has a cached element on it FOR the given size |
139 | - $attr_key = is_array( $attr ) ? implode( '_', $attr ) : $attr; |
|
140 | - $cache_key = is_array( $size ) ? implode( '_', $size ) . $attr_key : $size . $attr_key; |
|
141 | - $this->_feature_image[ $cache_key ] = isset( $this->_feature_image[ $cache_key ] ) ? $this->_feature_image[ $cache_key ] : $this->get_model()->get_feature_image( $this->ID(), $size, $attr ); |
|
142 | - return $this->_feature_image[ $cache_key ]; |
|
139 | + $attr_key = is_array($attr) ? implode('_', $attr) : $attr; |
|
140 | + $cache_key = is_array($size) ? implode('_', $size).$attr_key : $size.$attr_key; |
|
141 | + $this->_feature_image[$cache_key] = isset($this->_feature_image[$cache_key]) ? $this->_feature_image[$cache_key] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
142 | + return $this->_feature_image[$cache_key]; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | * @param string|array $attr |
151 | 151 | * @return string of html |
152 | 152 | */ |
153 | - public function feature_image( $size = 'thumbnail', $attr = '' ) { |
|
154 | - return $this->_get_feature_image( $size, $attr ); |
|
153 | + public function feature_image($size = 'thumbnail', $attr = '') { |
|
154 | + return $this->_get_feature_image($size, $attr); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | |
@@ -161,9 +161,9 @@ discard block |
||
161 | 161 | * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array representing width and height in pixels eg. array(32,32). |
162 | 162 | * @return string|boolean the url of the image or false if not found |
163 | 163 | */ |
164 | - public function feature_image_url( $size = 'thumbnail' ) { |
|
165 | - $attachment = wp_get_attachment_image_src( get_post_thumbnail_id( $this->ID() ), $size ); |
|
166 | - return !empty( $attachment ) ? $attachment[ 0 ] : FALSE; |
|
164 | + public function feature_image_url($size = 'thumbnail') { |
|
165 | + $attachment = wp_get_attachment_image_src(get_post_thumbnail_id($this->ID()), $size); |
|
166 | + return ! empty($attachment) ? $attachment[0] : FALSE; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | |
@@ -176,37 +176,37 @@ discard block |
||
176 | 176 | * @internal param array|string $related_obj_names if included this will be used to restore for related obj if not included then we just do restore on the meta. We will accept an array of related_obj_names for restoration here. |
177 | 177 | * @return void |
178 | 178 | */ |
179 | - public function restore_revision( $revision_id, $related_obj_names = array(), $where_query = array() ) { |
|
179 | + public function restore_revision($revision_id, $related_obj_names = array(), $where_query = array()) { |
|
180 | 180 | //get revision object |
181 | - $revision_obj = $this->get_model()->get_one_by_ID( $revision_id ); |
|
182 | - if ( $revision_obj instanceof EE_CPT_Base ) { |
|
181 | + $revision_obj = $this->get_model()->get_one_by_ID($revision_id); |
|
182 | + if ($revision_obj instanceof EE_CPT_Base) { |
|
183 | 183 | //no related_obj_name so we assume we're saving a revision on this object. |
184 | - if ( empty( $related_obj_names ) ) { |
|
184 | + if (empty($related_obj_names)) { |
|
185 | 185 | $fields = $this->get_model()->get_meta_table_fields(); |
186 | - foreach ( $fields as $field ) { |
|
187 | - $this->set( $field, $revision_obj->get( $field ) ); |
|
186 | + foreach ($fields as $field) { |
|
187 | + $this->set($field, $revision_obj->get($field)); |
|
188 | 188 | } |
189 | 189 | $this->save(); |
190 | 190 | } |
191 | - $related_obj_names = (array)$related_obj_names; |
|
192 | - foreach ( $related_obj_names as $related_name ) { |
|
191 | + $related_obj_names = (array) $related_obj_names; |
|
192 | + foreach ($related_obj_names as $related_name) { |
|
193 | 193 | //related_obj_name so we're saving a revision on an object related to this object |
194 | 194 | //do we have $where_query params for this related object? If we do then we include that. |
195 | - $cols_n_values = isset( $where_query[ $related_name ] ) ? $where_query[ $related_name ] : array(); |
|
196 | - $where_params = !empty( $cols_n_values ) ? array( $cols_n_values ) : array(); |
|
197 | - $related_objs = $this->get_many_related( $related_name, $where_params ); |
|
198 | - $revision_related_objs = $revision_obj->get_many_related( $related_name, $where_params ); |
|
195 | + $cols_n_values = isset($where_query[$related_name]) ? $where_query[$related_name] : array(); |
|
196 | + $where_params = ! empty($cols_n_values) ? array($cols_n_values) : array(); |
|
197 | + $related_objs = $this->get_many_related($related_name, $where_params); |
|
198 | + $revision_related_objs = $revision_obj->get_many_related($related_name, $where_params); |
|
199 | 199 | //load helper |
200 | - EE_Registry::instance()->load_helper( 'Array' ); |
|
200 | + EE_Registry::instance()->load_helper('Array'); |
|
201 | 201 | //remove related objs from this object that are not in revision |
202 | 202 | //array_diff *should* work cause I think objects are indexed by ID? |
203 | - $related_to_remove = EEH_Array::object_array_diff( $related_objs, $revision_related_objs ); |
|
204 | - foreach ( $related_to_remove as $rr ) { |
|
205 | - $this->_remove_relation_to( $rr, $related_name, $cols_n_values ); |
|
203 | + $related_to_remove = EEH_Array::object_array_diff($related_objs, $revision_related_objs); |
|
204 | + foreach ($related_to_remove as $rr) { |
|
205 | + $this->_remove_relation_to($rr, $related_name, $cols_n_values); |
|
206 | 206 | } |
207 | 207 | //add all related objs attached to revision to this object |
208 | - foreach ( $revision_related_objs as $r_obj ) { |
|
209 | - $this->_add_relation_to( $r_obj, $related_name, $cols_n_values ); |
|
208 | + foreach ($revision_related_objs as $r_obj) { |
|
209 | + $this->_add_relation_to($r_obj, $related_name, $cols_n_values); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | } |
@@ -222,8 +222,8 @@ discard block |
||
222 | 222 | * <li>If $single is set to false, or left blank, the function returns an array containing all values of the specified key.</li> |
223 | 223 | * <li>If $single is set to true, the function returns the first value of the specified key (not in an array</li></ul> |
224 | 224 | */ |
225 | - public function get_post_meta( $meta_key = NULL, $single = FALSE ) { |
|
226 | - return get_post_meta( $this->ID(), $meta_key, $single ); |
|
225 | + public function get_post_meta($meta_key = NULL, $single = FALSE) { |
|
226 | + return get_post_meta($this->ID(), $meta_key, $single); |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | |
@@ -236,11 +236,11 @@ discard block |
||
236 | 236 | * @throws EE_Error |
237 | 237 | * @return mixed Returns meta_id if the meta doesn't exist, otherwise returns true on success and false on failure. NOTE: If the meta_value passed to this function is the same as the value that is already in the database, this function returns false. |
238 | 238 | */ |
239 | - public function update_post_meta( $meta_key, $meta_value, $prev_value = NULL ) { |
|
240 | - if ( !$this->ID() ) { |
|
241 | - throw new EE_Error( sprintf( __( "You must save this custom post type before adding or updating a post meta field", "event_espresso" ) ) ); |
|
239 | + public function update_post_meta($meta_key, $meta_value, $prev_value = NULL) { |
|
240 | + if ( ! $this->ID()) { |
|
241 | + throw new EE_Error(sprintf(__("You must save this custom post type before adding or updating a post meta field", "event_espresso"))); |
|
242 | 242 | } |
243 | - return update_post_meta( $this->ID(), $meta_key, $meta_value, $prev_value ); |
|
243 | + return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | |
@@ -253,11 +253,11 @@ discard block |
||
253 | 253 | * @throws EE_Error |
254 | 254 | * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given key already exists, in which case false is returned. |
255 | 255 | */ |
256 | - public function add_post_meta( $meta_key, $meta_value, $unique = FALSE ) { |
|
257 | - if ( !$this->ID() ) { |
|
258 | - throw new EE_Error( sprintf( __( "You must save this custom post type before adding or updating a post meta field", "event_espresso" ) ) ); |
|
256 | + public function add_post_meta($meta_key, $meta_value, $unique = FALSE) { |
|
257 | + if ( ! $this->ID()) { |
|
258 | + throw new EE_Error(sprintf(__("You must save this custom post type before adding or updating a post meta field", "event_espresso"))); |
|
259 | 259 | } |
260 | - return add_post_meta( $this->ID(), $meta_key, $meta_value, $unique ); |
|
260 | + return add_post_meta($this->ID(), $meta_key, $meta_value, $unique); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @return string |
268 | 268 | */ |
269 | 269 | public function get_permalink() { |
270 | - return get_permalink( $this->ID() ); |
|
270 | + return get_permalink($this->ID()); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | |
@@ -277,8 +277,8 @@ discard block |
||
277 | 277 | * @param array $query_params |
278 | 278 | * @return EE_Term_Taxonomy |
279 | 279 | */ |
280 | - public function term_taxonomies( $query_params = array() ) { |
|
281 | - return $this->get_many_related( 'Term_Taxonomy', $query_params ); |
|
280 | + public function term_taxonomies($query_params = array()) { |
|
281 | + return $this->get_many_related('Term_Taxonomy', $query_params); |
|
282 | 282 | } |
283 | 283 | |
284 | 284 |
@@ -2,18 +2,18 @@ |
||
2 | 2 | exit( 'No direct script access allowed' ); |
3 | 3 | } |
4 | 4 | /** |
5 | - * Event Espresso |
|
6 | - * |
|
7 | - * Event Registration and Management Plugin for WordPress |
|
8 | - * |
|
9 | - * @ package Event Espresso |
|
10 | - * @ author Event Espresso |
|
11 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | - * @ link {@link http://www.eventespresso.com} |
|
14 | - * @ since 4.0 |
|
15 | - * |
|
16 | - */ |
|
5 | + * Event Espresso |
|
6 | + * |
|
7 | + * Event Registration and Management Plugin for WordPress |
|
8 | + * |
|
9 | + * @ package Event Espresso |
|
10 | + * @ author Event Espresso |
|
11 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
12 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
13 | + * @ link {@link http://www.eventespresso.com} |
|
14 | + * @ since 4.0 |
|
15 | + * |
|
16 | + */ |
|
17 | 17 | |
18 | 18 | |
19 | 19 |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | * Sends HTTP headers to indicate that the browser should download a file, |
288 | 288 | * and starts writing the file to PHP's output. Returns the file handle so other functions can |
289 | 289 | * also write to it |
290 | - * @param string $new_filename the name of the file that the user will download |
|
290 | + * @param string|false $filename the name of the file that the user will download |
|
291 | 291 | * @return resource, like the results of fopen(), which can be used for fwrite, fputcsv2, etc. |
292 | 292 | */ |
293 | 293 | public function begin_sending_csv($filename){ |
@@ -343,9 +343,7 @@ discard block |
||
343 | 343 | /** |
344 | 344 | * Writes $data to the csv file open in $filehandle. uses the array indices of $data for column headers |
345 | 345 | * @param array $data 2D array, first numerically-indexed, and next-level-down preferably indexed by string |
346 | - * @param boolean $add_csv_column_names whether or not we should add the keys in the bottom-most array as a row for headers in the CSV. |
|
347 | - * Eg, if $data looked like array(0=>array('EVT_ID'=>1,'EVT_name'=>'monkey'...), 1=>array(...),...)) |
|
348 | - * then the first row we'd write to the CSV would be "EVT_ID,EVT_name,..." |
|
346 | + * @param resource $filehandle |
|
349 | 347 | * @return boolean if we successfully wrote to the CSV or not. If there's no $data, we consider that a success (because we wrote everything there was...nothing) |
350 | 348 | */ |
351 | 349 | public function write_data_array_to_csv($filehandle, $data){ |
@@ -427,7 +425,7 @@ discard block |
||
427 | 425 | * @param array $model_data_array is assumed to be a 3d array: 1st layer has keys of model names (eg 'Event'), |
428 | 426 | * next layer is numerically indexed to represent each model object (eg, each individual event), and the last layer |
429 | 427 | * has all the attributes o fthat model object (eg, the event's id, name, etc) |
430 | - * @return boolean success |
|
428 | + * @return boolean|null success |
|
431 | 429 | */ |
432 | 430 | public function write_model_data_to_csv($filehandle,$model_data_array){ |
433 | 431 | $this->write_metadata_to_csv($filehandle); |
@@ -456,8 +454,8 @@ discard block |
||
456 | 454 | * Writes the CSV file to the output buffer, with rows corresponding to $model_data_array, |
457 | 455 | * and dies (in order to avoid other plugins from messing up the csv output) |
458 | 456 | * @param string $filename the filename you want to give the file |
459 | - * @param array $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
460 | - * @return bool | void writes CSV file to output and dies |
|
457 | + * @param boolean $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
458 | + * @return boolean|null | void writes CSV file to output and dies |
|
461 | 459 | */ |
462 | 460 | public function export_multiple_model_data_to_csv($filename,$model_data_array){ |
463 | 461 | $filehandle = $this->begin_sending_csv($filename); |
@@ -469,7 +467,7 @@ discard block |
||
469 | 467 | * @access public |
470 | 468 | * @param array $data - the array of data to be converted to csv and exported |
471 | 469 | * @param string $filename - name for newly created csv file |
472 | - * @return TRUE on success, FALSE on fail |
|
470 | + * @return false|null on success, FALSE on fail |
|
473 | 471 | */ |
474 | 472 | public function export_array_to_csv( $data = FALSE, $filename = FALSE ) { |
475 | 473 |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
2 | 2 | /** |
3 | 3 | * CSV Import Export class |
4 | 4 | * |
@@ -41,31 +41,31 @@ discard block |
||
41 | 41 | global $wpdb; |
42 | 42 | |
43 | 43 | $this->_primary_keys = array( |
44 | - $wpdb->prefix . 'esp_answer' => array( 'ANS_ID' ), |
|
45 | - $wpdb->prefix . 'esp_attendee' => array( 'ATT_ID' ), |
|
46 | - $wpdb->prefix . 'esp_datetime' => array( 'DTT_ID' ), |
|
47 | - $wpdb->prefix . 'esp_event_question_group' => array( 'EQG_ID' ), |
|
48 | - $wpdb->prefix . 'esp_message_template' => array( 'MTP_ID' ), |
|
49 | - $wpdb->prefix . 'esp_payment' => array( 'PAY_ID' ), |
|
50 | - $wpdb->prefix . 'esp_price' => array( 'PRC_ID' ), |
|
51 | - $wpdb->prefix . 'esp_price_type' => array( 'PRT_ID' ), |
|
52 | - $wpdb->prefix . 'esp_question' => array( 'QST_ID' ), |
|
53 | - $wpdb->prefix . 'esp_question_group' => array( 'QSG_ID' ), |
|
54 | - $wpdb->prefix . 'esp_question_group_question' => array( 'QGQ_ID' ), |
|
55 | - $wpdb->prefix . 'esp_question_option' => array( 'QSO_ID' ), |
|
56 | - $wpdb->prefix . 'esp_registration' => array( 'REG_ID' ), |
|
57 | - $wpdb->prefix . 'esp_status' => array( 'STS_ID' ), |
|
58 | - $wpdb->prefix . 'esp_transaction' => array( 'TXN_ID' ), |
|
59 | - $wpdb->prefix . 'esp_transaction' => array( 'TXN_ID' ), |
|
60 | - $wpdb->prefix . 'events_detail' => array( 'id' ), |
|
61 | - $wpdb->prefix . 'events_category_detail' => array( 'id' ), |
|
62 | - $wpdb->prefix . 'events_category_rel' => array( 'id' ), |
|
63 | - $wpdb->prefix . 'events_venue' => array( 'id' ), |
|
64 | - $wpdb->prefix . 'events_venue_rel' => array( 'emeta_id' ), |
|
65 | - $wpdb->prefix . 'events_locale' => array( 'id' ), |
|
66 | - $wpdb->prefix . 'events_locale_rel' => array( 'id' ), |
|
67 | - $wpdb->prefix . 'events_personnel' => array( 'id' ), |
|
68 | - $wpdb->prefix . 'events_personnel_rel' => array( 'id' ), |
|
44 | + $wpdb->prefix.'esp_answer' => array('ANS_ID'), |
|
45 | + $wpdb->prefix.'esp_attendee' => array('ATT_ID'), |
|
46 | + $wpdb->prefix.'esp_datetime' => array('DTT_ID'), |
|
47 | + $wpdb->prefix.'esp_event_question_group' => array('EQG_ID'), |
|
48 | + $wpdb->prefix.'esp_message_template' => array('MTP_ID'), |
|
49 | + $wpdb->prefix.'esp_payment' => array('PAY_ID'), |
|
50 | + $wpdb->prefix.'esp_price' => array('PRC_ID'), |
|
51 | + $wpdb->prefix.'esp_price_type' => array('PRT_ID'), |
|
52 | + $wpdb->prefix.'esp_question' => array('QST_ID'), |
|
53 | + $wpdb->prefix.'esp_question_group' => array('QSG_ID'), |
|
54 | + $wpdb->prefix.'esp_question_group_question' => array('QGQ_ID'), |
|
55 | + $wpdb->prefix.'esp_question_option' => array('QSO_ID'), |
|
56 | + $wpdb->prefix.'esp_registration' => array('REG_ID'), |
|
57 | + $wpdb->prefix.'esp_status' => array('STS_ID'), |
|
58 | + $wpdb->prefix.'esp_transaction' => array('TXN_ID'), |
|
59 | + $wpdb->prefix.'esp_transaction' => array('TXN_ID'), |
|
60 | + $wpdb->prefix.'events_detail' => array('id'), |
|
61 | + $wpdb->prefix.'events_category_detail' => array('id'), |
|
62 | + $wpdb->prefix.'events_category_rel' => array('id'), |
|
63 | + $wpdb->prefix.'events_venue' => array('id'), |
|
64 | + $wpdb->prefix.'events_venue_rel' => array('emeta_id'), |
|
65 | + $wpdb->prefix.'events_locale' => array('id'), |
|
66 | + $wpdb->prefix.'events_locale_rel' => array('id'), |
|
67 | + $wpdb->prefix.'events_personnel' => array('id'), |
|
68 | + $wpdb->prefix.'events_personnel_rel' => array('id'), |
|
69 | 69 | ); |
70 | 70 | |
71 | 71 | } |
@@ -77,9 +77,9 @@ discard block |
||
77 | 77 | * @ access public |
78 | 78 | * @ return class instance |
79 | 79 | */ |
80 | - public static function instance ( ) { |
|
80 | + public static function instance( ) { |
|
81 | 81 | // check if class object is instantiated |
82 | - if ( self::$_instance === NULL or ! is_object( self::$_instance ) or ! ( self::$_instance instanceof EE_CSV )) { |
|
82 | + if (self::$_instance === NULL or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_CSV)) { |
|
83 | 83 | self::$_instance = new self(); |
84 | 84 | } |
85 | 85 | return self::$_instance; |
@@ -91,22 +91,22 @@ discard block |
||
91 | 91 | * @return string |
92 | 92 | * @throws EE_Error |
93 | 93 | */ |
94 | - private function read_unicode_file($file_path){ |
|
94 | + private function read_unicode_file($file_path) { |
|
95 | 95 | $fc = ""; |
96 | - $fh = fopen($file_path,"rb"); |
|
97 | - if( ! $fh ){ |
|
98 | - throw new EE_Error( sprintf( __("Cannot open file for read: %s<br>\n", 'event_espresso'), $file_path ) ); |
|
96 | + $fh = fopen($file_path, "rb"); |
|
97 | + if ( ! $fh) { |
|
98 | + throw new EE_Error(sprintf(__("Cannot open file for read: %s<br>\n", 'event_espresso'), $file_path)); |
|
99 | 99 | } |
100 | 100 | $flen = filesize($file_path); |
101 | 101 | $bc = fread($fh, $flen); |
102 | - for ($i=0; $i<$flen; $i++){ |
|
103 | - $c = substr($bc,$i,1); |
|
104 | - if ((ord($c) != 0) && (ord($c) != 13)){ |
|
105 | - $fc = $fc . $c; |
|
102 | + for ($i = 0; $i < $flen; $i++) { |
|
103 | + $c = substr($bc, $i, 1); |
|
104 | + if ((ord($c) != 0) && (ord($c) != 13)) { |
|
105 | + $fc = $fc.$c; |
|
106 | 106 | } |
107 | 107 | } |
108 | - if ((ord(substr($fc,0,1)) == 255) && (ord(substr($fc,1,1)) == 254)) |
|
109 | - $fc = substr($fc,2); |
|
108 | + if ((ord(substr($fc, 0, 1)) == 255) && (ord(substr($fc, 1, 1)) == 254)) |
|
109 | + $fc = substr($fc, 2); |
|
110 | 110 | return ($fc); |
111 | 111 | } |
112 | 112 | |
@@ -118,15 +118,15 @@ discard block |
||
118 | 118 | * @param string $path_to_file |
119 | 119 | * @return array of arrays. Top-level array has rows, second-level array has each item |
120 | 120 | */ |
121 | - public function import_csv_to_multi_dimensional_array($path_to_file){ |
|
121 | + public function import_csv_to_multi_dimensional_array($path_to_file) { |
|
122 | 122 | // needed to deal with Mac line endings |
123 | - ini_set('auto_detect_line_endings',TRUE); |
|
123 | + ini_set('auto_detect_line_endings', TRUE); |
|
124 | 124 | |
125 | 125 | // because fgetcsv does not correctly deal with backslashed quotes such as \" |
126 | 126 | // we'll read the file into a string |
127 | - $file_contents = $this->read_unicode_file( $path_to_file ); |
|
127 | + $file_contents = $this->read_unicode_file($path_to_file); |
|
128 | 128 | // replace backslashed quotes with CSV enclosures |
129 | - $file_contents = str_replace ( '\\"', '"""', $file_contents ); |
|
129 | + $file_contents = str_replace('\\"', '"""', $file_contents); |
|
130 | 130 | // HEY YOU! PUT THAT FILE BACK!!! |
131 | 131 | file_put_contents($path_to_file, $file_contents); |
132 | 132 | |
@@ -136,25 +136,25 @@ discard block |
||
136 | 136 | $csvarray = array(); |
137 | 137 | |
138 | 138 | // in PHP 5.3 fgetcsv accepts a 5th parameter, but the pre 5.3 versions of fgetcsv choke if passed more than 4 - is that crazy or what? |
139 | - if ( version_compare( PHP_VERSION, '5.3.0' ) < 0 ) { |
|
139 | + if (version_compare(PHP_VERSION, '5.3.0') < 0) { |
|
140 | 140 | |
141 | 141 | // PHP 5.2- version |
142 | 142 | |
143 | 143 | // loop through each row of the file |
144 | - while(($data = fgetcsv($file_handle, 0, ',', '"' )) !== FALSE){ |
|
145 | - $csvarray[]= $data; |
|
144 | + while (($data = fgetcsv($file_handle, 0, ',', '"')) !== FALSE) { |
|
145 | + $csvarray[] = $data; |
|
146 | 146 | } |
147 | - }else{ |
|
147 | + } else { |
|
148 | 148 | // loop through each row of the file |
149 | - while (( $data = fgetcsv( $file_handle, 0, ',', '"', '\\' )) !== FALSE ) { |
|
150 | - $csvarray[]=$data; |
|
149 | + while (($data = fgetcsv($file_handle, 0, ',', '"', '\\')) !== FALSE) { |
|
150 | + $csvarray[] = $data; |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 | # Close the File. |
154 | 154 | fclose($file_handle); |
155 | 155 | return $csvarray; |
156 | - }else{ |
|
157 | - EE_Error::add_error( sprintf(__("An error occurred - the file: %s could not opened.", "event_espresso"),$path_to_file), __FILE__, __FUNCTION__, __LINE__ ); |
|
156 | + } else { |
|
157 | + EE_Error::add_error(sprintf(__("An error occurred - the file: %s could not opened.", "event_espresso"), $path_to_file), __FILE__, __FUNCTION__, __LINE__); |
|
158 | 158 | return false; |
159 | 159 | } |
160 | 160 | } |
@@ -184,9 +184,9 @@ discard block |
||
184 | 184 | * ... |
185 | 185 | * ) |
186 | 186 | */ |
187 | - public function import_csv_to_model_data_array( $path_to_file, $model_name = FALSE, $first_row_is_headers = TRUE ) { |
|
187 | + public function import_csv_to_model_data_array($path_to_file, $model_name = FALSE, $first_row_is_headers = TRUE) { |
|
188 | 188 | $multi_dimensional_array = $this->import_csv_to_multi_dimensional_array($path_to_file); |
189 | - if( ! $multi_dimensional_array ){ |
|
189 | + if ( ! $multi_dimensional_array) { |
|
190 | 190 | return false; |
191 | 191 | } |
192 | 192 | // gotta start somewhere |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | $ee_formatted_data = array(); |
196 | 196 | // array to store headers (column names) |
197 | 197 | $headers = array(); |
198 | - foreach($multi_dimensional_array as $data){ |
|
198 | + foreach ($multi_dimensional_array as $data) { |
|
199 | 199 | // if first cell is MODEL, then second cell is the MODEL name |
200 | - if ( $data[0] == 'MODEL' ) { |
|
200 | + if ($data[0] == 'MODEL') { |
|
201 | 201 | $model_name = $data[1]; |
202 | 202 | //don't bother looking for model data in this row. The rest of this |
203 | 203 | //row should be blank |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | $headers = array(); |
208 | 208 | continue; |
209 | 209 | } |
210 | - if( strpos( $data[0], EE_CSV::metadata_header ) !==FALSE ){ |
|
210 | + if (strpos($data[0], EE_CSV::metadata_header) !== FALSE) { |
|
211 | 211 | $model_name = EE_CSV::metadata_header; |
212 | 212 | //store like model data, we just won't try importing it etc. |
213 | 213 | $row = 1; |
@@ -220,31 +220,31 @@ discard block |
||
220 | 220 | |
221 | 221 | $model_entry = array(); |
222 | 222 | // loop through each column |
223 | - for ( $i=0; $i < $columns; $i++ ) { |
|
223 | + for ($i = 0; $i < $columns; $i++) { |
|
224 | 224 | |
225 | 225 | //replace csv_enclosures with backslashed quotes |
226 | - $data[$i] = str_replace ( '"""', '\\"', $data[$i] ); |
|
226 | + $data[$i] = str_replace('"""', '\\"', $data[$i]); |
|
227 | 227 | // do we need to grab the column names? |
228 | - if ( $row === 1){ |
|
229 | - if( $first_row_is_headers ) { |
|
228 | + if ($row === 1) { |
|
229 | + if ($first_row_is_headers) { |
|
230 | 230 | // store the column names to use for keys |
231 | 231 | $column_name = $data[$i]; |
232 | 232 | //check it's not blank... sometimes CSV editign programs adda bunch of empty columns onto the end... |
233 | - if(!$column_name){continue;} |
|
233 | + if ( ! $column_name) {continue; } |
|
234 | 234 | $matches = array(); |
235 | - if($model_name == EE_CSV::metadata_header){ |
|
235 | + if ($model_name == EE_CSV::metadata_header) { |
|
236 | 236 | $headers[$i] = $column_name; |
237 | - }else{ |
|
237 | + } else { |
|
238 | 238 | //now get the db table name from it (the part between square brackets) |
239 | - $success = preg_match('~(.*)\[(.*)\]~', $column_name,$matches); |
|
240 | - if (!$success){ |
|
241 | - EE_Error::add_error( sprintf(__("The column titled %s is invalid for importing. It must be be in the format of 'Nice Name[model_field_name]' in row %s", "event_espresso"),$column_name,implode(",",$data)), __FILE__, __FUNCTION__, __LINE__ ); |
|
239 | + $success = preg_match('~(.*)\[(.*)\]~', $column_name, $matches); |
|
240 | + if ( ! $success) { |
|
241 | + EE_Error::add_error(sprintf(__("The column titled %s is invalid for importing. It must be be in the format of 'Nice Name[model_field_name]' in row %s", "event_espresso"), $column_name, implode(",", $data)), __FILE__, __FUNCTION__, __LINE__); |
|
242 | 242 | return false; |
243 | 243 | } |
244 | 244 | $headers[$i] = $matches[2]; |
245 | 245 | } |
246 | 246 | |
247 | - }else{ |
|
247 | + } else { |
|
248 | 248 | // no column names means our final array will just use counters for keys |
249 | 249 | $model_entry[$headers[$i]] = $data[$i]; |
250 | 250 | $headers[$i] = $i; |
@@ -252,14 +252,14 @@ discard block |
||
252 | 252 | // and we need to store csv data |
253 | 253 | } else { |
254 | 254 | // this column isn' ta header, store it if there is a header for it |
255 | - if(isset($headers[$i])){ |
|
255 | + if (isset($headers[$i])) { |
|
256 | 256 | $model_entry[$headers[$i]] = $data[$i]; |
257 | 257 | } |
258 | 258 | } |
259 | 259 | |
260 | 260 | } |
261 | 261 | //save the row's data IF it's a non-header-row |
262 | - if( ! $first_row_is_headers || ($first_row_is_headers && $row > 1)){ |
|
262 | + if ( ! $first_row_is_headers || ($first_row_is_headers && $row > 1)) { |
|
263 | 263 | $ee_formatted_data[$model_name][] = $model_entry; |
264 | 264 | } |
265 | 265 | // advance to next row |
@@ -278,9 +278,9 @@ discard block |
||
278 | 278 | } |
279 | 279 | |
280 | 280 | |
281 | - public function save_csv_to_db( $csv_data_array, $model_name = FALSE ) { |
|
282 | - EE_Error::doing_it_wrong('save_csv_to_db', __( 'Function moved to EE_Import and renamed to save_csv_data_array_to_db', 'event_espresso' ), '4.6.7' ); |
|
283 | - return EE_Import::instance()->save_csv_data_array_to_db( $csv_data_array, $model_name ); |
|
281 | + public function save_csv_to_db($csv_data_array, $model_name = FALSE) { |
|
282 | + EE_Error::doing_it_wrong('save_csv_to_db', __('Function moved to EE_Import and renamed to save_csv_data_array_to_db', 'event_espresso'), '4.6.7'); |
|
283 | + return EE_Import::instance()->save_csv_data_array_to_db($csv_data_array, $model_name); |
|
284 | 284 | } |
285 | 285 | |
286 | 286 | /** |
@@ -290,11 +290,11 @@ discard block |
||
290 | 290 | * @param string $new_filename the name of the file that the user will download |
291 | 291 | * @return resource, like the results of fopen(), which can be used for fwrite, fputcsv2, etc. |
292 | 292 | */ |
293 | - public function begin_sending_csv($filename){ |
|
293 | + public function begin_sending_csv($filename) { |
|
294 | 294 | // grab file extension |
295 | 295 | $ext = substr(strrchr($filename, '.'), 1); |
296 | - if ( $ext == '.csv' or $ext == '.xls' ) { |
|
297 | - str_replace( $ext, '', $filename ); |
|
296 | + if ($ext == '.csv' or $ext == '.xls') { |
|
297 | + str_replace($ext, '', $filename); |
|
298 | 298 | } |
299 | 299 | $filename .= '.csv'; |
300 | 300 | |
@@ -325,12 +325,12 @@ discard block |
||
325 | 325 | * mentioning the version and timezone |
326 | 326 | * @param resource $filehandle |
327 | 327 | */ |
328 | - public function write_metadata_to_csv($filehandle){ |
|
328 | + public function write_metadata_to_csv($filehandle) { |
|
329 | 329 | EE_Registry::instance()->load_helper('DTT_Helper'); |
330 | - $data_row = array(EE_CSV::metadata_header);//do NOT translate because this exact string is used when importing |
|
330 | + $data_row = array(EE_CSV::metadata_header); //do NOT translate because this exact string is used when importing |
|
331 | 331 | $this->fputcsv2($filehandle, $data_row); |
332 | 332 | EE_Registry::instance()->load_helper('DTT_Helper'); |
333 | - $meta_data = array( 0=> array( |
|
333 | + $meta_data = array(0=> array( |
|
334 | 334 | 'version'=>espresso_version(), |
335 | 335 | 'timezone'=> EEH_DTT_Helper::get_timezone(), |
336 | 336 | 'time_of_export'=>current_time('mysql'), |
@@ -348,30 +348,30 @@ discard block |
||
348 | 348 | * then the first row we'd write to the CSV would be "EVT_ID,EVT_name,..." |
349 | 349 | * @return boolean if we successfully wrote to the CSV or not. If there's no $data, we consider that a success (because we wrote everything there was...nothing) |
350 | 350 | */ |
351 | - public function write_data_array_to_csv($filehandle, $data){ |
|
351 | + public function write_data_array_to_csv($filehandle, $data) { |
|
352 | 352 | EE_Registry::instance()->load_helper('Array'); |
353 | 353 | |
354 | 354 | |
355 | 355 | //determine if $data is actually a 2d array |
356 | - if ( $data && is_array($data) && is_array(EEH_Array::get_one_item_from_array($data))){ |
|
356 | + if ($data && is_array($data) && is_array(EEH_Array::get_one_item_from_array($data))) { |
|
357 | 357 | //make sure top level is numerically indexed, |
358 | 358 | |
359 | - if( EEH_Array::is_associative_array($data)){ |
|
360 | - throw new EE_Error(sprintf(__("top-level array must be numerically indexed. Does these look like numbers to you? %s","event_espresso"),implode(",",array_keys($data)))); |
|
359 | + if (EEH_Array::is_associative_array($data)) { |
|
360 | + throw new EE_Error(sprintf(__("top-level array must be numerically indexed. Does these look like numbers to you? %s", "event_espresso"), implode(",", array_keys($data)))); |
|
361 | 361 | } |
362 | 362 | $item_in_top_level_array = EEH_Array::get_one_item_from_array($data); |
363 | 363 | //now, is the last item in the top-level array of $data an associative or numeric array? |
364 | - if(EEH_Array::is_associative_array($item_in_top_level_array)){ |
|
364 | + if (EEH_Array::is_associative_array($item_in_top_level_array)) { |
|
365 | 365 | //its associative, so we want to output its keys as column headers |
366 | 366 | $keys = array_keys($item_in_top_level_array); |
367 | 367 | echo $this->fputcsv2($filehandle, $keys); |
368 | 368 | } |
369 | 369 | //start writing data |
370 | - foreach($data as $data_row){ |
|
370 | + foreach ($data as $data_row) { |
|
371 | 371 | echo $this->fputcsv2($filehandle, $data_row); |
372 | 372 | } |
373 | 373 | return true; |
374 | - }else{ |
|
374 | + } else { |
|
375 | 375 | //no data TO write... so we can assume that's a success |
376 | 376 | return true; |
377 | 377 | } |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | * Calls exit to prevent polluting the CSV file with other junk |
417 | 417 | * @param resource $fh filehandle where we're writing the CSV to |
418 | 418 | */ |
419 | - public function end_sending_csv($fh){ |
|
419 | + public function end_sending_csv($fh) { |
|
420 | 420 | fclose($fh); |
421 | 421 | exit(0); |
422 | 422 | } |
@@ -429,23 +429,23 @@ discard block |
||
429 | 429 | * has all the attributes o fthat model object (eg, the event's id, name, etc) |
430 | 430 | * @return boolean success |
431 | 431 | */ |
432 | - public function write_model_data_to_csv($filehandle,$model_data_array){ |
|
432 | + public function write_model_data_to_csv($filehandle, $model_data_array) { |
|
433 | 433 | $this->write_metadata_to_csv($filehandle); |
434 | - foreach($model_data_array as $model_name => $model_instance_arrays){ |
|
434 | + foreach ($model_data_array as $model_name => $model_instance_arrays) { |
|
435 | 435 | //first: output a special row stating the model |
436 | - echo $this->fputcsv2($filehandle,array('MODEL',$model_name)); |
|
436 | + echo $this->fputcsv2($filehandle, array('MODEL', $model_name)); |
|
437 | 437 | //if we have items to put in the CSV, do it normally |
438 | 438 | |
439 | - if( ! empty($model_instance_arrays) ){ |
|
439 | + if ( ! empty($model_instance_arrays)) { |
|
440 | 440 | $this->write_data_array_to_csv($filehandle, $model_instance_arrays); |
441 | - }else{ |
|
441 | + } else { |
|
442 | 442 | // echo "no data to write... so just write the headers"; |
443 | 443 | //so there's actually NO model objects for that model. |
444 | 444 | //probably still want to show the columns |
445 | 445 | $model = EE_Registry::instance()->load_model($model_name); |
446 | 446 | $column_names = array(); |
447 | - foreach($model->field_settings() as $field){ |
|
448 | - $column_names[$field->get_nicename()."[".$field->get_name()."]"] = null ; |
|
447 | + foreach ($model->field_settings() as $field) { |
|
448 | + $column_names[$field->get_nicename()."[".$field->get_name()."]"] = null; |
|
449 | 449 | } |
450 | 450 | $this->write_data_array_to_csv($filehandle, array($column_names)); |
451 | 451 | } |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | * @param array $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
460 | 460 | * @return bool | void writes CSV file to output and dies |
461 | 461 | */ |
462 | - public function export_multiple_model_data_to_csv($filename,$model_data_array){ |
|
462 | + public function export_multiple_model_data_to_csv($filename, $model_data_array) { |
|
463 | 463 | $filehandle = $this->begin_sending_csv($filename); |
464 | 464 | $this->write_model_data_to_csv($filehandle, $model_data_array); |
465 | 465 | $this->end_sending_csv($filehandle); |
@@ -471,15 +471,15 @@ discard block |
||
471 | 471 | * @param string $filename - name for newly created csv file |
472 | 472 | * @return TRUE on success, FALSE on fail |
473 | 473 | */ |
474 | - public function export_array_to_csv( $data = FALSE, $filename = FALSE ) { |
|
474 | + public function export_array_to_csv($data = FALSE, $filename = FALSE) { |
|
475 | 475 | |
476 | 476 | // no data file?? get outta here |
477 | - if ( ! $data or ! is_array( $data ) or empty( $data ) ) { |
|
477 | + if ( ! $data or ! is_array($data) or empty($data)) { |
|
478 | 478 | return FALSE; |
479 | 479 | } |
480 | 480 | |
481 | 481 | // no filename?? get outta here |
482 | - if ( ! $filename ) { |
|
482 | + if ( ! $filename) { |
|
483 | 483 | return FALSE; |
484 | 484 | } |
485 | 485 | |
@@ -505,11 +505,11 @@ discard block |
||
505 | 505 | * @param int $percent_of_max - desired percentage of the max upload_mb |
506 | 506 | * @return int KB |
507 | 507 | */ |
508 | - public function get_max_upload_size ( $percent_of_max = FALSE ) { |
|
508 | + public function get_max_upload_size($percent_of_max = FALSE) { |
|
509 | 509 | |
510 | - $max_upload = (int)(ini_get('upload_max_filesize')); |
|
511 | - $max_post = (int)(ini_get('post_max_size')); |
|
512 | - $memory_limit = (int)(ini_get('memory_limit')); |
|
510 | + $max_upload = (int) (ini_get('upload_max_filesize')); |
|
511 | + $max_post = (int) (ini_get('post_max_size')); |
|
512 | + $memory_limit = (int) (ini_get('memory_limit')); |
|
513 | 513 | |
514 | 514 | // determine the smallest of the three values from above |
515 | 515 | $upload_mb = min($max_upload, $max_post, $memory_limit); |
@@ -518,9 +518,9 @@ discard block |
||
518 | 518 | $upload_mb = $upload_mb * 1024; |
519 | 519 | |
520 | 520 | // don't want the full monty? then reduce the max uplaod size |
521 | - if ( $percent_of_max ) { |
|
521 | + if ($percent_of_max) { |
|
522 | 522 | // is percent_of_max like this -> 50 or like this -> 0.50 ? |
523 | - if ( $percent_of_max > 1 ) { |
|
523 | + if ($percent_of_max > 1) { |
|
524 | 524 | // chnages 50 to 0.50 |
525 | 525 | $percent_of_max = $percent_of_max / 100; |
526 | 526 | } |
@@ -542,17 +542,17 @@ discard block |
||
542 | 542 | * @param string $mysql_null - allows php NULL to be overridden with MySQl's insertable NULL value |
543 | 543 | * @return void |
544 | 544 | */ |
545 | - private function fputcsv2 ($fh, array $row, $delimiter = ',', $enclosure = '"', $mysql_null = FALSE) { |
|
545 | + private function fputcsv2($fh, array $row, $delimiter = ',', $enclosure = '"', $mysql_null = FALSE) { |
|
546 | 546 | //Allow user to filter the csv delimiter and enclosure for other countries csv standards |
547 | - $delimiter = apply_filters( 'FHEE__EE_CSV__fputcsv2__delimiter', $delimiter ); |
|
548 | - $enclosure = apply_filters( 'FHEE__EE_CSV__fputcsv2__enclosure', $enclosure ); |
|
547 | + $delimiter = apply_filters('FHEE__EE_CSV__fputcsv2__delimiter', $delimiter); |
|
548 | + $enclosure = apply_filters('FHEE__EE_CSV__fputcsv2__enclosure', $enclosure); |
|
549 | 549 | |
550 | 550 | $delimiter_esc = preg_quote($delimiter, '/'); |
551 | 551 | $enclosure_esc = preg_quote($enclosure, '/'); |
552 | 552 | |
553 | 553 | $output = array(); |
554 | 554 | foreach ($row as $field_value) { |
555 | - if(is_object($field_value) || is_array($field_value)){ |
|
555 | + if (is_object($field_value) || is_array($field_value)) { |
|
556 | 556 | $field_value = serialize($field_value); |
557 | 557 | } |
558 | 558 | if ($field_value === null && $mysql_null) { |
@@ -561,10 +561,10 @@ discard block |
||
561 | 561 | } |
562 | 562 | |
563 | 563 | $output[] = preg_match("/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field_value) ? |
564 | - ( $enclosure . str_replace($enclosure, $enclosure . $enclosure, $field_value) . $enclosure ) : $field_value; |
|
564 | + ($enclosure.str_replace($enclosure, $enclosure.$enclosure, $field_value).$enclosure) : $field_value; |
|
565 | 565 | } |
566 | 566 | |
567 | - fwrite($fh, join($delimiter, $output) . PHP_EOL); |
|
567 | + fwrite($fh, join($delimiter, $output).PHP_EOL); |
|
568 | 568 | } |
569 | 569 | |
570 | 570 |
@@ -1,4 +1,6 @@ discard block |
||
1 | -<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * CSV Import Export class |
4 | 6 | * |
@@ -105,8 +107,9 @@ discard block |
||
105 | 107 | $fc = $fc . $c; |
106 | 108 | } |
107 | 109 | } |
108 | - if ((ord(substr($fc,0,1)) == 255) && (ord(substr($fc,1,1)) == 254)) |
|
109 | - $fc = substr($fc,2); |
|
110 | + if ((ord(substr($fc,0,1)) == 255) && (ord(substr($fc,1,1)) == 254)) { |
|
111 | + $fc = substr($fc,2); |
|
112 | + } |
|
110 | 113 | return ($fc); |
111 | 114 | } |
112 | 115 | |
@@ -144,7 +147,7 @@ discard block |
||
144 | 147 | while(($data = fgetcsv($file_handle, 0, ',', '"' )) !== FALSE){ |
145 | 148 | $csvarray[]= $data; |
146 | 149 | } |
147 | - }else{ |
|
150 | + } else{ |
|
148 | 151 | // loop through each row of the file |
149 | 152 | while (( $data = fgetcsv( $file_handle, 0, ',', '"', '\\' )) !== FALSE ) { |
150 | 153 | $csvarray[]=$data; |
@@ -153,7 +156,7 @@ discard block |
||
153 | 156 | # Close the File. |
154 | 157 | fclose($file_handle); |
155 | 158 | return $csvarray; |
156 | - }else{ |
|
159 | + } else{ |
|
157 | 160 | EE_Error::add_error( sprintf(__("An error occurred - the file: %s could not opened.", "event_espresso"),$path_to_file), __FILE__, __FUNCTION__, __LINE__ ); |
158 | 161 | return false; |
159 | 162 | } |
@@ -234,7 +237,7 @@ discard block |
||
234 | 237 | $matches = array(); |
235 | 238 | if($model_name == EE_CSV::metadata_header){ |
236 | 239 | $headers[$i] = $column_name; |
237 | - }else{ |
|
240 | + } else{ |
|
238 | 241 | //now get the db table name from it (the part between square brackets) |
239 | 242 | $success = preg_match('~(.*)\[(.*)\]~', $column_name,$matches); |
240 | 243 | if (!$success){ |
@@ -244,7 +247,7 @@ discard block |
||
244 | 247 | $headers[$i] = $matches[2]; |
245 | 248 | } |
246 | 249 | |
247 | - }else{ |
|
250 | + } else{ |
|
248 | 251 | // no column names means our final array will just use counters for keys |
249 | 252 | $model_entry[$headers[$i]] = $data[$i]; |
250 | 253 | $headers[$i] = $i; |
@@ -371,7 +374,7 @@ discard block |
||
371 | 374 | echo $this->fputcsv2($filehandle, $data_row); |
372 | 375 | } |
373 | 376 | return true; |
374 | - }else{ |
|
377 | + } else{ |
|
375 | 378 | //no data TO write... so we can assume that's a success |
376 | 379 | return true; |
377 | 380 | } |
@@ -438,7 +441,7 @@ discard block |
||
438 | 441 | |
439 | 442 | if( ! empty($model_instance_arrays) ){ |
440 | 443 | $this->write_data_array_to_csv($filehandle, $model_instance_arrays); |
441 | - }else{ |
|
444 | + } else{ |
|
442 | 445 | // echo "no data to write... so just write the headers"; |
443 | 446 | //so there's actually NO model objects for that model. |
444 | 447 | //probably still want to show the columns |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | * @param array $props_n_values incoming values from the database |
55 | 55 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
56 | 56 | * the website will be used. |
57 | - * @return EE_Attendee |
|
57 | + * @return EE_Currency |
|
58 | 58 | */ |
59 | 59 | public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
60 | 60 | return new self( $props_n_values, TRUE, $timezone ); |
61 | 61 | } |
62 | 62 | /** |
63 | 63 | * Gets code |
64 | - * @return string |
|
64 | + * @return boolean |
|
65 | 65 | */ |
66 | 66 | function code() { |
67 | 67 | return $this->get('CUR_code'); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | /** |
71 | 71 | * Sets code |
72 | 72 | * @param string $code |
73 | - * @return boolean |
|
73 | + * @return boolean|null |
|
74 | 74 | */ |
75 | 75 | function set_code($code) { |
76 | 76 | return $this->set('CUR_code', $code); |
@@ -86,14 +86,14 @@ discard block |
||
86 | 86 | /** |
87 | 87 | * Sets active |
88 | 88 | * @param boolean $active |
89 | - * @return boolean |
|
89 | + * @return boolean|null |
|
90 | 90 | */ |
91 | 91 | function set_active($active) { |
92 | 92 | return $this->set('CUR_active', $active); |
93 | 93 | } |
94 | 94 | /** |
95 | 95 | * Gets dec_plc |
96 | - * @return int |
|
96 | + * @return boolean |
|
97 | 97 | */ |
98 | 98 | function dec_plc() { |
99 | 99 | return $this->get('CUR_dec_plc'); |
@@ -102,14 +102,14 @@ discard block |
||
102 | 102 | /** |
103 | 103 | * Sets dec_plc |
104 | 104 | * @param int $dec_plc |
105 | - * @return boolean |
|
105 | + * @return boolean|null |
|
106 | 106 | */ |
107 | 107 | function set_dec_plc($dec_plc) { |
108 | 108 | return $this->set('CUR_dec_plc', $dec_plc); |
109 | 109 | } |
110 | 110 | /** |
111 | 111 | * Gets plural |
112 | - * @return string |
|
112 | + * @return boolean |
|
113 | 113 | */ |
114 | 114 | function plural_name() { |
115 | 115 | return $this->get('CUR_plural'); |
@@ -118,14 +118,14 @@ discard block |
||
118 | 118 | /** |
119 | 119 | * Sets plural |
120 | 120 | * @param string $plural |
121 | - * @return boolean |
|
121 | + * @return boolean|null |
|
122 | 122 | */ |
123 | 123 | function set_plural_name($plural) { |
124 | 124 | return $this->set('CUR_plural', $plural); |
125 | 125 | } |
126 | 126 | /** |
127 | 127 | * Gets sign |
128 | - * @return string |
|
128 | + * @return boolean |
|
129 | 129 | */ |
130 | 130 | function sign() { |
131 | 131 | return $this->get('CUR_sign'); |
@@ -134,14 +134,14 @@ discard block |
||
134 | 134 | /** |
135 | 135 | * Sets sign |
136 | 136 | * @param string $sign |
137 | - * @return boolean |
|
137 | + * @return boolean|null |
|
138 | 138 | */ |
139 | 139 | function set_sign($sign) { |
140 | 140 | return $this->set('CUR_sign', $sign); |
141 | 141 | } |
142 | 142 | /** |
143 | 143 | * Gets single |
144 | - * @return string |
|
144 | + * @return boolean |
|
145 | 145 | */ |
146 | 146 | function singular_name() { |
147 | 147 | return $this->get('CUR_single'); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | /** |
151 | 151 | * Sets single |
152 | 152 | * @param string $single |
153 | - * @return boolean |
|
153 | + * @return boolean|null |
|
154 | 154 | */ |
155 | 155 | function set_singular_name($single) { |
156 | 156 | return $this->set('CUR_single', $single); |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
25 | 25 | * |
26 | 26 | * ------------------------------------------------------------------------ |
27 | 27 | */ |
28 | -class EE_Currency extends EE_Base_Class{ |
|
28 | +class EE_Currency extends EE_Base_Class { |
|
29 | 29 | |
30 | 30 | /** Currency COde @var CUR_code*/ protected $_CUR_code = NULL; |
31 | 31 | /** Currency Name Singular @var CUR_single*/ protected $_CUR_single = NULL; |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | * date_format and the second value is the time format |
44 | 44 | * @return EE_Attendee |
45 | 45 | */ |
46 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
47 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__ ); |
|
48 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
46 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
47 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
48 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | * the website will be used. |
57 | 57 | * @return EE_Attendee |
58 | 58 | */ |
59 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
60 | - return new self( $props_n_values, TRUE, $timezone ); |
|
59 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
60 | + return new self($props_n_values, TRUE, $timezone); |
|
61 | 61 | } |
62 | 62 | /** |
63 | 63 | * Gets code |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | * Gets a prettier name |
160 | 160 | * @return string |
161 | 161 | */ |
162 | - function name(){ |
|
163 | - return sprintf(__("%s (%s)", "event_espresso"),$this->code(),$this->plural_name()); |
|
162 | + function name() { |
|
163 | + return sprintf(__("%s (%s)", "event_espresso"), $this->code(), $this->plural_name()); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | } |
@@ -1,7 +1,8 @@ |
||
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 | * Event Espresso |
7 | 8 | * |