Completed
Branch BUG-7537 (60d82a)
by
unknown
52:33 queued 35:09
created
caffeinated/admin/new/pricing/Pricing_Admin_Page.core.php 1 patch
Spacing   +184 added lines, -184 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
 	 * @param bool $routing
32 32
 	 * @return Pricing_Admin_Page
33 33
 	 */
34
-	public function __construct( $routing = TRUE ) {
35
-		parent::__construct( $routing );
34
+	public function __construct($routing = TRUE) {
35
+		parent::__construct($routing);
36 36
 	}
37 37
 
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 
51 51
 	protected function _ajax_hooks() {
52
-		add_action('wp_ajax_espresso_update_prices_order', array( $this, 'update_price_order' ));
52
+		add_action('wp_ajax_espresso_update_prices_order', array($this, 'update_price_order'));
53 53
 	}
54 54
 
55 55
 
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
 	*		@return void
83 83
 	*/
84 84
 	protected function _set_page_routes() {
85
-		$prc_id = ! empty( $this->_req_data['PRC_ID'] ) && ! is_array( $this->_req_data['PRC_ID'] ) ? $this->_req_data['PRC_ID'] : 0;
86
-		$prt_id =  ! empty( $this->_req_data['PRT_ID'] ) && ! is_array( $this->_req_data['PRT_ID'] ) ? $this->_req_data['PRT_ID'] : 0;
85
+		$prc_id = ! empty($this->_req_data['PRC_ID']) && ! is_array($this->_req_data['PRC_ID']) ? $this->_req_data['PRC_ID'] : 0;
86
+		$prt_id = ! empty($this->_req_data['PRT_ID']) && ! is_array($this->_req_data['PRT_ID']) ? $this->_req_data['PRT_ID'] : 0;
87 87
 		$this->_page_routes = array(
88 88
 			'default' => array(
89 89
 					'func' => '_price_overview_list_table',
@@ -91,38 +91,38 @@  discard block
 block discarded – undo
91 91
 				),
92 92
 			'add_new_price'	=> array(
93 93
 					'func' => '_edit_price_details',
94
-					'args' => array( 'new_price' => TRUE ),
94
+					'args' => array('new_price' => TRUE),
95 95
 					'capability' => 'ee_edit_default_prices'
96 96
 				),
97 97
 			'edit_price'	=> array(
98 98
 					'func' => '_edit_price_details',
99
-					'args' => array( 'new_price' => FALSE ),
99
+					'args' => array('new_price' => FALSE),
100 100
 					'capability' => 'ee_edit_default_price',
101 101
 					'obj_id' => $prc_id
102 102
 				),
103 103
 			'insert_price'	=> array(
104 104
 					'func' => '_insert_or_update_price',
105
-					'args' => array( 'new_price' => TRUE ),
105
+					'args' => array('new_price' => TRUE),
106 106
 					'noheader' => TRUE,
107 107
 					'capability' => 'ee_edit_default_prices',
108 108
 				),
109 109
 			'update_price'	=> array(
110 110
 					'func' => '_insert_or_update_price',
111
-					'args' => array( 'new_price' => FALSE ),
111
+					'args' => array('new_price' => FALSE),
112 112
 					'noheader' => TRUE,
113 113
 					'capability' => 'ee_edit_default_price',
114 114
 					'obj_id' => $prc_id
115 115
 				),
116 116
 			'trash_price'	=> array(
117 117
 					'func' => '_trash_or_restore_price',
118
-					'args' => array( 'trash' => TRUE ),
118
+					'args' => array('trash' => TRUE),
119 119
 					'noheader' => TRUE,
120 120
 					'capability' => 'ee_delete_default_price',
121 121
 					'obj_id' => $prc_id
122 122
 				),
123 123
 			'restore_price'	=> array(
124 124
 					'func' => '_trash_or_restore_price',
125
-					'args' => array( 'trash' => FALSE ),
125
+					'args' => array('trash' => FALSE),
126 126
 					'noheader' => TRUE,
127 127
 					'capability' => 'ee_delete_default_price',
128 128
 					'obj_id' => $prc_id
@@ -154,27 +154,27 @@  discard block
 block discarded – undo
154 154
 				),
155 155
 			'insert_price_type'	=> array(
156 156
 					'func' => '_insert_or_update_price_type',
157
-					'args' => array( 'new_price_type' => TRUE ),
157
+					'args' => array('new_price_type' => TRUE),
158 158
 					'noheader' => TRUE,
159 159
 					'capability' => 'ee_edit_default_price_types'
160 160
 				),
161 161
 			'update_price_type' => array(
162 162
 					'func' => '_insert_or_update_price_type',
163
-					'args' => array( 'new_price_type' => FALSE ),
163
+					'args' => array('new_price_type' => FALSE),
164 164
 					'noheader' => TRUE,
165 165
 					'capability' => 'ee_edit_default_price_type',
166 166
 					'obj_id' => $prt_id
167 167
 				),
168 168
 			'trash_price_type'	=> array(
169 169
 					'func' => '_trash_or_restore_price_type',
170
-					'args' => array( 'trash' => TRUE ),
170
+					'args' => array('trash' => TRUE),
171 171
 					'noheader' => TRUE,
172 172
 					'capability' => 'ee_delete_default_price_type',
173 173
 					'obj_id' => $prt_id
174 174
 				),
175 175
 			'restore_price_type'	=> array(
176 176
 					'func' => '_trash_or_restore_price_type',
177
-					'args' => array( 'trash' => FALSE ),
177
+					'args' => array('trash' => FALSE),
178 178
 					'noheader' => TRUE,
179 179
 					'capability' => 'ee_delete_default_price_type',
180 180
 					'obj_id' => $prt_id
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 							'filename' => 'pricing_default_pricing_views_bulk_actions_search'
215 215
 							)
216 216
 						),
217
-					'help_tour' => array( 'Pricing_Default_Prices_Help_Tour'),
217
+					'help_tour' => array('Pricing_Default_Prices_Help_Tour'),
218 218
 					'require_nonce' => FALSE
219 219
 				),
220 220
 			'add_new_price' => array(
@@ -230,24 +230,24 @@  discard block
 block discarded – undo
230 230
 							)
231 231
 						),
232 232
                     'help_tour' => array('Pricing_Add_New_Default_Price_Help_Tour'),
233
-					'metaboxes' => array( '_publish_post_box', '_espresso_news_post_box', '_price_details_meta_boxes' ),
233
+					'metaboxes' => array('_publish_post_box', '_espresso_news_post_box', '_price_details_meta_boxes'),
234 234
 					'require_nonce' => FALSE
235 235
 				),
236 236
 			'edit_price' => array(
237 237
 					'nav' => array(
238 238
 							'label' => __('Edit Default Price', 'event_espresso'),
239 239
 							'order' => 20,
240
-							'url' => isset($this->_req_data['id']) ? add_query_arg(array('id' => $this->_req_data['id'] ), $this->_current_page_view_url )  : $this->_admin_base_url,
240
+							'url' => isset($this->_req_data['id']) ? add_query_arg(array('id' => $this->_req_data['id']), $this->_current_page_view_url) : $this->_admin_base_url,
241 241
 							'persistent' => FALSE
242 242
 						),
243
-					'metaboxes' => array( '_publish_post_box', '_espresso_news_post_box', '_price_details_meta_boxes' ),
243
+					'metaboxes' => array('_publish_post_box', '_espresso_news_post_box', '_price_details_meta_boxes'),
244 244
                     'help_tabs' => array(
245 245
 						'edit_default_price_help_tab' => array(
246 246
 							'title' => __('Edit Default Price', 'event_espresso'),
247 247
 							'filename' => 'pricing_edit_default_price'
248 248
 							)
249 249
 						),
250
-					'help_tour' => array( 'Pricing_Edit_Default_Price_Help_Tour' ),
250
+					'help_tour' => array('Pricing_Edit_Default_Price_Help_Tour'),
251 251
 					'require_nonce' => FALSE
252 252
 				),
253 253
 			'price_types' => array(
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 							'filename' => 'pricing_price_types_views_bulk_actions_search'
271 271
 							),
272 272
 						),
273
-					'help_tour' => array( 'Pricing_Price_Types_Default_Help_Tour' ),
273
+					'help_tour' => array('Pricing_Price_Types_Default_Help_Tour'),
274 274
 					'metaboxes' => array('_espresso_news_post_box', '_espresso_links_post_box'),
275 275
 					'require_nonce' => FALSE
276 276
 				),
@@ -286,8 +286,8 @@  discard block
 block discarded – undo
286 286
 							'filename' => 'pricing_add_new_price_type'
287 287
 							)
288 288
 						),
289
-                    'help_tour' => array( 'Pricing_Add_New_Price_Type_Help_Tour' ),
290
-					'metaboxes' => array( '_publish_post_box', '_espresso_news_post_box', '_price_type_details_meta_boxes' ),
289
+                    'help_tour' => array('Pricing_Add_New_Price_Type_Help_Tour'),
290
+					'metaboxes' => array('_publish_post_box', '_espresso_news_post_box', '_price_type_details_meta_boxes'),
291 291
 					'require_nonce' => FALSE
292 292
 				),
293 293
 			'edit_price_type' => array(
@@ -302,8 +302,8 @@  discard block
 block discarded – undo
302 302
 							'filename' => 'pricing_edit_price_type'
303 303
 							)
304 304
 						),
305
-                    'help_tour' => array( 'Pricing_Edit_Price_Type_Help_Tour' ),
306
-					'metaboxes' => array( '_publish_post_box', '_espresso_news_post_box', '_price_type_details_meta_boxes' ),
305
+                    'help_tour' => array('Pricing_Edit_Price_Type_Help_Tour'),
306
+					'metaboxes' => array('_publish_post_box', '_espresso_news_post_box', '_price_type_details_meta_boxes'),
307 307
 
308 308
 					'require_nonce' => FALSE
309 309
 				)
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
 	public function load_scripts_styles() {
341 341
 		//styles
342 342
 		wp_enqueue_style('espresso-ui-theme');
343
-		wp_register_style( 'espresso_PRICING', PRICING_ASSETS_URL . 'espresso_pricing_admin.css', array(), EVENT_ESPRESSO_VERSION );
343
+		wp_register_style('espresso_PRICING', PRICING_ASSETS_URL.'espresso_pricing_admin.css', array(), EVENT_ESPRESSO_VERSION);
344 344
 		wp_enqueue_style('espresso_PRICING');
345 345
 
346 346
 		//scripts
@@ -350,8 +350,8 @@  discard block
 block discarded – undo
350 350
 		//wp_enqueue_script('jquery-ui-dialog');
351 351
 		//wp_enqueue_script('jquery-ui-draggable');
352 352
 		//wp_enqueue_script('jquery-ui-datepicker');
353
-		wp_register_script( 'espresso_PRICING', PRICING_ASSETS_URL . 'espresso_pricing_admin.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE );
354
-		wp_enqueue_script( 'espresso_PRICING' );
353
+		wp_register_script('espresso_PRICING', PRICING_ASSETS_URL.'espresso_pricing_admin.js', array('jquery'), EVENT_ESPRESSO_VERSION, TRUE);
354
+		wp_enqueue_script('espresso_PRICING');
355 355
 	}
356 356
 
357 357
 
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
 
360 360
 
361 361
 	public function load_scripts_styles_default() {
362
-		wp_enqueue_script( 'espresso_ajax_table_sorting' );
362
+		wp_enqueue_script('espresso_ajax_table_sorting');
363 363
 	}
364 364
 
365 365
 
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 				)
388 388
 		);
389 389
 
390
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_default_prices', 'pricing_trash_price' ) ) {
390
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_default_prices', 'pricing_trash_price')) {
391 391
 			$this->_views['trashed'] = array(
392 392
 					'slug' => 'trashed',
393 393
 					'label' => __('Trash', 'event_espresso'),
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 				)
418 418
 		);
419 419
 
420
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_default_price_types', 'pricing_trash_price_type' ) ) {
420
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_default_price_types', 'pricing_trash_price_type')) {
421 421
 			 $this->_views['trashed'] = array(
422 422
 					'slug' => 'trashed',
423 423
 					'label' => __('Trash', 'event_espresso'),
@@ -456,18 +456,18 @@  discard block
 block discarded – undo
456 456
 	* 	@param  boolean $trashed   whether the current view is of the trash can - eww yuck!
457 457
 	* 	@return mixed (int|array)  int = count || array of price objects
458 458
 	*/
459
-	public function get_prices_overview_data( $per_page = 10, $count = FALSE, $trashed = FALSE ) {
459
+	public function get_prices_overview_data($per_page = 10, $count = FALSE, $trashed = FALSE) {
460 460
 
461
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
461
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
462 462
 		// start with an empty array
463 463
 		$event_pricing = array();
464 464
 
465
-		require_once( PRICING_ADMIN . 'Prices_List_Table.class.php' );
466
-		require_once(EE_MODELS . 'EEM_Price.model.php');
465
+		require_once(PRICING_ADMIN.'Prices_List_Table.class.php');
466
+		require_once(EE_MODELS.'EEM_Price.model.php');
467 467
 		//$PRC = EEM_Price::instance();
468 468
 
469 469
 		$this->_req_data['orderby'] = empty($this->_req_data['orderby']) ? '' : $this->_req_data['orderby'];
470
-		$order = ( isset( $this->_req_data['order'] ) && ! empty( $this->_req_data['order'] )) ? $this->_req_data['order'] : 'ASC';
470
+		$order = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] : 'ASC';
471 471
 
472 472
 		switch ($this->_req_data['orderby']) {
473 473
 			case 'name':
@@ -480,27 +480,27 @@  discard block
 block discarded – undo
480 480
 				$orderby = array('PRC_amount'=>$order);
481 481
 				break;
482 482
 			default:
483
-				$orderby = array( 'PRC_order'=>$order, 'Price_Type.PRT_order'=>$order, 'PRC_ID'=>$order);
483
+				$orderby = array('PRC_order'=>$order, 'Price_Type.PRT_order'=>$order, 'PRC_ID'=>$order);
484 484
 		}
485 485
 
486
-		$current_page = isset( $this->_req_data['paged'] ) && !empty( $this->_req_data['paged'] ) ? $this->_req_data['paged'] : 1;
487
-		$per_page = isset( $this->_req_data['perpage'] ) && !empty( $this->_req_data['perpage'] ) ? $this->_req_data['perpage'] : $per_page;
486
+		$current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) ? $this->_req_data['paged'] : 1;
487
+		$per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) ? $this->_req_data['perpage'] : $per_page;
488 488
 
489 489
 		$_where = array(
490 490
 				'PRC_is_default' => 1,
491 491
 				'PRC_deleted' => $trashed
492 492
 				);
493 493
 
494
-		$offset = ($current_page-1)*$per_page;
495
-		$limit = array( $offset, $per_page );
494
+		$offset = ($current_page - 1) * $per_page;
495
+		$limit = array($offset, $per_page);
496 496
 
497
-		if ( isset( $this->_req_data['s'] ) ) {
498
-			$sstr = '%' . $this->_req_data['s'] . '%';
497
+		if (isset($this->_req_data['s'])) {
498
+			$sstr = '%'.$this->_req_data['s'].'%';
499 499
 			$_where['OR'] = array(
500
-				'PRC_name' => array('LIKE',$sstr ),
501
-				'PRC_desc' => array('LIKE',$sstr ),
502
-				'PRC_amount' => array( 'LIKE',$sstr ),
503
-				'Price_Type.PRT_name' => array( 'LIKE', $sstr )
500
+				'PRC_name' => array('LIKE', $sstr),
501
+				'PRC_desc' => array('LIKE', $sstr),
502
+				'PRC_amount' => array('LIKE', $sstr),
503
+				'Price_Type.PRT_name' => array('LIKE', $sstr)
504 504
 				);
505 505
 		}
506 506
 
@@ -511,9 +511,9 @@  discard block
 block discarded – undo
511 511
 			'group_by'=>'PRC_ID'
512 512
 			);
513 513
 
514
-		if($count){
515
-			return $trashed ? EEM_Price::instance()->count( array( $_where ) ) : EEM_Price::instance()->count_deleted_and_undeleted(array($_where));
516
-		}else{
514
+		if ($count) {
515
+			return $trashed ? EEM_Price::instance()->count(array($_where)) : EEM_Price::instance()->count_deleted_and_undeleted(array($_where));
516
+		} else {
517 517
 			return EEM_Price::instance()->get_all_deleted_and_undeleted($query_params);
518 518
 		}
519 519
 	}
@@ -529,40 +529,40 @@  discard block
 block discarded – undo
529 529
 	*		@return void
530 530
 	*/
531 531
 	protected function _edit_price_details() {
532
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
532
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
533 533
 		// grab price ID
534
-		$PRC_ID = isset( $this->_req_data['id'] ) && ! empty( $this->_req_data['id'] ) ? absint( $this->_req_data['id'] ) : FALSE;
534
+		$PRC_ID = isset($this->_req_data['id']) && ! empty($this->_req_data['id']) ? absint($this->_req_data['id']) : FALSE;
535 535
 		// change page title based on request action
536
-		$this->_admin_page_title = ucwords( str_replace( '_', ' ', $this->_req_action ));
536
+		$this->_admin_page_title = ucwords(str_replace('_', ' ', $this->_req_action));
537 537
 		// add PRC_ID to title if editing
538
-		$this->_admin_page_title = $PRC_ID ? $this->_admin_page_title . ' # ' . $PRC_ID : $this->_admin_page_title;
538
+		$this->_admin_page_title = $PRC_ID ? $this->_admin_page_title.' # '.$PRC_ID : $this->_admin_page_title;
539 539
 
540 540
 		// get prices
541
-		require_once(EE_MODELS . 'EEM_Price.model.php');
541
+		require_once(EE_MODELS.'EEM_Price.model.php');
542 542
 		$PRC = EEM_Price::instance();
543 543
 
544
-		if ( $PRC_ID ) {
545
-			$price = $PRC->get_one_by_ID( $PRC_ID );
544
+		if ($PRC_ID) {
545
+			$price = $PRC->get_one_by_ID($PRC_ID);
546 546
 			$additional_hidden_fields = array(
547
-					'PRC_ID' => array( 'type' => 'hidden', 'value' => $PRC_ID )
547
+					'PRC_ID' => array('type' => 'hidden', 'value' => $PRC_ID)
548 548
 				);
549
-			$this->_set_add_edit_form_tags( 'update_price', $additional_hidden_fields );
549
+			$this->_set_add_edit_form_tags('update_price', $additional_hidden_fields);
550 550
 		} else {
551 551
 			$price = $PRC->get_new_price();
552
-			$this->_set_add_edit_form_tags( 'insert_price' );
552
+			$this->_set_add_edit_form_tags('insert_price');
553 553
 		}
554 554
 
555 555
 		$this->_template_args['PRC_ID'] = $PRC_ID;
556 556
 		$this->_template_args['price'] = $price;
557 557
 
558 558
 		// get price types
559
-		require_once(EE_MODELS . 'EEM_Price_Type.model.php');
559
+		require_once(EE_MODELS.'EEM_Price_Type.model.php');
560 560
 		$PRT = EEM_Price_Type::instance();
561
-		$price_types = $PRT->get_all( array( array('PBT_ID' => array('!=', 1 ) ) ) );
561
+		$price_types = $PRT->get_all(array(array('PBT_ID' => array('!=', 1))));
562 562
 		$price_type_names = array();
563 563
 		if (empty($price_types)) {
564
-			$msg = __( 'You have no price types defined. Please add a price type before adding a price.', 'event_espresso' );
565
-			EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ );
564
+			$msg = __('You have no price types defined. Please add a price type before adding a price.', 'event_espresso');
565
+			EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
566 566
 			exit();
567 567
 		} else {
568 568
 			foreach ($price_types as $type) {
@@ -575,7 +575,7 @@  discard block
 block discarded – undo
575 575
 		$this->_template_args['price_types'] = $price_type_names;
576 576
 		$this->_template_args['learn_more_about_pricing_link'] = $this->_learn_more_about_pricing_link();
577 577
 
578
-		$this->_set_publish_post_box_vars( 'id', $PRC_ID );
578
+		$this->_set_publish_post_box_vars('id', $PRC_ID);
579 579
 		// the details template wrapper
580 580
 		$this->display_admin_page_with_sidebar();
581 581
 	}
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
 	*		@return void
592 592
 	*/
593 593
 	protected function _price_details_meta_boxes() {
594
-		add_meta_box( 'edit-price-details-mbox', __( 'Default Price Details', 'event_espresso' ), array( $this, '_edit_price_details_meta_box' ), $this->wp_page_slug, 'normal', 'high' );
594
+		add_meta_box('edit-price-details-mbox', __('Default Price Details', 'event_espresso'), array($this, '_edit_price_details_meta_box'), $this->wp_page_slug, 'normal', 'high');
595 595
 	}
596 596
 
597 597
 
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
 	*		@return void
606 606
 	*/
607 607
 	public function _edit_price_details_meta_box() {
608
-		echo EEH_Template::display_template( PRICING_TEMPLATE_PATH . 'pricing_details_main_meta_box.template.php', $this->_template_args, TRUE );
608
+		echo EEH_Template::display_template(PRICING_TEMPLATE_PATH.'pricing_details_main_meta_box.template.php', $this->_template_args, TRUE);
609 609
 	}
610 610
 
611 611
 
@@ -619,7 +619,7 @@  discard block
 block discarded – undo
619 619
 	*/
620 620
 	protected function set_price_column_values() {
621 621
 
622
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
622
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
623 623
 
624 624
 		$set_column_values = array(
625 625
 				'PRT_ID' => absint($this->_req_data['PRT_ID']),
@@ -647,12 +647,12 @@  discard block
 block discarded – undo
647 647
 	*		@access protected
648 648
 	*		@return void
649 649
 	*/
650
-	protected function _insert_or_update_price( $insert = FALSE ) {
650
+	protected function _insert_or_update_price($insert = FALSE) {
651 651
 
652 652
 		//echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
653
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
653
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
654 654
 
655
-		require_once(EE_MODELS . 'EEM_Price.model.php');
655
+		require_once(EE_MODELS.'EEM_Price.model.php');
656 656
 		$PRC = EEM_Price::instance();
657 657
 
658 658
 		// why be so pessimistic ???  : (
@@ -660,14 +660,14 @@  discard block
 block discarded – undo
660 660
 
661 661
 		$set_column_values = $this->set_price_column_values();
662 662
 		// is this a new Price ?
663
-		if ( $insert ) {
663
+		if ($insert) {
664 664
 			// run the insert
665
-			if ( $PRC_ID = $PRC->insert( $set_column_values )) {
665
+			if ($PRC_ID = $PRC->insert($set_column_values)) {
666 666
 				//make sure this new price modifier is attached to the ticket but ONLY if it is not a tax type
667 667
 				$PR = EEM_price::instance()->get_one_by_ID($PRC_ID);
668
-				if ( $PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax ) {
668
+				if ($PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax) {
669 669
 					$ticket = EEM_Ticket::instance()->get_one_by_ID(1);
670
-					$ticket->_add_relation_to( $PR, 'Price' );
670
+					$ticket->_add_relation_to($PR, 'Price');
671 671
 					$ticket->save();
672 672
 				}
673 673
 				$success = 1;
@@ -677,29 +677,29 @@  discard block
 block discarded – undo
677 677
 			}
678 678
 			$action_desc = 'created';
679 679
 		} else {
680
-			$PRC_ID = absint( $this->_req_data['PRC_ID'] );
680
+			$PRC_ID = absint($this->_req_data['PRC_ID']);
681 681
 			// run the update
682
-			$where_cols_n_values = array( 'PRC_ID' => $PRC_ID );
683
-			if ( $PRC->update( $set_column_values, array($where_cols_n_values))) {
682
+			$where_cols_n_values = array('PRC_ID' => $PRC_ID);
683
+			if ($PRC->update($set_column_values, array($where_cols_n_values))) {
684 684
 				$success = 1;
685 685
 			}
686 686
 
687 687
 			$PR = EEM_Price::instance()->get_one_by_ID($PRC_ID);
688
-			if ( $PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax ) {
688
+			if ($PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax) {
689 689
 
690 690
 				//if this is $PRC_ID == 1, then we need to update the default ticket attached to this price so the TKT_price value is updated.
691
-				if ( $PRC_ID === 1 ) {
691
+				if ($PRC_ID === 1) {
692 692
 					$ticket = $PR->get_first_related('Ticket');
693
-					if ( $ticket ) {
694
-						$ticket->set('TKT_price', $PR->get('PRC_amount') );
695
-						$ticket->set('TKT_name', $PR->get('PRC_name') );
693
+					if ($ticket) {
694
+						$ticket->set('TKT_price', $PR->get('PRC_amount'));
695
+						$ticket->set('TKT_name', $PR->get('PRC_name'));
696 696
 						$ticket->set('TKT_description', $PR->get('PRC_desc'));
697 697
 						$ticket->save();
698 698
 					}
699 699
 				} else {
700 700
 					//we make sure this price is attached to base ticket. but ONLY if its not a tax ticket type.
701 701
 					$ticket = EEM_Ticket::instance()->get_one_by_ID(1);
702
-					$ticket->_add_relation_to( $PRC_ID, 'Price' );
702
+					$ticket->_add_relation_to($PRC_ID, 'Price');
703 703
 					$ticket->save();
704 704
 				}
705 705
 			}
@@ -707,9 +707,9 @@  discard block
 block discarded – undo
707 707
 			$action_desc = 'updated';
708 708
 		}
709 709
 
710
-		$query_args = array( 'action' => 'edit_price', 'id' => $PRC_ID );
710
+		$query_args = array('action' => 'edit_price', 'id' => $PRC_ID);
711 711
 
712
-		$this->_redirect_after_action( $success, 'Prices', $action_desc, $query_args );
712
+		$this->_redirect_after_action($success, 'Prices', $action_desc, $query_args);
713 713
 
714 714
 	}
715 715
 
@@ -723,12 +723,12 @@  discard block
 block discarded – undo
723 723
 	*		@access protected
724 724
 	*		@return void
725 725
 	*/
726
-	protected function _trash_or_restore_price( $trash = TRUE ) {
726
+	protected function _trash_or_restore_price($trash = TRUE) {
727 727
 
728 728
 		//echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
729
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
729
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
730 730
 
731
-		require_once(EE_MODELS . 'EEM_Price.model.php');
731
+		require_once(EE_MODELS.'EEM_Price.model.php');
732 732
 		$PRC = EEM_Price::instance();
733 733
 
734 734
 		$success = 1;
@@ -737,18 +737,18 @@  discard block
 block discarded – undo
737 737
 		//get base ticket for updating
738 738
 		$ticket = EEM_Ticket::instance()->get_one_by_ID(1);
739 739
 		//Checkboxes
740
-		if (!empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
740
+		if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
741 741
 			// if array has more than one element than success message should be plural
742
-			$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
742
+			$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
743 743
 			// cycle thru checkboxes
744
-			while (list( $PRC_ID, $value ) = each($this->_req_data['checkbox'])) {
745
-				if ( ! $PRC->update_by_ID(array('PRC_deleted' => $PRC_deleted), absint($PRC_ID) ) ) {
744
+			while (list($PRC_ID, $value) = each($this->_req_data['checkbox'])) {
745
+				if ( ! $PRC->update_by_ID(array('PRC_deleted' => $PRC_deleted), absint($PRC_ID))) {
746 746
 					$success = 0;
747 747
 				} else {
748 748
 					$PR = EEM_Price::instance()->get_one_by_ID($PRC_ID);
749
-					if ( $PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax ) {
749
+					if ($PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax) {
750 750
 						//if trashing then remove relations to base default ticket.  If restoring then add back to base default ticket
751
-						if ( $PRC_deleted ) {
751
+						if ($PRC_deleted) {
752 752
 							$ticket->_remove_relation_to($PRC_ID, 'Price');
753 753
 						} else {
754 754
 							$ticket->_add_relation_to($PRC_ID, 'Price');
@@ -760,14 +760,14 @@  discard block
 block discarded – undo
760 760
 
761 761
 		} else {
762 762
 			// grab single id and delete
763
-			$PRC_ID = isset( $this->_req_data['id'] ) ? absint($this->_req_data['id']) : 0;
764
-			if ( empty( $PRC_ID ) || ! $PRC->update_by_ID(array('PRC_deleted' => $PRC_deleted), $PRC_ID) ) {
763
+			$PRC_ID = isset($this->_req_data['id']) ? absint($this->_req_data['id']) : 0;
764
+			if (empty($PRC_ID) || ! $PRC->update_by_ID(array('PRC_deleted' => $PRC_deleted), $PRC_ID)) {
765 765
 				$success = 0;
766 766
 			} else {
767 767
 				$PR = EEM_Price::instance()->get_one_by_ID($PRC_ID);
768
-				if ( $PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax ) {
768
+				if ($PR->type_obj()->base_type() !== EEM_Price_Type::base_type_tax) {
769 769
 					//if trashing then remove relations to base default ticket.  If restoring then add back to base default ticket
770
-					if ( $PRC_deleted ) {
770
+					if ($PRC_deleted) {
771 771
 						$ticket->_remove_relation_to($PRC_ID, 'Price');
772 772
 					} else {
773 773
 						$ticket->_add_relation_to($PRC_ID, 'Price');
@@ -781,17 +781,17 @@  discard block
 block discarded – undo
781 781
 			'action' => 'default'
782 782
 			);
783 783
 
784
-		if ( $success ) {
785
-			if ( $trash ) {
784
+		if ($success) {
785
+			if ($trash) {
786 786
 				$msg = $success == 2 ? __('The Prices have been trashed.', 'event_espresso') : __('The Price has been trashed.', 'event_espresso');
787 787
 			} else {
788 788
 				$msg = $success == 2 ? __('The Prices have been restored.', 'event_espresso') : __('The Price has been restored.', 'event_espresso');
789 789
 			}
790 790
 
791
-			EE_Error::add_success( $msg );
791
+			EE_Error::add_success($msg);
792 792
 		}
793 793
 
794
-		$this->_redirect_after_action( FALSE, '', '', $query_args, TRUE );
794
+		$this->_redirect_after_action(FALSE, '', '', $query_args, TRUE);
795 795
 
796 796
 	}
797 797
 
@@ -808,19 +808,19 @@  discard block
 block discarded – undo
808 808
 	protected function _delete_price() {
809 809
 
810 810
 		//echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
811
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
811
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
812 812
 
813
-		require_once(EE_MODELS . 'EEM_Price.model.php');
813
+		require_once(EE_MODELS.'EEM_Price.model.php');
814 814
 		$PRC = EEM_Price::instance();
815 815
 
816 816
 		$success = 1;
817 817
 		//Checkboxes
818
-		if (!empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
818
+		if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
819 819
 			// if array has more than one element than success message should be plural
820
-			$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
820
+			$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
821 821
 			// cycle thru bulk action checkboxes
822
-			while (list( $PRC_ID, $value ) = each($this->_req_data['checkbox'])) {
823
-				if (!$PRC->delete_permanently_by_ID(absint($PRC_ID))) {
822
+			while (list($PRC_ID, $value) = each($this->_req_data['checkbox'])) {
823
+				if ( ! $PRC->delete_permanently_by_ID(absint($PRC_ID))) {
824 824
 					$success = 0;
825 825
 				}
826 826
 			}
@@ -834,7 +834,7 @@  discard block
 block discarded – undo
834 834
 
835 835
 		}
836 836
 
837
-		$this->_redirect_after_action( $success, 'Prices', 'deleted', array() );
837
+		$this->_redirect_after_action($success, 'Prices', 'deleted', array());
838 838
 
839 839
 	}
840 840
 
@@ -842,16 +842,16 @@  discard block
 block discarded – undo
842 842
 
843 843
 
844 844
 	public function update_price_order() {
845
-		$success = __( 'Price order was updated successfully.', 'event_espresso' );
845
+		$success = __('Price order was updated successfully.', 'event_espresso');
846 846
 
847 847
 		// grab our row IDs
848
-		$row_ids = isset( $this->_req_data['row_ids'] ) && ! empty( $this->_req_data['row_ids'] ) ? explode( ',', rtrim( $this->_req_data['row_ids'], ',' )) : FALSE;
848
+		$row_ids = isset($this->_req_data['row_ids']) && ! empty($this->_req_data['row_ids']) ? explode(',', rtrim($this->_req_data['row_ids'], ',')) : FALSE;
849 849
 
850
-		if ( is_array( $row_ids )) {
851
-			for ( $i = 0; $i < count( $row_ids ); $i++ ) {
850
+		if (is_array($row_ids)) {
851
+			for ($i = 0; $i < count($row_ids); $i++) {
852 852
 				//Update the prices when re-ordering
853 853
 				$id = absint($row_ids[$i]);
854
-				if ( EEM_Price::instance()->update ( array( 'PRC_order' => $i+1 ), array(array( 'PRC_ID' => $id ) )) === FALSE ) {
854
+				if (EEM_Price::instance()->update(array('PRC_order' => $i + 1), array(array('PRC_ID' => $id))) === FALSE) {
855 855
 					$success = FALSE;
856 856
 				}
857 857
 			}
@@ -859,9 +859,9 @@  discard block
 block discarded – undo
859 859
 			$success = FALSE;
860 860
 		}
861 861
 
862
-		$errors = ! $success ? __( 'An error occurred. The price order was not updated.', 'event_espresso' ) : FALSE;
862
+		$errors = ! $success ? __('An error occurred. The price order was not updated.', 'event_espresso') : FALSE;
863 863
 
864
-		echo json_encode( array( 'return_data' => FALSE, 'success' => $success, 'errors' => $errors ));
864
+		echo json_encode(array('return_data' => FALSE, 'success' => $success, 'errors' => $errors));
865 865
 		die();
866 866
 	}
867 867
 
@@ -904,46 +904,46 @@  discard block
 block discarded – undo
904 904
 	* 	@param  boolean $trashed   whether the current view is of the trash can - eww yuck!
905 905
 	* 	@return mixed (int|array)  int = count || array of price objects
906 906
 	*/
907
-	public function get_price_types_overview_data( $per_page = 10, $count = FALSE, $trashed = FALSE ) {
907
+	public function get_price_types_overview_data($per_page = 10, $count = FALSE, $trashed = FALSE) {
908 908
 
909
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
909
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
910 910
 		// start with an empty array
911 911
 
912
-		require_once( PRICING_ADMIN . 'Price_Types_List_Table.class.php' );
913
-		require_once( EE_MODELS . 'EEM_Price_Type.model.php' );
912
+		require_once(PRICING_ADMIN.'Price_Types_List_Table.class.php');
913
+		require_once(EE_MODELS.'EEM_Price_Type.model.php');
914 914
 
915 915
 		$this->_req_data['orderby'] = empty($this->_req_data['orderby']) ? '' : $this->_req_data['orderby'];
916
-		$order = ( isset( $this->_req_data['order'] ) && ! empty( $this->_req_data['order'] )) ? $this->_req_data['order'] : 'ASC';
916
+		$order = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] : 'ASC';
917 917
 		switch ($this->_req_data['orderby']) {
918 918
 			case 'name':
919
-				$orderby = array( 'PRT_name' => $order);
919
+				$orderby = array('PRT_name' => $order);
920 920
 				break;
921 921
 			default:
922
-				$orderby = array( 'PRT_order' => $order);
922
+				$orderby = array('PRT_order' => $order);
923 923
 		}
924 924
 
925 925
 
926
-		$current_page = isset( $this->_req_data['paged'] ) && !empty( $this->_req_data['paged'] ) ? $this->_req_data['paged'] : 1;
927
-		$per_page = isset( $this->_req_data['perpage'] ) && !empty( $this->_req_data['perpage'] ) ? $this->_req_data['perpage'] : $per_page;
926
+		$current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) ? $this->_req_data['paged'] : 1;
927
+		$per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) ? $this->_req_data['perpage'] : $per_page;
928 928
 
929
-		$offset = ($current_page-1)*$per_page;
930
-		$limit = array( $offset, $per_page );
929
+		$offset = ($current_page - 1) * $per_page;
930
+		$limit = array($offset, $per_page);
931 931
 
932
-		$_where = array('PRT_deleted'=>$trashed, 'PBT_ID' => array('!=', 1 ) );
932
+		$_where = array('PRT_deleted'=>$trashed, 'PBT_ID' => array('!=', 1));
933 933
 
934
-		if ( isset( $this->_req_data['s'] ) ) {
935
-			$sstr = '%' . $this->_req_data['s'] . '%';
934
+		if (isset($this->_req_data['s'])) {
935
+			$sstr = '%'.$this->_req_data['s'].'%';
936 936
 			$_where['OR'] = array(
937
-				'PRT_name' => array( 'LIKE', $sstr )
937
+				'PRT_name' => array('LIKE', $sstr)
938 938
 				);
939 939
 		}
940 940
 		$query_params = array(
941 941
 			$_where,
942 942
 			'order_by'=>$orderby,
943 943
 			'limit'=>$limit);
944
-		if($count){
944
+		if ($count) {
945 945
 			return EEM_Price_Type::instance()->count_deleted_and_undeleted($query_params);
946
-		}else{
946
+		} else {
947 947
 			return EEM_Price_Type::instance()->get_all_deleted_and_undeleted($query_params);
948 948
 		}
949 949
 
@@ -963,25 +963,25 @@  discard block
 block discarded – undo
963 963
 	*/
964 964
 	protected function _edit_price_type_details() {
965 965
 
966
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
966
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
967 967
 
968 968
 
969 969
 		// grab price type ID
970
-		$PRT_ID = isset( $this->_req_data['id'] ) && ! empty( $this->_req_data['id'] ) ? absint( $this->_req_data['id'] ) : FALSE;
970
+		$PRT_ID = isset($this->_req_data['id']) && ! empty($this->_req_data['id']) ? absint($this->_req_data['id']) : FALSE;
971 971
 		// change page title based on request action
972
-		$this->_admin_page_title = ucwords( str_replace( '_', ' ', $this->_req_action ));
972
+		$this->_admin_page_title = ucwords(str_replace('_', ' ', $this->_req_action));
973 973
 		// add PRT_ID to title if editing
974
-		$this->_admin_page_title = $PRT_ID ? $this->_admin_page_title . ' # ' . $PRT_ID : $this->_admin_page_title;
974
+		$this->_admin_page_title = $PRT_ID ? $this->_admin_page_title.' # '.$PRT_ID : $this->_admin_page_title;
975 975
 
976 976
 //		require_once(EE_MODELS . 'EEM_Price_Type.model.php');
977 977
 
978
-		if ( $PRT_ID ) {
979
-			$price_type = EEM_Price_Type::instance()->get_one_by_ID( $PRT_ID );
980
-			$additional_hidden_fields = array( 'PRT_ID' => array( 'type' => 'hidden', 'value' => $PRT_ID ));
981
-			$this->_set_add_edit_form_tags( 'update_price_type', $additional_hidden_fields );
978
+		if ($PRT_ID) {
979
+			$price_type = EEM_Price_Type::instance()->get_one_by_ID($PRT_ID);
980
+			$additional_hidden_fields = array('PRT_ID' => array('type' => 'hidden', 'value' => $PRT_ID));
981
+			$this->_set_add_edit_form_tags('update_price_type', $additional_hidden_fields);
982 982
 		} else {
983 983
 			$price_type = EEM_Price_Type::instance()->get_new_price_type();
984
-			$this->_set_add_edit_form_tags( 'insert_price_type' );
984
+			$this->_set_add_edit_form_tags('insert_price_type');
985 985
 		}
986 986
 
987 987
 		$this->_template_args['PRT_ID'] = $PRT_ID;
@@ -990,19 +990,19 @@  discard block
 block discarded – undo
990 990
 
991 991
 		$base_types = EEM_Price_Type::instance()->get_base_types();
992 992
 		$select_values = array();
993
-		foreach ( $base_types as $ref => $text ) {
994
-			if ( $ref == EEM_Price_Type::base_type_base_price ) {
993
+		foreach ($base_types as $ref => $text) {
994
+			if ($ref == EEM_Price_Type::base_type_base_price) {
995 995
 				//do not allow creation of base_type_base_prices because that's a system only base type.
996 996
 				continue;
997 997
 			}
998
-			$values[] = array( 'id' => $ref, 'text' => $text );
998
+			$values[] = array('id' => $ref, 'text' => $text);
999 999
 		}
1000 1000
 
1001 1001
 
1002 1002
 		$this->_template_args['base_type_select'] = EEH_Form_Fields::select_input('base_type', $values, $price_type->base_type(), 'id="price-type-base-type-slct"');
1003 1003
 		$this->_template_args['learn_more_about_pricing_link'] = $this->_learn_more_about_pricing_link();
1004
-		$redirect_URL = add_query_arg( array( 'action' => 'price_types'), $this->_admin_base_url );
1005
-		$this->_set_publish_post_box_vars( 'id', $PRT_ID, FALSE, $redirect_URL );
1004
+		$redirect_URL = add_query_arg(array('action' => 'price_types'), $this->_admin_base_url);
1005
+		$this->_set_publish_post_box_vars('id', $PRT_ID, FALSE, $redirect_URL);
1006 1006
 		// the details template wrapper
1007 1007
 		$this->display_admin_page_with_sidebar();
1008 1008
 
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
 	*		@return void
1020 1020
 	*/
1021 1021
 	protected function _price_type_details_meta_boxes() {
1022
-		add_meta_box( 'edit-price-details-mbox', __( 'Price Type Details', 'event_espresso' ), array( $this, '_edit_price_type_details_meta_box' ), $this->wp_page_slug, 'normal', 'high' );
1022
+		add_meta_box('edit-price-details-mbox', __('Price Type Details', 'event_espresso'), array($this, '_edit_price_type_details_meta_box'), $this->wp_page_slug, 'normal', 'high');
1023 1023
 	}
1024 1024
 
1025 1025
 
@@ -1032,7 +1032,7 @@  discard block
 block discarded – undo
1032 1032
 	*		@return void
1033 1033
 	*/
1034 1034
 	public function _edit_price_type_details_meta_box() {
1035
-		echo EEH_Template::display_template( PRICING_TEMPLATE_PATH . 'pricing_type_details_main_meta_box.template.php', $this->_template_args, TRUE );
1035
+		echo EEH_Template::display_template(PRICING_TEMPLATE_PATH.'pricing_type_details_main_meta_box.template.php', $this->_template_args, TRUE);
1036 1036
 	}
1037 1037
 
1038 1038
 
@@ -1045,9 +1045,9 @@  discard block
 block discarded – undo
1045 1045
 	*/
1046 1046
 	protected function set_price_type_column_values() {
1047 1047
 
1048
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
1048
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1049 1049
 
1050
-		$base_type = !empty( $this->_req_data['base_type'] ) ? $this->_req_data['base_type'] : EEM_Price_Type::base_type_base_price;
1050
+		$base_type = ! empty($this->_req_data['base_type']) ? $this->_req_data['base_type'] : EEM_Price_Type::base_type_base_price;
1051 1051
 
1052 1052
 		switch ($base_type) {
1053 1053
 
@@ -1094,12 +1094,12 @@  discard block
 block discarded – undo
1094 1094
 	*		@access protected
1095 1095
 	*		@return void
1096 1096
 	*/
1097
-	protected function _insert_or_update_price_type( $new_price_type = FALSE ) {
1097
+	protected function _insert_or_update_price_type($new_price_type = FALSE) {
1098 1098
 
1099 1099
 //		echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
1100
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
1100
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1101 1101
 
1102
-		require_once(EE_MODELS . 'EEM_Price_Type.model.php');
1102
+		require_once(EE_MODELS.'EEM_Price_Type.model.php');
1103 1103
 		$PRT = EEM_Price_Type::instance();
1104 1104
 
1105 1105
 		// why be so pessimistic ???  : (
@@ -1107,24 +1107,24 @@  discard block
 block discarded – undo
1107 1107
 
1108 1108
 		$set_column_values = $this->set_price_type_column_values();
1109 1109
 		// is this a new Price ?
1110
-		if ( $new_price_type ) {
1110
+		if ($new_price_type) {
1111 1111
 			// run the insert
1112
-			if ( $PRT_ID = $PRT->insert( $set_column_values )) {
1112
+			if ($PRT_ID = $PRT->insert($set_column_values)) {
1113 1113
 				$success = 1;
1114 1114
 			}
1115 1115
 			$action_desc = 'created';
1116 1116
 		} else {
1117 1117
 			$PRT_ID = absint($this->_req_data['PRT_ID']);
1118 1118
 			// run the update
1119
-			$where_cols_n_values = array('PRT_ID' => $PRT_ID );
1120
-			if ( $PRT->update( $set_column_values, array( $where_cols_n_values ))) {
1119
+			$where_cols_n_values = array('PRT_ID' => $PRT_ID);
1120
+			if ($PRT->update($set_column_values, array($where_cols_n_values))) {
1121 1121
 				$success = 1;
1122 1122
 			}
1123 1123
 			$action_desc = 'updated';
1124 1124
 		}
1125 1125
 
1126
-		$query_args = array( 'action'=> 'edit_price_type', 'id' => $PRT_ID );
1127
-		$this->_redirect_after_action( $success, 'Price Type', $action_desc, $query_args );
1126
+		$query_args = array('action'=> 'edit_price_type', 'id' => $PRT_ID);
1127
+		$this->_redirect_after_action($success, 'Price Type', $action_desc, $query_args);
1128 1128
 
1129 1129
 	}
1130 1130
 
@@ -1138,49 +1138,49 @@  discard block
 block discarded – undo
1138 1138
 	*		@access protected
1139 1139
 	*		@return void
1140 1140
 	*/
1141
-	protected function _trash_or_restore_price_type( $trash = TRUE ) {
1141
+	protected function _trash_or_restore_price_type($trash = TRUE) {
1142 1142
 
1143 1143
 		//echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
1144
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
1144
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1145 1145
 
1146
-		require_once(EE_MODELS . 'EEM_Price_Type.model.php');
1146
+		require_once(EE_MODELS.'EEM_Price_Type.model.php');
1147 1147
 		$PRT = EEM_Price_Type::instance();
1148 1148
 
1149 1149
 		$success = 1;
1150 1150
 		$PRT_deleted = $trash ? TRUE : FALSE;
1151 1151
 		//Checkboxes
1152
-		if (!empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
1152
+		if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
1153 1153
 			// if array has more than one element than success message should be plural
1154
-			$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
1155
-			$what = count( $this->_req_data['checkbox'] ) > 1 ? 'Price Types' : 'Price Type';
1154
+			$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
1155
+			$what = count($this->_req_data['checkbox']) > 1 ? 'Price Types' : 'Price Type';
1156 1156
 			// cycle thru checkboxes
1157
-			while (list( $PRT_ID, $value ) = each($this->_req_data['checkbox'])) {
1158
-				if ( ! $PRT->update_by_ID(array('PRT_deleted' => $PRT_deleted), $PRT_ID ) ) {
1157
+			while (list($PRT_ID, $value) = each($this->_req_data['checkbox'])) {
1158
+				if ( ! $PRT->update_by_ID(array('PRT_deleted' => $PRT_deleted), $PRT_ID)) {
1159 1159
 					$success = 0;
1160 1160
 				}
1161 1161
 			}
1162 1162
 
1163 1163
 		} else {
1164 1164
 			// grab single id and delete
1165
-			$PRT_ID = isset( $this->_req_data['id'] ) ? absint($this->_req_data['id']) : 0;
1166
-			if ( empty( $PRT_ID ) || ! $PRT->update_by_ID(array('PRT_deleted' => $PRT_deleted), $PRT_ID )) {
1165
+			$PRT_ID = isset($this->_req_data['id']) ? absint($this->_req_data['id']) : 0;
1166
+			if (empty($PRT_ID) || ! $PRT->update_by_ID(array('PRT_deleted' => $PRT_deleted), $PRT_ID)) {
1167 1167
 				$success = 0;
1168 1168
 			}
1169 1169
 			$what = 'Price Type';
1170 1170
 
1171 1171
 		}
1172 1172
 
1173
-		$query_args = array( 'action' => 'price_types' );
1174
-		if ( $success ) {
1175
-			if ( $trash ) {
1173
+		$query_args = array('action' => 'price_types');
1174
+		if ($success) {
1175
+			if ($trash) {
1176 1176
 				$msg = $success > 1 ? __('The Price Types have been trashed.', 'event_espresso') : __('The Price Type has been trashed.', 'event_espresso');
1177 1177
 			} else {
1178 1178
 				$msg = $success > 1 ? __('The Price Types have been restored.', 'event_espresso') : __('The Price Type has been restored.', 'event_espresso');
1179 1179
 			}
1180
-			EE_Error::add_success( $msg );
1180
+			EE_Error::add_success($msg);
1181 1181
 		}
1182 1182
 
1183
-		$this->_redirect_after_action( FALSE, '', '', $query_args, TRUE );
1183
+		$this->_redirect_after_action(FALSE, '', '', $query_args, TRUE);
1184 1184
 
1185 1185
 	}
1186 1186
 
@@ -1197,19 +1197,19 @@  discard block
 block discarded – undo
1197 1197
 	protected function _delete_price_type() {
1198 1198
 
1199 1199
 		//echo '<h3>'. __CLASS__ . '->' . __FUNCTION__ . ' <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h3>';
1200
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
1200
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
1201 1201
 
1202 1202
 		$PRT = EEM_Price_Type::instance();
1203 1203
 
1204 1204
 		$success = 1;
1205 1205
 		//Checkboxes
1206
-		if (!empty($this->_req_data['checkbox'])) {
1206
+		if ( ! empty($this->_req_data['checkbox'])) {
1207 1207
 			// if array has more than one element than success message should be plural
1208
-			$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
1208
+			$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
1209 1209
 			$what = $PRT->item_name($success);
1210 1210
 			// cycle thru bulk action checkboxes
1211
-			while (list( $PRT_ID, $value ) = each($this->_req_data['checkbox'])) {
1212
-				if (!$PRT->delete_permanently_by_ID($PRT_ID) ) {
1211
+			while (list($PRT_ID, $value) = each($this->_req_data['checkbox'])) {
1212
+				if ( ! $PRT->delete_permanently_by_ID($PRT_ID)) {
1213 1213
 					$success = 0;
1214 1214
 				}
1215 1215
 			}
@@ -1217,8 +1217,8 @@  discard block
 block discarded – undo
1217 1217
 		}
1218 1218
 
1219 1219
 
1220
-		$query_args = array( 'action'=> 'price_types' );
1221
-		$this->_redirect_after_action( $success, $what, 'deleted', $query_args );
1220
+		$query_args = array('action'=> 'price_types');
1221
+		$this->_redirect_after_action($success, $what, 'deleted', $query_args);
1222 1222
 
1223 1223
 	}
1224 1224
 
@@ -1234,7 +1234,7 @@  discard block
 block discarded – undo
1234 1234
 	*		@return string
1235 1235
 	*/
1236 1236
 	protected function _learn_more_about_pricing_link() {
1237
-		return '<a class="hidden" style="margin:0 20px; cursor:pointer; font-size:12px;" >' . __('learn more about how pricing works', 'event_espresso') . '</a>';
1237
+		return '<a class="hidden" style="margin:0 20px; cursor:pointer; font-size:12px;" >'.__('learn more about how pricing works', 'event_espresso').'</a>';
1238 1238
 	}
1239 1239
 
1240 1240
 
Please login to merge, or discard this patch.
admin/extend/registration_form/Extend_Registration_Form_Admin_Page.core.php 1 patch
Spacing   +163 added lines, -163 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 
31 31
 
32 32
 
33
-	public function __construct( $routing = TRUE ) {
34
-		define( 'REGISTRATION_FORM_CAF_ADMIN', EE_CORE_CAF_ADMIN_EXTEND . 'registration_form' . DS );
35
-		define( 'REGISTRATION_FORM_CAF_ASSETS_PATH', REGISTRATION_FORM_CAF_ADMIN . 'assets' . DS );
36
-		define( 'REGISTRATION_FORM_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'registration_form/assets/' );
37
-		define( 'REGISTRATION_FORM_CAF_TEMPLATE_PATH', REGISTRATION_FORM_CAF_ADMIN . 'templates' . DS );
38
-		define( 'REGISTRATION_FORM_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'registration_form/templates/' );
39
-		parent::__construct( $routing );
33
+	public function __construct($routing = TRUE) {
34
+		define('REGISTRATION_FORM_CAF_ADMIN', EE_CORE_CAF_ADMIN_EXTEND.'registration_form'.DS);
35
+		define('REGISTRATION_FORM_CAF_ASSETS_PATH', REGISTRATION_FORM_CAF_ADMIN.'assets'.DS);
36
+		define('REGISTRATION_FORM_CAF_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'registration_form/assets/');
37
+		define('REGISTRATION_FORM_CAF_TEMPLATE_PATH', REGISTRATION_FORM_CAF_ADMIN.'templates'.DS);
38
+		define('REGISTRATION_FORM_CAF_TEMPLATE_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'registration_form/templates/');
39
+		parent::__construct($routing);
40 40
 	}
41 41
 
42 42
 
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 
47 47
 	protected function _extend_page_config() {
48 48
 		$this->_admin_base_path = REGISTRATION_FORM_CAF_ADMIN;
49
-		$qst_id = ! empty( $this->_req_data['QST_ID'] ) && ! is_array( $this->_req_data['QST_ID'] ) ? $this->_req_data['QST_ID'] : 0;
50
-		$qsg_id = ! empty( $this->_req_data['QSG_ID'] ) && ! is_array( $this->_req_data['QSG_ID'] ) ? $this->_req_data['QSG_ID'] : 0;
49
+		$qst_id = ! empty($this->_req_data['QST_ID']) && ! is_array($this->_req_data['QST_ID']) ? $this->_req_data['QST_ID'] : 0;
50
+		$qsg_id = ! empty($this->_req_data['QSG_ID']) && ! is_array($this->_req_data['QSG_ID']) ? $this->_req_data['QSG_ID'] : 0;
51 51
 
52 52
 		$new_page_routes = array(
53 53
 			'question_groups' => array(
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 				'func' => '_trash_or_restore_questions',
81 81
 				'capability' => 'ee_delete_question',
82 82
 				'obj_id' => $qst_id,
83
-				'args' => array( 'trash' => FALSE ),
83
+				'args' => array('trash' => FALSE),
84 84
 				'noheader' => TRUE
85 85
 				),
86 86
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
 			'trash_question_group' => array(
141 141
 				'func' => '_trash_or_restore_question_groups',
142
-				'args' => array( 'trash' => TRUE ),
142
+				'args' => array('trash' => TRUE),
143 143
 				'capability' => 'ee_delete_question_group',
144 144
 				'obj_id' => $qsg_id,
145 145
 				'noheader' => TRUE
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
 			'restore_question_group' => array(
149 149
 				'func' => '_trash_or_restore_question_groups',
150
-				'args' => array( 'trash' => FALSE ),
150
+				'args' => array('trash' => FALSE),
151 151
 				'capability' => 'ee_delete_question_group',
152 152
 				'obj_id' => $qsg_id,
153 153
 				'noheader' => TRUE
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
 			'update_question_group' => array(
164 164
 				'func' => '_insert_or_update_question_group',
165
-				'args' => array('new_question_group' => FALSE ),
165
+				'args' => array('new_question_group' => FALSE),
166 166
 				'capability' => 'ee_edit_question_group',
167 167
 				'obj_id' => $qsg_id,
168 168
 				'noheader' => TRUE,
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 					'noheader' => TRUE
201 201
 				),
202 202
 			);
203
-		$this->_page_routes = array_merge( $this->_page_routes, $new_page_routes );
203
+		$this->_page_routes = array_merge($this->_page_routes, $new_page_routes);
204 204
 
205 205
 		$new_page_config = array(
206 206
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 						'filename' => 'registration_form_question_groups_views_bulk_actions_search'
225 225
 						),
226 226
 					),
227
-				'help_tour' => array( 'Registration_Form_Question_Groups_Help_Tour'),
227
+				'help_tour' => array('Registration_Form_Question_Groups_Help_Tour'),
228 228
 				'metaboxes' => $this->_default_espresso_metaboxes,
229 229
 				'require_nonce' => FALSE,
230 230
 				'qtips' => array(
@@ -238,14 +238,14 @@  discard block
 block discarded – undo
238 238
 					'order' => 5,
239 239
 					'persistent' => FALSE
240 240
 					),
241
-				'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array('_publish_post_box' ) ),
241
+				'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')),
242 242
                 'help_tabs' => array(
243 243
 					'registration_form_add_question_help_tab' => array(
244 244
 						'title' => __('Add Question', 'event_espresso'),
245 245
 						'filename' => 'registration_form_add_question'
246 246
 						),
247 247
 					),
248
-                'help_tour' => array( 'Registration_Form_Add_Question_Help_Tour'),
248
+                'help_tour' => array('Registration_Form_Add_Question_Help_Tour'),
249 249
 				'require_nonce' => FALSE
250 250
 				),
251 251
 
@@ -255,14 +255,14 @@  discard block
 block discarded – undo
255 255
 					'order' => 5,
256 256
 					'persistent' => FALSE
257 257
 					),
258
-				'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array('_publish_post_box' ) ),
258
+				'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')),
259 259
 				'help_tabs' => array(
260 260
 					'registration_form_add_question_group_help_tab' => array(
261 261
 						'title' => __('Add Question Group', 'event_espresso'),
262 262
 						'filename' => 'registration_form_add_question_group'
263 263
 						),
264 264
 					),
265
-                'help_tour' => array( 'Registration_Form_Add_Question_Group_Help_Tour'),
265
+                'help_tour' => array('Registration_Form_Add_Question_Group_Help_Tour'),
266 266
 				'require_nonce' => FALSE
267 267
 				),
268 268
 
@@ -271,16 +271,16 @@  discard block
 block discarded – undo
271 271
 					'label' => __('Edit Question Group', 'event_espresso'),
272 272
 					'order' => 5,
273 273
 					'persistent' => FALSE,
274
-					'url' => isset($this->_req_data['question_group_id']) ? add_query_arg(array('question_group_id' => $this->_req_data['question_group_id'] ), $this->_current_page_view_url )  : $this->_admin_base_url
274
+					'url' => isset($this->_req_data['question_group_id']) ? add_query_arg(array('question_group_id' => $this->_req_data['question_group_id']), $this->_current_page_view_url) : $this->_admin_base_url
275 275
 					),
276
-				'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array('_publish_post_box' ) ),
276
+				'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')),
277 277
 				'help_tabs' => array(
278 278
 					'registration_form_edit_question_group_help_tab' => array(
279 279
 						'title' => __('Edit Question Group', 'event_espresso'),
280 280
 						'filename' => 'registration_form_edit_question_group'
281 281
 						),
282 282
 					),
283
-                'help_tour' => array( 'Registration_Form_Edit_Question_Group_Help_Tour'),
283
+                'help_tour' => array('Registration_Form_Edit_Question_Group_Help_Tour'),
284 284
 				'require_nonce' => FALSE
285 285
 				),
286 286
 
@@ -292,19 +292,19 @@  discard block
 block discarded – undo
292 292
 				'labels' => array(
293 293
 					'publishbox' => __('Update Settings', 'event_espresso')
294 294
 					),
295
-				'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array( '_publish_post_box' ) ),
295
+				'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')),
296 296
 				'help_tabs' => array(
297 297
 					'registration_form_reg_form_settings_help_tab' => array(
298 298
 						'title' => __('Registration Form Settings', 'event_espresso'),
299 299
 						'filename' => 'registration_form_reg_form_settings'
300 300
 						),
301 301
 					),
302
-                'help_tour' => array( 'Registration_Form_Settings_Help_Tour'),
302
+                'help_tour' => array('Registration_Form_Settings_Help_Tour'),
303 303
 				'require_nonce' => FALSE
304 304
 				)
305 305
 
306 306
 			);
307
-		$this->_page_config = array_merge( $this->_page_config, $new_page_config );
307
+		$this->_page_config = array_merge($this->_page_config, $new_page_config);
308 308
 
309 309
 		//change the list table we're going to use so it's the NEW list table!
310 310
 		$this->_page_config['default']['list_table'] = 'Extend_Registration_Form_Questions_Admin_List_Table';
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 			'edit_question_group' => __('Edit Question Group', 'event_espresso'),
319 319
 			'delete_question_group' => __('Delete Question Group', 'event_espresso'),
320 320
 			);
321
-		$this->_labels['buttons'] = array_merge( $this->_labels['buttons'], $new_labels );
321
+		$this->_labels['buttons'] = array_merge($this->_labels['buttons'], $new_labels);
322 322
 
323 323
 	}
324 324
 
@@ -327,14 +327,14 @@  discard block
 block discarded – undo
327 327
 
328 328
 
329 329
 	protected function _ajax_hooks() {
330
-		add_action('wp_ajax_espresso_update_question_group_order', array( $this, 'update_question_group_order' ));
330
+		add_action('wp_ajax_espresso_update_question_group_order', array($this, 'update_question_group_order'));
331 331
 	}
332 332
 
333 333
 
334 334
 
335 335
 
336 336
 	public function load_scripts_styles_question_groups() {
337
-		wp_enqueue_script( 'espresso_ajax_table_sorting' );
337
+		wp_enqueue_script('espresso_ajax_table_sorting');
338 338
 	}
339 339
 
340 340
 
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	 * @return void
356 356
 	 */
357 357
 	public function load_sortable_question_script() {
358
-		wp_register_script('ee-question-sortable', REGISTRATION_FORM_CAF_ASSETS_URL . 'ee_question_order.js', array('jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
358
+		wp_register_script('ee-question-sortable', REGISTRATION_FORM_CAF_ASSETS_URL.'ee_question_order.js', array('jquery-ui-sortable'), EVENT_ESPRESSO_VERSION, true);
359 359
 		wp_enqueue_script('ee-question-sortable');
360 360
 	}
361 361
 
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 				)
375 375
 		);
376 376
 
377
-		if ( EE_Registry::instance()->CAP->current_user_can('ee_delete_questions', 'espresso_registration_form_trash_questions' ) ) {
377
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_questions', 'espresso_registration_form_trash_questions')) {
378 378
 			$this->_views['trash'] = array(
379 379
 				'slug' => 'trash',
380 380
 				'label' => __('Trash', 'event_espresso'),
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
 				)
405 405
 		);
406 406
 
407
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_question_groups', 'espresso_registration_form_trash_question_groups' ) ) {
407
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_question_groups', 'espresso_registration_form_trash_question_groups')) {
408 408
 			$this->_views['trash'] = array(
409 409
 				'slug' => 'trash',
410 410
 				'label' => __('Trash', 'event_espresso'),
@@ -440,24 +440,24 @@  discard block
 block discarded – undo
440 440
 
441 441
 
442 442
 
443
-	protected function _delete_question(){
444
-		$success = $this->_delete_items( $this->_question_model );
443
+	protected function _delete_question() {
444
+		$success = $this->_delete_items($this->_question_model);
445 445
 		$this->_redirect_after_action(
446 446
 			$success,
447
-			$this->_question_model->item_name( $success ),
447
+			$this->_question_model->item_name($success),
448 448
 			'deleted',
449
-			array( 'action' => 'default', 'status' => 'all' )
449
+			array('action' => 'default', 'status' => 'all')
450 450
 		);
451 451
 	}
452 452
 
453 453
 
454 454
 	protected function _delete_questions() {
455
-		$success = $this->_delete_items( $this->_question_model );
455
+		$success = $this->_delete_items($this->_question_model);
456 456
 		$this->_redirect_after_action(
457 457
 			$success,
458
-			$this->_question_model->item_name( $success ),
458
+			$this->_question_model->item_name($success),
459 459
 			'deleted permanently',
460
-			array( 'action' => 'default', 'status' => 'trash' )
460
+			array('action' => 'default', 'status' => 'trash')
461 461
 		);
462 462
 	}
463 463
 
@@ -468,26 +468,26 @@  discard block
 block discarded – undo
468 468
  * @param EEM_Soft_Delete_Base $model
469 469
  * @return int number of items deleted permanently
470 470
  */
471
-	private function _delete_items(EEM_Soft_Delete_Base $model){
471
+	private function _delete_items(EEM_Soft_Delete_Base $model) {
472 472
 		$success = 0;
473
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
474
-		if (!empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
473
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
474
+		if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
475 475
 			// if array has more than one element than success message should be plural
476
-			$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
476
+			$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
477 477
 			// cycle thru bulk action checkboxes
478
-			while (list( $ID, $value ) = each($this->_req_data['checkbox'])) {
479
-				if ( ! $this->_delete_item( $ID, $model ) ) {
478
+			while (list($ID, $value) = each($this->_req_data['checkbox'])) {
479
+				if ( ! $this->_delete_item($ID, $model)) {
480 480
 					$success = 0;
481 481
 				}
482 482
 			}
483 483
 
484
-		}elseif( !empty($this->_req_data['QSG_ID'])){
485
-			$success = $this->_delete_item( $this->_req_data['QSG_ID'], $model );
484
+		}elseif ( ! empty($this->_req_data['QSG_ID'])) {
485
+			$success = $this->_delete_item($this->_req_data['QSG_ID'], $model);
486 486
 
487
-		}elseif( !empty($this->_req_data['QST_ID'])){
488
-			$success = $this->_delete_item( $this->_req_data['QST_ID'], $model );
489
-		}else{
490
-			EE_Error::add_error( sprintf(__("No Questions or Question Groups were selected for deleting. This error usually shows when you've attempted to delete via bulk action but there were no selections.", "event_espresso")), __FILE__, __FUNCTION__, __LINE__ );
487
+		}elseif ( ! empty($this->_req_data['QST_ID'])) {
488
+			$success = $this->_delete_item($this->_req_data['QST_ID'], $model);
489
+		} else {
490
+			EE_Error::add_error(sprintf(__("No Questions or Question Groups were selected for deleting. This error usually shows when you've attempted to delete via bulk action but there were no selections.", "event_espresso")), __FILE__, __FUNCTION__, __LINE__);
491 491
 		}
492 492
 		return $success;
493 493
 	}
@@ -498,11 +498,11 @@  discard block
 block discarded – undo
498 498
 	 * @param EEM_Soft_Delete_Base $model
499 499
 	 * @return boolean
500 500
 	 */
501
-	protected function _delete_item( $id, $model ) {
502
-		if( $model instanceof EEM_Question ) {
503
-			EEM_Question_Option::instance()->delete_permanently( array( array( 'QST_ID' => absint( $id ) ) ) );
501
+	protected function _delete_item($id, $model) {
502
+		if ($model instanceof EEM_Question) {
503
+			EEM_Question_Option::instance()->delete_permanently(array(array('QST_ID' => absint($id))));
504 504
 		}
505
-		return $model->delete_permanently_by_ID( absint( $id ) );
505
+		return $model->delete_permanently_by_ID(absint($id));
506 506
 	}
507 507
 
508 508
 
@@ -514,29 +514,29 @@  discard block
 block discarded – undo
514 514
 
515 515
 
516 516
 
517
-	protected function _edit_question_group( $type = 'add' ) {
518
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
519
-		$ID=isset( $this->_req_data['QSG_ID'] ) && ! empty( $this->_req_data['QSG_ID'] ) ? absint( $this->_req_data['QSG_ID'] ) : FALSE;
520
-		$this->_admin_page_title = ucwords( str_replace( '_', ' ', $this->_req_action ));
517
+	protected function _edit_question_group($type = 'add') {
518
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
519
+		$ID = isset($this->_req_data['QSG_ID']) && ! empty($this->_req_data['QSG_ID']) ? absint($this->_req_data['QSG_ID']) : FALSE;
520
+		$this->_admin_page_title = ucwords(str_replace('_', ' ', $this->_req_action));
521 521
 		// add ID to title if editing
522
-		$this->_admin_page_title = $ID ? $this->_admin_page_title . ' # ' . $ID : $this->_admin_page_title;
523
-		if($ID){
524
-			$questionGroup=$this->_question_group_model->get_one_by_ID($ID);
525
-			$additional_hidden_fields=array('QSG_ID'=>array('type'=>'hidden','value'=>$ID));
522
+		$this->_admin_page_title = $ID ? $this->_admin_page_title.' # '.$ID : $this->_admin_page_title;
523
+		if ($ID) {
524
+			$questionGroup = $this->_question_group_model->get_one_by_ID($ID);
525
+			$additional_hidden_fields = array('QSG_ID'=>array('type'=>'hidden', 'value'=>$ID));
526 526
 			$this->_set_add_edit_form_tags('update_question_group', $additional_hidden_fields);
527
-		}else{
527
+		} else {
528 528
 			$questionGroup = EEM_Question_Group::instance()->create_default_object();
529 529
 			$questionGroup->set_order_to_latest();
530 530
 			$this->_set_add_edit_form_tags('insert_question_group');
531 531
 		}
532 532
 		$this->_template_args['values'] = $this->_yes_no_values;
533
-		$this->_template_args['all_questions']=$questionGroup->questions_in_and_not_in_group();
534
-		$this->_template_args['QSG_ID']=$ID ? $ID : TRUE;
535
-		$this->_template_args['question_group']=$questionGroup;
533
+		$this->_template_args['all_questions'] = $questionGroup->questions_in_and_not_in_group();
534
+		$this->_template_args['QSG_ID'] = $ID ? $ID : TRUE;
535
+		$this->_template_args['question_group'] = $questionGroup;
536 536
 
537
-		$redirect_URL = add_query_arg( array( 'action' => 'question_groups'), $this->_admin_base_url );
538
-		$this->_set_publish_post_box_vars( 'id', $ID, FALSE, $redirect_URL  );
539
-		$this->_template_args['admin_page_content'] = EEH_Template::display_template( REGISTRATION_FORM_CAF_TEMPLATE_PATH . 'question_groups_main_meta_box.template.php', $this->_template_args, TRUE );
537
+		$redirect_URL = add_query_arg(array('action' => 'question_groups'), $this->_admin_base_url);
538
+		$this->_set_publish_post_box_vars('id', $ID, FALSE, $redirect_URL);
539
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template(REGISTRATION_FORM_CAF_TEMPLATE_PATH.'question_groups_main_meta_box.template.php', $this->_template_args, TRUE);
540 540
 
541 541
 		// the details template wrapper
542 542
 		$this->display_admin_page_with_sidebar();
@@ -547,76 +547,76 @@  discard block
 block discarded – undo
547 547
 
548 548
 	protected function _delete_question_groups() {
549 549
 		$success = $this->_delete_items($this->_question_group_model);
550
-		$this->_redirect_after_action( $success, $this->_question_group_model->item_name($success), 'deleted permanently', array( 'action'=>'question_groups', 'status'=>'trash' ));
550
+		$this->_redirect_after_action($success, $this->_question_group_model->item_name($success), 'deleted permanently', array('action'=>'question_groups', 'status'=>'trash'));
551 551
 	}
552 552
 
553 553
 
554 554
 
555
-	protected function _insert_or_update_question_group( $new_question_group = TRUE) {
556
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
557
-		$set_column_values=$this->_set_column_values_for($this->_question_group_model);
558
-		if ( $new_question_group ){
555
+	protected function _insert_or_update_question_group($new_question_group = TRUE) {
556
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
557
+		$set_column_values = $this->_set_column_values_for($this->_question_group_model);
558
+		if ($new_question_group) {
559 559
 			$QSG_ID = $this->_question_group_model->insert($set_column_values);
560 560
 			$success = $QSG_ID ? 1 : 0;
561 561
 		} else {
562 562
 			$QSG_ID = absint($this->_req_data['QSG_ID']);
563
-			unset( $set_column_values[ 'QSG_ID' ] );
564
-			$success= $this->_question_group_model->update( $set_column_values, array( array( 'QSG_ID' => $QSG_ID )));
563
+			unset($set_column_values['QSG_ID']);
564
+			$success = $this->_question_group_model->update($set_column_values, array(array('QSG_ID' => $QSG_ID)));
565 565
 		}
566
-		$phone_question_id = EEM_Question::instance()->get_Question_ID_from_system_string( EEM_Attendee::system_question_phone );
566
+		$phone_question_id = EEM_Question::instance()->get_Question_ID_from_system_string(EEM_Attendee::system_question_phone);
567 567
 		// update the existing related questions
568 568
 		// BUT FIRST...  delete the phone question from the Question_Group_Question if it is being added to this question group (therefore removed from the existing group)
569
-		if ( isset( $this->_req_data['questions'], $this->_req_data['questions'][ $phone_question_id ] )) {
569
+		if (isset($this->_req_data['questions'], $this->_req_data['questions'][$phone_question_id])) {
570 570
 			// delete where QST ID = system phone question ID and Question Group ID is NOT this group
571
-			EEM_Question_Group_Question::instance()->delete( array( array( 'QST_ID' => $phone_question_id, 'QSG_ID' => array( '!=', $QSG_ID ))));
571
+			EEM_Question_Group_Question::instance()->delete(array(array('QST_ID' => $phone_question_id, 'QSG_ID' => array('!=', $QSG_ID))));
572 572
 		}
573 573
 		/** @type EE_Question_Group $question_group */
574
-		$question_group=$this->_question_group_model->get_one_by_ID( $QSG_ID );
574
+		$question_group = $this->_question_group_model->get_one_by_ID($QSG_ID);
575 575
 		$questions = $question_group->questions();
576 576
 		// make sure system phone question is added to list of questions for this group
577
-		if ( ! isset( $questions[$phone_question_id ] )) {
578
-			$questions[ $phone_question_id ] = EEM_Question::instance()->get_one_by_ID( $phone_question_id );
577
+		if ( ! isset($questions[$phone_question_id])) {
578
+			$questions[$phone_question_id] = EEM_Question::instance()->get_one_by_ID($phone_question_id);
579 579
 		}
580 580
 
581
-		foreach( $questions as $question_ID => $question ){
581
+		foreach ($questions as $question_ID => $question) {
582 582
 			// first we always check for order.
583
-			if ( ! empty( $this->_req_data['question_orders'][ $question_ID ] ) ){
583
+			if ( ! empty($this->_req_data['question_orders'][$question_ID])) {
584 584
 				//update question order
585
-				$question_group->update_question_order( $question_ID, $this->_req_data['question_orders'][ $question_ID ] );
585
+				$question_group->update_question_order($question_ID, $this->_req_data['question_orders'][$question_ID]);
586 586
 			}
587 587
 
588 588
 			// then we always check if adding or removing.
589
-			if ( isset( $this->_req_data['questions'], $this->_req_data['questions'][ $question_ID ] )) {
590
-				$question_group->add_question( $question_ID );
589
+			if (isset($this->_req_data['questions'], $this->_req_data['questions'][$question_ID])) {
590
+				$question_group->add_question($question_ID);
591 591
 			} else {
592 592
 				// not found, remove it (but only if not a system question for the personal group with the exception of lname system question - we allow removal of it)
593 593
 				if (
594 594
 					in_array(
595 595
 						$question->system_ID(),
596
-						EEM_Question::instance()->required_system_questions_in_system_question_group( $question_group->system_group() )
596
+						EEM_Question::instance()->required_system_questions_in_system_question_group($question_group->system_group())
597 597
 					)
598 598
 				) {
599 599
 					continue;
600 600
 				} else {
601
-					$question_group->remove_question( $question_ID );
601
+					$question_group->remove_question($question_ID);
602 602
 				}
603 603
 			}
604 604
 		}
605 605
 		// save new related questions
606
-		if ( isset( $this->_req_data['questions'] )) {
607
-			foreach( $this->_req_data['questions'] as $QST_ID ){
608
-				$question_group->add_question( $QST_ID );
609
-				if ( isset( $this->_req_data['question_orders'][ $QST_ID ] )) {
610
-					$question_group->update_question_order( $QST_ID, $this->_req_data['question_orders'][ $QST_ID ] );
606
+		if (isset($this->_req_data['questions'])) {
607
+			foreach ($this->_req_data['questions'] as $QST_ID) {
608
+				$question_group->add_question($QST_ID);
609
+				if (isset($this->_req_data['question_orders'][$QST_ID])) {
610
+					$question_group->update_question_order($QST_ID, $this->_req_data['question_orders'][$QST_ID]);
611 611
 				}
612 612
 			}
613 613
 		}
614 614
 
615
-		if ( $success !== FALSE ) {
616
-			$msg = $new_question_group ? sprintf( __('The %s has been created', 'event_espresso'), $this->_question_group_model->item_name() ) : sprintf( __('The %s has been updated', 'event_espresso' ), $this->_question_group_model->item_name() );
617
-			EE_Error::add_success( $msg );
615
+		if ($success !== FALSE) {
616
+			$msg = $new_question_group ? sprintf(__('The %s has been created', 'event_espresso'), $this->_question_group_model->item_name()) : sprintf(__('The %s has been updated', 'event_espresso'), $this->_question_group_model->item_name());
617
+			EE_Error::add_success($msg);
618 618
 		}
619
-		$this->_redirect_after_action(FALSE, '', '', array('action'=>'edit_question_group','QSG_ID'=>$QSG_ID), TRUE);
619
+		$this->_redirect_after_action(FALSE, '', '', array('action'=>'edit_question_group', 'QSG_ID'=>$QSG_ID), TRUE);
620 620
 
621 621
 	}
622 622
 
@@ -624,39 +624,39 @@  discard block
 block discarded – undo
624 624
 	 * duplicates a question and all its question options and redirects to the new question.
625 625
 	 */
626 626
 	public function _duplicate_question() {
627
-		$question_ID = intval( $this->_req_data[ 'QST_ID' ] );
628
-		$question = EEM_Question::instance()->get_one_by_ID( $question_ID );
629
-		if( $question instanceof EE_Question ) {
627
+		$question_ID = intval($this->_req_data['QST_ID']);
628
+		$question = EEM_Question::instance()->get_one_by_ID($question_ID);
629
+		if ($question instanceof EE_Question) {
630 630
 			$new_question = $question->duplicate();
631
-			if( $new_question instanceof EE_Question ) {
632
-				$this->_redirect_after_action( true, __( 'Question', 'event_espresso' ), __( 'Duplicated', 'event_espresso' ), array('action'=>'edit_question', 'QST_ID' => $new_question->ID() ), TRUE);
631
+			if ($new_question instanceof EE_Question) {
632
+				$this->_redirect_after_action(true, __('Question', 'event_espresso'), __('Duplicated', 'event_espresso'), array('action'=>'edit_question', 'QST_ID' => $new_question->ID()), TRUE);
633 633
 			} else {
634 634
 				global $wpdb;
635
-				EE_Error::add_error( sprintf( __( 'Could not duplicate question with ID %1$d because: %2$s', 'event_espresso' ), $question_ID, $wpdb->last_error ), __FILE__, __FUNCTION__, __LINE__ );
636
-			$this->_redirect_after_action(false, '', '', array('action'=>'default'), false );
635
+				EE_Error::add_error(sprintf(__('Could not duplicate question with ID %1$d because: %2$s', 'event_espresso'), $question_ID, $wpdb->last_error), __FILE__, __FUNCTION__, __LINE__);
636
+			$this->_redirect_after_action(false, '', '', array('action'=>'default'), false);
637 637
 			}
638 638
 		} else {
639
-			EE_Error::add_error( sprintf( __( 'Could not duplicate question with ID %d because it didn\'t exist!', 'event_espresso' ), $question_ID ), __FILE__, __FUNCTION__, __LINE__ );
640
-			$this->_redirect_after_action( false, '', '', array( 'action' => 'default' ), false );
639
+			EE_Error::add_error(sprintf(__('Could not duplicate question with ID %d because it didn\'t exist!', 'event_espresso'), $question_ID), __FILE__, __FUNCTION__, __LINE__);
640
+			$this->_redirect_after_action(false, '', '', array('action' => 'default'), false);
641 641
 		}
642 642
 	}
643 643
 
644 644
 
645 645
 
646 646
 	protected function _trash_or_restore_question_groups($trash = TRUE) {
647
-		return $this->_trash_or_restore_items( $this->_question_group_model, $trash );
647
+		return $this->_trash_or_restore_items($this->_question_group_model, $trash);
648 648
 	}
649 649
 
650
-	protected function _trash_question(){
651
-		$success=$this->_question_model->delete_by_ID(intval($this->_req_data['QST_ID']));
652
-		$query_args=array('action'=>'default','status'=>'all');
650
+	protected function _trash_question() {
651
+		$success = $this->_question_model->delete_by_ID(intval($this->_req_data['QST_ID']));
652
+		$query_args = array('action'=>'default', 'status'=>'all');
653 653
 		$this->_redirect_after_action($success, $this->_question_model->item_name($success), 'trashed', $query_args);
654 654
 	}
655 655
 
656 656
 
657 657
 
658
-	protected function _trash_or_restore_questions($trash=TRUE){
659
-		$this->_trash_or_restore_items( $this->_question_model, $trash );
658
+	protected function _trash_or_restore_questions($trash = TRUE) {
659
+		$this->_trash_or_restore_items($this->_question_model, $trash);
660 660
 	}
661 661
 
662 662
 
@@ -667,21 +667,21 @@  discard block
 block discarded – undo
667 667
 	 * @param EEM_Base $model
668 668
 	 * @param boolean $trash wehter to trash or restore
669 669
 	 */
670
-	private function _trash_or_restore_items( EEM_Base $model, $trash = TRUE ) {
670
+	private function _trash_or_restore_items(EEM_Base $model, $trash = TRUE) {
671 671
 
672
-		do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' );
672
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
673 673
 
674 674
 		$success = 1;
675 675
 		//Checkboxes
676 676
 		//echo "trash $trash";
677 677
 		//var_dump($this->_req_data['checkbox']);die;
678
-		if ( isset( $this->_req_data['checkbox'] )) {
679
-			if ( isset( $this->_req_data['checkbox'] ) && ! empty( $this->_req_data['checkbox'] ) && is_array( $this->_req_data['checkbox'] )) {
678
+		if (isset($this->_req_data['checkbox'])) {
679
+			if (isset($this->_req_data['checkbox']) && ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) {
680 680
 				// if array has more than one element than success message should be plural
681
-				$success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1;
681
+				$success = count($this->_req_data['checkbox']) > 1 ? 2 : 1;
682 682
 				// cycle thru bulk action checkboxes
683
-				while (list( $ID, $value ) = each($this->_req_data['checkbox'])) {
684
-					if ( ! $model->delete_or_restore_by_ID($trash,absint($ID))) {
683
+				while (list($ID, $value) = each($this->_req_data['checkbox'])) {
684
+					if ( ! $model->delete_or_restore_by_ID($trash, absint($ID))) {
685 685
 						$success = 0;
686 686
 					}
687 687
 				}
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
 			} else {
690 690
 				// grab single id and delete
691 691
 				$ID = absint($this->_req_data['checkbox']);
692
-				if ( ! $model->delete_or_restore_by_ID($trash,$ID)) {
692
+				if ( ! $model->delete_or_restore_by_ID($trash, $ID)) {
693 693
 					$success = 0;
694 694
 				}
695 695
 			}
@@ -697,53 +697,53 @@  discard block
 block discarded – undo
697 697
 		} else {
698 698
 			// delete via trash link
699 699
 			// grab single id and delete
700
-			$ID = absint($this->_req_data[ $model->primary_key_name() ]);
701
-			if ( ! $model->delete_or_restore_by_ID($trash,$ID)) {
700
+			$ID = absint($this->_req_data[$model->primary_key_name()]);
701
+			if ( ! $model->delete_or_restore_by_ID($trash, $ID)) {
702 702
 				$success = 0;
703 703
 			}
704 704
 
705 705
 		}
706 706
 
707 707
 
708
-		$action = $model instanceof EEM_Question ? 'default' : 'question_groups';//strtolower( $model->item_name(2) );
708
+		$action = $model instanceof EEM_Question ? 'default' : 'question_groups'; //strtolower( $model->item_name(2) );
709 709
 		//echo "action :$action";
710 710
 		//$action = 'questions' ? 'default' : $action;
711
-		if($trash){
711
+		if ($trash) {
712 712
 			$action_desc = 'trashed';
713 713
 			$status = 'trash';
714
-		}else{
714
+		} else {
715 715
 			$action_desc = 'restored';
716 716
 			$status = 'all';
717 717
 		}
718
-		$this->_redirect_after_action( $success, $model->item_name($success), $action_desc, array( 'action' => $action, 'status'=>$status ) );
718
+		$this->_redirect_after_action($success, $model->item_name($success), $action_desc, array('action' => $action, 'status'=>$status));
719 719
 	}
720 720
 
721 721
 
722 722
 
723 723
 
724
-	public function get_trashed_questions( $per_page,$current_page = 1, $count = FALSE ) {
724
+	public function get_trashed_questions($per_page, $current_page = 1, $count = FALSE) {
725 725
 		$query_params = $this->get_query_params(EEM_Question::instance(), $per_page, $current_page);
726 726
 
727
-		if( $count ){
727
+		if ($count) {
728 728
 			//note: this a subclass of EEM_Soft_Delete_Base, so this is actually only getting non-trashed items
729
-			$where = isset( $query_params[0] ) ? array( $query_params[0] ) : array();
730
-			$results=$this->_question_model->count_deleted($where);
731
-		}else{
729
+			$where = isset($query_params[0]) ? array($query_params[0]) : array();
730
+			$results = $this->_question_model->count_deleted($where);
731
+		} else {
732 732
 			//note: this a subclass of EEM_Soft_Delete_Base, so this is actually only getting non-trashed items
733
-			$results=$this->_question_model->get_all_deleted($query_params);
733
+			$results = $this->_question_model->get_all_deleted($query_params);
734 734
 		}
735 735
 		return $results;
736 736
 	}
737 737
 
738 738
 
739 739
 
740
-	public function get_question_groups( $per_page, $current_page = 1, $count = FALSE ) {
741
-		$questionGroupModel=EEM_Question_Group::instance();
742
-		$query_params=$this->get_query_params($questionGroupModel,$per_page,$current_page);
743
-		if ($count){
744
-			$where = isset( $query_params[0] ) ? array( $query_params[0] ) : array();
740
+	public function get_question_groups($per_page, $current_page = 1, $count = FALSE) {
741
+		$questionGroupModel = EEM_Question_Group::instance();
742
+		$query_params = $this->get_query_params($questionGroupModel, $per_page, $current_page);
743
+		if ($count) {
744
+			$where = isset($query_params[0]) ? array($query_params[0]) : array();
745 745
 			$results = $questionGroupModel->count($where);
746
-		}else{
746
+		} else {
747 747
 			$results = $questionGroupModel->get_all($query_params);
748 748
 		}
749 749
 		return $results;
@@ -751,14 +751,14 @@  discard block
 block discarded – undo
751 751
 
752 752
 
753 753
 
754
-	public function get_trashed_question_groups( $per_page,$current_page = 1, $count = FALSE ) {
755
-		$questionGroupModel=EEM_Question_Group::instance();
756
-		$query_params=$this->get_query_params($questionGroupModel,$per_page,$current_page);
757
-		if($count){
758
-			$where = isset( $query_params[0] ) ? array($query_params[0]) : array();
754
+	public function get_trashed_question_groups($per_page, $current_page = 1, $count = FALSE) {
755
+		$questionGroupModel = EEM_Question_Group::instance();
756
+		$query_params = $this->get_query_params($questionGroupModel, $per_page, $current_page);
757
+		if ($count) {
758
+			$where = isset($query_params[0]) ? array($query_params[0]) : array();
759 759
 			$query_params['limit'] = NULL;
760 760
 			$results = $questionGroupModel->count_deleted($where);
761
-		}else{
761
+		} else {
762 762
 			$results = $questionGroupModel->get_all_deleted($query_params);
763 763
 		}
764 764
 		return $results;
@@ -771,22 +771,22 @@  discard block
 block discarded – undo
771 771
 	 */
772 772
 	public function update_question_group_order() {
773 773
 
774
-		$success = __( 'Question group order was updated successfully.', 'event_espresso' );
774
+		$success = __('Question group order was updated successfully.', 'event_espresso');
775 775
 
776 776
 		// grab our row IDs
777
-		$row_ids = isset( $this->_req_data['row_ids'] ) && ! empty( $this->_req_data['row_ids'] ) ? explode( ',', rtrim( $this->_req_data['row_ids'], ',' )) : FALSE;
777
+		$row_ids = isset($this->_req_data['row_ids']) && ! empty($this->_req_data['row_ids']) ? explode(',', rtrim($this->_req_data['row_ids'], ',')) : FALSE;
778 778
 
779
-		$perpage = !empty( $this->_req_data['perpage'] ) ? (int) $this->_req_data['perpage'] : NULL;
780
-		$curpage = !empty( $this->_req_data['curpage'] ) ? (int) $this->_req_data['curpage'] : NULL;
779
+		$perpage = ! empty($this->_req_data['perpage']) ? (int) $this->_req_data['perpage'] : NULL;
780
+		$curpage = ! empty($this->_req_data['curpage']) ? (int) $this->_req_data['curpage'] : NULL;
781 781
 
782
-		if ( is_array( $row_ids )) {
782
+		if (is_array($row_ids)) {
783 783
 			//figure out where we start the row_id count at for the current page.
784
-			$qsgcount = empty( $curpage ) ? 0 : ($curpage - 1 ) * $perpage;
784
+			$qsgcount = empty($curpage) ? 0 : ($curpage - 1) * $perpage;
785 785
 
786 786
 			global $wpdb;
787
-			for ( $i = 0; $i < count($row_ids); $i++ ) {
787
+			for ($i = 0; $i < count($row_ids); $i++) {
788 788
 				//Update the questions when re-ordering
789
-				if ( EEM_Question_Group::instance()->update ( array( 'QSG_order' => $qsgcount ), array(array( 'QSG_ID' => $row_ids[$i] ))) === FALSE ) {
789
+				if (EEM_Question_Group::instance()->update(array('QSG_order' => $qsgcount), array(array('QSG_ID' => $row_ids[$i]))) === FALSE) {
790 790
 					$success = FALSE;
791 791
 				}
792 792
 				$qsgcount++;
@@ -795,9 +795,9 @@  discard block
 block discarded – undo
795 795
 			$success = FALSE;
796 796
 		}
797 797
 
798
-		$errors = ! $success ? __( 'An error occurred. The question group order was not updated.', 'event_espresso' ) : FALSE;
798
+		$errors = ! $success ? __('An error occurred. The question group order was not updated.', 'event_espresso') : FALSE;
799 799
 
800
-		echo json_encode( array( 'return_data' => FALSE, 'success' => $success, 'errors' => $errors ));
800
+		echo json_encode(array('return_data' => FALSE, 'success' => $success, 'errors' => $errors));
801 801
 		die();
802 802
 
803 803
 	}
@@ -814,10 +814,10 @@  discard block
 block discarded – undo
814 814
 
815 815
 	protected function _reg_form_settings() {
816 816
 		$this->_template_args['values'] = $this->_yes_no_values;
817
-		$this->_template_args = apply_filters( 'FHEE__Extend_Registration_Form_Admin_Page___reg_form_settings___template_args', $this->_template_args );
818
-		$this->_set_add_edit_form_tags( 'update_reg_form_settings' );
819
-		$this->_set_publish_post_box_vars( NULL, FALSE, FALSE, NULL, FALSE );
820
-		$this->_template_args['admin_page_content'] = EEH_Template::display_template( REGISTRATION_FORM_CAF_TEMPLATE_PATH . 'reg_form_settings.template.php', $this->_template_args, TRUE );
817
+		$this->_template_args = apply_filters('FHEE__Extend_Registration_Form_Admin_Page___reg_form_settings___template_args', $this->_template_args);
818
+		$this->_set_add_edit_form_tags('update_reg_form_settings');
819
+		$this->_set_publish_post_box_vars(NULL, FALSE, FALSE, NULL, FALSE);
820
+		$this->_template_args['admin_page_content'] = EEH_Template::display_template(REGISTRATION_FORM_CAF_TEMPLATE_PATH.'reg_form_settings.template.php', $this->_template_args, TRUE);
821 821
 		$this->display_admin_page_with_sidebar();
822 822
 	}
823 823
 
@@ -825,9 +825,9 @@  discard block
 block discarded – undo
825 825
 
826 826
 
827 827
 	protected function _update_reg_form_settings() {
828
-		EE_Registry::instance()->CFG->registration = apply_filters( 'FHEE__Extend_Registration_Form_Admin_Page___update_reg_form_settings__CFG_registration', EE_Registry::instance()->CFG->registration );
829
-		$success = $this->_update_espresso_configuration( __('Registration Form Options', 'event_espresso'), EE_Registry::instance()->CFG, __FILE__, __FUNCTION__, __LINE__ );
830
-		$this->_redirect_after_action( $success, __('Registration Form Options', 'event_espresso'), 'updated', array( 'action' => 'view_reg_form_settings' ) );
828
+		EE_Registry::instance()->CFG->registration = apply_filters('FHEE__Extend_Registration_Form_Admin_Page___update_reg_form_settings__CFG_registration', EE_Registry::instance()->CFG->registration);
829
+		$success = $this->_update_espresso_configuration(__('Registration Form Options', 'event_espresso'), EE_Registry::instance()->CFG, __FILE__, __FUNCTION__, __LINE__);
830
+		$this->_redirect_after_action($success, __('Registration Form Options', 'event_espresso'), 'updated', array('action' => 'view_reg_form_settings'));
831 831
 	}
832 832
 
833 833
 }
Please login to merge, or discard this patch.
caffeinated/payment_methods/Paypal_Pro/EEG_Paypal_Pro.gateway.php 1 patch
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('No direct script access allowed');
5 5
 
6 6
 /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * ------------------------------------------------------------------------
27 27
  */
28
-class EEG_Paypal_Pro extends EE_Onsite_Gateway{
28
+class EEG_Paypal_Pro extends EE_Onsite_Gateway {
29 29
 	/**
30 30
 	 *
31 31
 	 * @var $_paypal_api_username string
@@ -88,21 +88,21 @@  discard block
 block discarded – undo
88 88
 	 * } @see parent::do_direct_payment for more info
89 89
 	 * @return \EE_Payment|\EEI_Payment
90 90
 	 */
91
-	public function do_direct_payment($payment,$billing_info = null){
91
+	public function do_direct_payment($payment, $billing_info = null) {
92 92
 		$transaction = $payment->transaction();
93 93
 		$primary_registrant = $transaction->primary_registration();
94
-		$order_description  = sprintf(__("Event Registrations from %s", "event_espresso"),get_bloginfo('name'));
94
+		$order_description  = sprintf(__("Event Registrations from %s", "event_espresso"), get_bloginfo('name'));
95 95
 		//charge for the full amount. Show itemized list
96
-		if( $this->_can_easily_itemize_transaction_for( $payment ) ){
96
+		if ($this->_can_easily_itemize_transaction_for($payment)) {
97 97
 			$item_num = 1;
98 98
 			$total_line_item = $transaction->total_line_item();
99 99
 			$order_items = array();
100 100
 			foreach ($total_line_item->get_items() as $line_item) {
101 101
 				$item = array(
102 102
 						// Item Name.  127 char max.
103
-						'l_name' => substr($line_item->name(),0,127),
103
+						'l_name' => substr($line_item->name(), 0, 127),
104 104
 						// Item description.  127 char max.
105
-						'l_desc' => substr($line_item->desc(),0,127),
105
+						'l_desc' => substr($line_item->desc(), 0, 127),
106 106
 						// Cost of individual item.
107 107
 						'l_amt' => $line_item->unit_price(),
108 108
 						// Item Number.  127 char max.
@@ -123,14 +123,14 @@  discard block
 block discarded – undo
123 123
 			}
124 124
 			$item_amount = $total_line_item->get_items_total();
125 125
 			$tax_amount = $total_line_item->get_total_tax();
126
-		}else{
126
+		} else {
127 127
 			$order_items = array();
128 128
 			$item_amount = $payment->amount();
129
-			$single_item_desc = sprintf(__("Partial payment of %s for %s", "event_espresso"),$payment->amount(),$primary_registrant->reg_code());
129
+			$single_item_desc = sprintf(__("Partial payment of %s for %s", "event_espresso"), $payment->amount(), $primary_registrant->reg_code());
130 130
 			$tax_amount = 0;
131
-			array_push($order_items,array(
131
+			array_push($order_items, array(
132 132
 				// Item Name.  127 char max.
133
-				'l_name' => sprintf(__("Partial payment for registration: %s", 'event_espresso'),$primary_registrant->reg_code()),
133
+				'l_name' => sprintf(__("Partial payment for registration: %s", 'event_espresso'), $primary_registrant->reg_code()),
134 134
 				// Item description.  127 char max.
135 135
 				'l_desc' => $single_item_desc,
136 136
 				// Cost of individual item.
@@ -177,11 +177,11 @@  discard block
 block discarded – undo
177 177
 			// Payer's salutation.  20 char max.
178 178
 			'salutation' => '',
179 179
 			// Payer's first name.  25 char max.
180
-			'firstname' => substr($billing_info['first_name'],0,25),
180
+			'firstname' => substr($billing_info['first_name'], 0, 25),
181 181
 			// Payer's middle name.  25 char max.
182 182
 			'middlename' => '',
183 183
 			// Payer's last name.  25 char max.
184
-			'lastname' => substr($billing_info['last_name'],0,25),
184
+			'lastname' => substr($billing_info['last_name'], 0, 25),
185 185
 			// Payer's suffix.  12 char max.
186 186
 			'suffix' => ''
187 187
 		);
@@ -194,13 +194,13 @@  discard block
 block discarded – undo
194 194
 			// Required.  Name of City.
195 195
 			'city' => $billing_info['city'],
196 196
 			// Required. Name of State or Province.
197
-			'state' => substr( $billing_info['state'], 0, 40 ),
197
+			'state' => substr($billing_info['state'], 0, 40),
198 198
 			// Required.  Country code.
199 199
 			'countrycode' => $billing_info['country'],
200 200
 			// Required.  Postal code of payer.
201 201
 			'zip' => $billing_info['zip'],
202 202
 			// Phone Number of payer.  20 char max.
203
-			'shiptophonenum' => substr($billing_info['phone'],0,20)
203
+			'shiptophonenum' => substr($billing_info['phone'], 0, 20)
204 204
 		);
205 205
 
206 206
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 			// Required.  Three-letter currency code.  Default is USD.
211 211
 			'currencycode' => $payment->currency_code(),
212 212
 			// Required if you include itemized cart details. (L_AMTn, etc.)  Subtotal of items not including S&H, or tax.
213
-			'itemamt' => $this->format_currency($item_amount),//
213
+			'itemamt' => $this->format_currency($item_amount), //
214 214
 			// Total shipping costs for the order.  If you specify shippingamt, you must also specify itemamt.
215 215
 			'shippingamt' => '',
216 216
 			// Total handling costs for the order.  If you specify handlingamt, you must also specify itemamt.
@@ -222,10 +222,10 @@  discard block
 block discarded – undo
222 222
 			// Free-form field for your own use.  256 char max.
223 223
 			'custom' => $primary_registrant ? $primary_registrant->ID() : '',
224 224
 			// Your own invoice or tracking number
225
-			'invnum' => wp_generate_password(12,false),//$transaction->ID(),
225
+			'invnum' => wp_generate_password(12, false), //$transaction->ID(),
226 226
 			// URL for receiving Instant Payment Notifications.  This overrides what your profile is set to use.
227 227
 			'notifyurl' => '',
228
-			'buttonsource' => 'EventEspresso_SP',//EE will blow up if you change this
228
+			'buttonsource' => 'EventEspresso_SP', //EE will blow up if you change this
229 229
 		);
230 230
 		// Wrap all data arrays into a single, "master" array which will be passed into the class function.
231 231
 		$PayPalRequestData = array(
@@ -238,32 +238,32 @@  discard block
 block discarded – undo
238 238
 				'OrderItems' => $order_items,
239 239
 		);
240 240
 		$this->_log_clean_request($PayPalRequestData, $payment);
241
-		try{
241
+		try {
242 242
 			$PayPalResult = $this->prep_and_curl_request($PayPalRequestData);
243 243
 			//remove PCI-sensitive data so it doesn't get stored
244
-			$PayPalResult = $this->_log_clean_response($PayPalResult,$payment);
244
+			$PayPalResult = $this->_log_clean_response($PayPalResult, $payment);
245 245
 
246 246
 			$message = isset($PayPalResult['L_LONGMESSAGE0']) ? $PayPalResult['L_LONGMESSAGE0'] : $PayPalResult['ACK'];
247
-			if( empty($PayPalResult[ 'RAWRESPONSE' ] ) ) {
248
-				$payment->set_status( $this->_pay_model->failed_status() ) ;
249
-				$payment->set_gateway_response( __( 'No response received from Paypal Pro', 'event_espresso' ) );
247
+			if (empty($PayPalResult['RAWRESPONSE'])) {
248
+				$payment->set_status($this->_pay_model->failed_status());
249
+				$payment->set_gateway_response(__('No response received from Paypal Pro', 'event_espresso'));
250 250
 				$payment->set_details($PayPalResult);
251
-			}else{
252
-				if($this->_APICallSuccessful($PayPalResult)){
251
+			} else {
252
+				if ($this->_APICallSuccessful($PayPalResult)) {
253 253
 					$payment->set_status($this->_pay_model->approved_status());
254
-				}else{
254
+				} else {
255 255
 					$payment->set_status($this->_pay_model->declined_status());
256 256
 				}
257 257
 				//make sure we interpret the AMT as a float, not an international string (where periods are thousand separators)
258
-				$payment->set_amount(isset($PayPalResult['AMT']) ? floatval( $PayPalResult['AMT'] ) : 0);
258
+				$payment->set_amount(isset($PayPalResult['AMT']) ? floatval($PayPalResult['AMT']) : 0);
259 259
 				$payment->set_gateway_response($message);
260
-				$payment->set_txn_id_chq_nmbr(isset( $PayPalResult['TRANSACTIONID'] )? $PayPalResult['TRANSACTIONID'] : null);
260
+				$payment->set_txn_id_chq_nmbr(isset($PayPalResult['TRANSACTIONID']) ? $PayPalResult['TRANSACTIONID'] : null);
261 261
 
262 262
 				$primary_registration_code = $primary_registrant instanceof EE_Registration ? $primary_registrant->reg_code() : '';
263 263
 				$payment->set_extra_accntng($primary_registration_code);
264 264
 				$payment->set_details($PayPalResult);
265 265
 			}
266
-		}catch(Exception $e){
266
+		} catch (Exception $e) {
267 267
 			$payment->set_status($this->_pay_model->failed_status());
268 268
 			$payment->set_gateway_response($e->getMessage());
269 269
 		}
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	 * @param EEI_Payment $payment
281 281
 	 * @return array
282 282
 	 */
283
-	private function _log_clean_request($request,$payment){
283
+	private function _log_clean_request($request, $payment) {
284 284
 		$cleaned_request_data = $request;
285 285
 		unset($cleaned_request_data['CCDetails']['acct']);
286 286
 		unset($cleaned_request_data['CCDetails']['cvv2']);
@@ -296,13 +296,13 @@  discard block
 block discarded – undo
296 296
 	 * @param EEI_Payment $payment
297 297
 	 * @return array cleaned
298 298
 	 */
299
-	private function _log_clean_response($response,$payment){
299
+	private function _log_clean_response($response, $payment) {
300 300
 		unset($response['REQUESTDATA']['CREDITCARDTYPE']);
301 301
 		unset($response['REQUESTDATA']['ACCT']);
302 302
 		unset($response['REQUESTDATA']['EXPDATE']);
303 303
 		unset($response['REQUESTDATA']['CVV2']);
304 304
 		unset($response['RAWREQUEST']);
305
-		$this->log(array('Paypal Response'=>$response),$payment);
305
+		$this->log(array('Paypal Response'=>$response), $payment);
306 306
 		return $response;
307 307
 	}
308 308
 
@@ -327,32 +327,32 @@  discard block
 block discarded – undo
327 327
 		// DP Fields
328 328
 		$DPFields = isset($DataArray['DPFields']) ? $DataArray['DPFields'] : array();
329 329
 		foreach ($DPFields as $DPFieldsVar => $DPFieldsVal)
330
-			$DPFieldsNVP .= '&' . strtoupper($DPFieldsVar) . '=' . urlencode($DPFieldsVal);
330
+			$DPFieldsNVP .= '&'.strtoupper($DPFieldsVar).'='.urlencode($DPFieldsVal);
331 331
 
332 332
 		// CC Details Fields
333 333
 		$CCDetails = isset($DataArray['CCDetails']) ? $DataArray['CCDetails'] : array();
334 334
 		foreach ($CCDetails as $CCDetailsVar => $CCDetailsVal)
335
-			$CCDetailsNVP .= '&' . strtoupper($CCDetailsVar) . '=' . urlencode($CCDetailsVal);
335
+			$CCDetailsNVP .= '&'.strtoupper($CCDetailsVar).'='.urlencode($CCDetailsVal);
336 336
 
337 337
 		// PayerInfo Type Fields
338 338
 		$PayerInfo = isset($DataArray['PayerInfo']) ? $DataArray['PayerInfo'] : array();
339 339
 		foreach ($PayerInfo as $PayerInfoVar => $PayerInfoVal)
340
-			$PayerInfoNVP .= '&' . strtoupper($PayerInfoVar) . '=' . urlencode($PayerInfoVal);
340
+			$PayerInfoNVP .= '&'.strtoupper($PayerInfoVar).'='.urlencode($PayerInfoVal);
341 341
 
342 342
 		// Payer Name Fields
343 343
 		$PayerName = isset($DataArray['PayerName']) ? $DataArray['PayerName'] : array();
344 344
 		foreach ($PayerName as $PayerNameVar => $PayerNameVal)
345
-			$PayerNameNVP .= '&' . strtoupper($PayerNameVar) . '=' . urlencode($PayerNameVal);
345
+			$PayerNameNVP .= '&'.strtoupper($PayerNameVar).'='.urlencode($PayerNameVal);
346 346
 
347 347
 		// Address Fields (Billing)
348 348
 		$BillingAddress = isset($DataArray['BillingAddress']) ? $DataArray['BillingAddress'] : array();
349 349
 		foreach ($BillingAddress as $BillingAddressVar => $BillingAddressVal)
350
-			$BillingAddressNVP .= '&' . strtoupper($BillingAddressVar) . '=' . urlencode($BillingAddressVal);
350
+			$BillingAddressNVP .= '&'.strtoupper($BillingAddressVar).'='.urlencode($BillingAddressVal);
351 351
 
352 352
 		// Payment Details Type Fields
353 353
 		$PaymentDetails = isset($DataArray['PaymentDetails']) ? $DataArray['PaymentDetails'] : array();
354 354
 		foreach ($PaymentDetails as $PaymentDetailsVar => $PaymentDetailsVal)
355
-			$PaymentDetailsNVP .= '&' . strtoupper($PaymentDetailsVar) . '=' . urlencode($PaymentDetailsVal);
355
+			$PaymentDetailsNVP .= '&'.strtoupper($PaymentDetailsVar).'='.urlencode($PaymentDetailsVal);
356 356
 
357 357
 		// Payment Details Item Type Fields
358 358
 		$OrderItems = isset($DataArray['OrderItems']) ? $DataArray['OrderItems'] : array();
@@ -360,22 +360,22 @@  discard block
 block discarded – undo
360 360
 		foreach ($OrderItems as $OrderItemsVar => $OrderItemsVal) {
361 361
 			$CurrentItem = $OrderItems[$OrderItemsVar];
362 362
 			foreach ($CurrentItem as $CurrentItemVar => $CurrentItemVal)
363
-				$OrderItemsNVP .= '&' . strtoupper($CurrentItemVar) . $n . '=' . urlencode($CurrentItemVal);
363
+				$OrderItemsNVP .= '&'.strtoupper($CurrentItemVar).$n.'='.urlencode($CurrentItemVal);
364 364
 			$n++;
365 365
 		}
366 366
 
367 367
 		// Ship To Address Fields
368 368
 		$ShippingAddress = isset($DataArray['ShippingAddress']) ? $DataArray['ShippingAddress'] : array();
369 369
 		foreach ($ShippingAddress as $ShippingAddressVar => $ShippingAddressVal)
370
-			$ShippingAddressNVP .= '&' . strtoupper($ShippingAddressVar) . '=' . urlencode($ShippingAddressVal);
370
+			$ShippingAddressNVP .= '&'.strtoupper($ShippingAddressVar).'='.urlencode($ShippingAddressVal);
371 371
 
372 372
 		// 3D Secure Fields
373 373
 		$Secure3D = isset($DataArray['Secure3D']) ? $DataArray['Secure3D'] : array();
374 374
 		foreach ($Secure3D as $Secure3DVar => $Secure3DVal)
375
-			$Secure3DNVP .= '&' . strtoupper($Secure3DVar) . '=' . urlencode($Secure3DVal);
375
+			$Secure3DNVP .= '&'.strtoupper($Secure3DVar).'='.urlencode($Secure3DVal);
376 376
 
377 377
 		// Now that we have each chunk we need to go ahead and append them all together for our entire NVP string
378
-		$NVPRequest = 'USER=' . $this->_username . '&PWD=' . $this->_password . '&VERSION=64.0' . '&SIGNATURE=' . $this->_signature . $DPFieldsNVP . $CCDetailsNVP . $PayerInfoNVP . $PayerNameNVP . $BillingAddressNVP . $PaymentDetailsNVP . $OrderItemsNVP . $ShippingAddressNVP . $Secure3DNVP;
378
+		$NVPRequest = 'USER='.$this->_username.'&PWD='.$this->_password.'&VERSION=64.0'.'&SIGNATURE='.$this->_signature.$DPFieldsNVP.$CCDetailsNVP.$PayerInfoNVP.$PayerNameNVP.$BillingAddressNVP.$PaymentDetailsNVP.$OrderItemsNVP.$ShippingAddressNVP.$Secure3DNVP;
379 379
 		$NVPResponse = $this->_CURLRequest($NVPRequest);
380 380
 		$NVPRequestArray = $this->_NVPToArray($NVPRequest);
381 381
 		$NVPResponseArray = $this->_NVPToArray($NVPResponse);
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 	private function _CURLRequest($Request) {
400 400
 		$EndPointURL = $this->_debug_mode ? 'https://api-3t.sandbox.paypal.com/nvp' : 'https://api-3t.paypal.com/nvp';
401 401
 		$curl = curl_init();
402
-		curl_setopt($curl, CURLOPT_VERBOSE, apply_filters('FHEE__EEG_Paypal_Pro__CurlRequest__CURLOPT_VERBOSE', TRUE ) );
402
+		curl_setopt($curl, CURLOPT_VERBOSE, apply_filters('FHEE__EEG_Paypal_Pro__CurlRequest__CURLOPT_VERBOSE', TRUE));
403 403
 		curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
404 404
 		curl_setopt($curl, CURLOPT_TIMEOUT, 60);
405 405
 		curl_setopt($curl, CURLOPT_URL, $EndPointURL);
@@ -449,9 +449,9 @@  discard block
 block discarded – undo
449 449
 	private function _APICallSuccessful($PayPalResult) {
450 450
 		$approved = false;
451 451
 		// check main response message from PayPal
452
-		if (isset($PayPalResult['ACK']) && !empty($PayPalResult['ACK'])) {
452
+		if (isset($PayPalResult['ACK']) && ! empty($PayPalResult['ACK'])) {
453 453
 			$ack = strtoupper($PayPalResult['ACK']);
454
-			$approved = ( $ack == 'SUCCESS' || $ack == 'SUCCESSWITHWARNING' || $ack == 'PARTIALSUCCESS' ) ? true : false;
454
+			$approved = ($ack == 'SUCCESS' || $ack == 'SUCCESSWITHWARNING' || $ack == 'PARTIALSUCCESS') ? true : false;
455 455
 		}
456 456
 
457 457
 		return $approved;
@@ -467,11 +467,11 @@  discard block
 block discarded – undo
467 467
 
468 468
 		$Errors = array();
469 469
 		$n = 0;
470
-		while (isset($DataArray['L_ERRORCODE' . $n . ''])) {
471
-			$LErrorCode = isset($DataArray['L_ERRORCODE' . $n . '']) ? $DataArray['L_ERRORCODE' . $n . ''] : '';
472
-			$LShortMessage = isset($DataArray['L_SHORTMESSAGE' . $n . '']) ? $DataArray['L_SHORTMESSAGE' . $n . ''] : '';
473
-			$LLongMessage = isset($DataArray['L_LONGMESSAGE' . $n . '']) ? $DataArray['L_LONGMESSAGE' . $n . ''] : '';
474
-			$LSeverityCode = isset($DataArray['L_SEVERITYCODE' . $n . '']) ? $DataArray['L_SEVERITYCODE' . $n . ''] : '';
470
+		while (isset($DataArray['L_ERRORCODE'.$n.''])) {
471
+			$LErrorCode = isset($DataArray['L_ERRORCODE'.$n.'']) ? $DataArray['L_ERRORCODE'.$n.''] : '';
472
+			$LShortMessage = isset($DataArray['L_SHORTMESSAGE'.$n.'']) ? $DataArray['L_SHORTMESSAGE'.$n.''] : '';
473
+			$LLongMessage = isset($DataArray['L_LONGMESSAGE'.$n.'']) ? $DataArray['L_LONGMESSAGE'.$n.''] : '';
474
+			$LSeverityCode = isset($DataArray['L_SEVERITYCODE'.$n.'']) ? $DataArray['L_SEVERITYCODE'.$n.''] : '';
475 475
 
476 476
 			$CurrentItem = array(
477 477
 					'L_ERRORCODE' => $LErrorCode,
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 				elseif ($CurrentErrorVar == 'L_SEVERITYCODE')
512 512
 					$CurrentVarName = 'Severity Code';
513 513
 
514
-				$error .= '<br />' . $CurrentVarName . ': ' . $CurrentErrorVal;
514
+				$error .= '<br />'.$CurrentVarName.': '.$CurrentErrorVal;
515 515
 			}
516 516
 		}
517 517
 		return $error;
Please login to merge, or discard this patch.
core/libraries/batch/JobHandlerBaseClasses/JobHandlerFile.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 
17 17
 use EventEspressoBatchRequest\Helpers\BatchRequestException;
18 18
 
19
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
20
-	exit( 'No direct script access allowed' );
19
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
20
+	exit('No direct script access allowed');
21 21
 }
22 22
 
23 23
 
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 	 *
40 40
 	 * @param \EEHI_File|null $file_helper
41 41
 	 */
42
-	public function __construct( \EEHI_File $file_helper = null ) {
43
-		if( ! $file_helper ) {
42
+	public function __construct(\EEHI_File $file_helper = null) {
43
+		if ( ! $file_helper) {
44 44
 			$this->_file_helper = new \EEH_File();
45 45
 		}
46 46
 	}
@@ -56,39 +56,39 @@  discard block
 block discarded – undo
56 56
 	 * @return string
57 57
 	 * @throws \EventEspressoBatchRequest\Helpers\BatchRequestException
58 58
 	 */
59
-	public function create_file_from_job_with_name( $job_id, $filename, $filetype = 'application/ms-excel' ) {
59
+	public function create_file_from_job_with_name($job_id, $filename, $filetype = 'application/ms-excel') {
60 60
 		$filepath = '';
61
-		try{
61
+		try {
62 62
 			$success = $this->_file_helper->ensure_folder_exists_and_is_writable(
63
-				EVENT_ESPRESSO_UPLOAD_DIR . JobHandlerFile::temp_folder_name
63
+				EVENT_ESPRESSO_UPLOAD_DIR.JobHandlerFile::temp_folder_name
64 64
 			);
65
-			if ( $success ) {
65
+			if ($success) {
66 66
 				$success = $this->_file_helper->ensure_folder_exists_and_is_writable(
67
-					EVENT_ESPRESSO_UPLOAD_DIR . JobHandlerFile::temp_folder_name . DS . $job_id
67
+					EVENT_ESPRESSO_UPLOAD_DIR.JobHandlerFile::temp_folder_name.DS.$job_id
68 68
 				);
69 69
 			}
70
-			if( $success ) {
71
-				$filepath = EVENT_ESPRESSO_UPLOAD_DIR . JobHandlerFile::temp_folder_name . DS . $job_id . DS. $filename;
72
-				$success = $this->_file_helper->ensure_file_exists_and_is_writable( $filepath );
70
+			if ($success) {
71
+				$filepath = EVENT_ESPRESSO_UPLOAD_DIR.JobHandlerFile::temp_folder_name.DS.$job_id.DS.$filename;
72
+				$success = $this->_file_helper->ensure_file_exists_and_is_writable($filepath);
73 73
 			}
74 74
 			//let's add the .htaccess file so safari will open the file properly
75
-			if( $success ) {
76
-				$extension = \EEH_File::get_file_extension( $filepath );
75
+			if ($success) {
76
+				$extension = \EEH_File::get_file_extension($filepath);
77 77
 				\EEH_File::write_to_file(
78
-					EVENT_ESPRESSO_UPLOAD_DIR . JobHandlerFile::temp_folder_name . DS . $job_id . DS . '.htaccess',
79
-					'AddType ' . $filetype . ' ' . $extension,
78
+					EVENT_ESPRESSO_UPLOAD_DIR.JobHandlerFile::temp_folder_name.DS.$job_id.DS.'.htaccess',
79
+					'AddType '.$filetype.' '.$extension,
80 80
 					'.htaccess'
81 81
 				);
82 82
 			}
83 83
 			//those methods normally fail with an exception, but if not, let's do it
84
-			if( ! $success ) {
85
-				throw new \EE_Error( 'could_not_create_temp_file',
86
-				__( 'An unknown error occurred', 'event_espresso' ));
84
+			if ( ! $success) {
85
+				throw new \EE_Error('could_not_create_temp_file',
86
+				__('An unknown error occurred', 'event_espresso'));
87 87
 			}
88
-		} catch( \EE_Error $e ) {
88
+		} catch (\EE_Error $e) {
89 89
 			throw new BatchRequestException(
90 90
 				sprintf(
91
-					__( 'Could not create temporary file for job %1$s, because: %2$s ', 'event_espresso' ),
91
+					__('Could not create temporary file for job %1$s, because: %2$s ', 'event_espresso'),
92 92
 					$job_id,
93 93
 					$e->getMessage()
94 94
 				),
@@ -104,8 +104,8 @@  discard block
 block discarded – undo
104 104
 	 * @param string $filepath
105 105
 	 * @return string url to file
106 106
 	 */
107
-	public function get_url_to_file( $filepath ) {
108
-		return str_replace( EVENT_ESPRESSO_UPLOAD_DIR, EVENT_ESPRESSO_UPLOAD_URL, $filepath );
107
+	public function get_url_to_file($filepath) {
108
+		return str_replace(EVENT_ESPRESSO_UPLOAD_DIR, EVENT_ESPRESSO_UPLOAD_URL, $filepath);
109 109
 	}
110 110
 }
111 111
 
Please login to merge, or discard this patch.
core/db_classes/EE_CPT_Base.class.php 1 patch
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
@@ -185,37 +185,37 @@  discard block
 block discarded – undo
185 185
 	 *                                 This array is INDEXED by RELATED OBJ NAME (so it corresponds with the obj_names sent);
186 186
 	 * @return void
187 187
 	 */
188
-	public function restore_revision( $revision_id, $related_obj_names = array(), $where_query = array() ) {
188
+	public function restore_revision($revision_id, $related_obj_names = array(), $where_query = array()) {
189 189
 		//get revision object
190
-		$revision_obj = $this->get_model()->get_one_by_ID( $revision_id );
191
-		if ( $revision_obj instanceof EE_CPT_Base ) {
190
+		$revision_obj = $this->get_model()->get_one_by_ID($revision_id);
191
+		if ($revision_obj instanceof EE_CPT_Base) {
192 192
 			//no related_obj_name so we assume we're saving a revision on this object.
193
-			if ( empty( $related_obj_names ) ) {
193
+			if (empty($related_obj_names)) {
194 194
 				$fields = $this->get_model()->get_meta_table_fields();
195
-				foreach ( $fields as $field ) {
196
-					$this->set( $field, $revision_obj->get( $field ) );
195
+				foreach ($fields as $field) {
196
+					$this->set($field, $revision_obj->get($field));
197 197
 				}
198 198
 				$this->save();
199 199
 			}
200
-			$related_obj_names = (array)$related_obj_names;
201
-			foreach ( $related_obj_names as $related_name ) {
200
+			$related_obj_names = (array) $related_obj_names;
201
+			foreach ($related_obj_names as $related_name) {
202 202
 				//related_obj_name so we're saving a revision on an object related to this object
203 203
 				//do we have $where_query params for this related object?  If we do then we include that.
204
-				$cols_n_values = isset( $where_query[ $related_name ] ) ? $where_query[ $related_name ] : array();
205
-				$where_params = !empty( $cols_n_values ) ? array( $cols_n_values ) : array();
206
-				$related_objs = $this->get_many_related( $related_name, $where_params );
207
-				$revision_related_objs = $revision_obj->get_many_related( $related_name, $where_params );
204
+				$cols_n_values = isset($where_query[$related_name]) ? $where_query[$related_name] : array();
205
+				$where_params = ! empty($cols_n_values) ? array($cols_n_values) : array();
206
+				$related_objs = $this->get_many_related($related_name, $where_params);
207
+				$revision_related_objs = $revision_obj->get_many_related($related_name, $where_params);
208 208
 				//load helper
209
-				EE_Registry::instance()->load_helper( 'Array' );
209
+				EE_Registry::instance()->load_helper('Array');
210 210
 				//remove related objs from this object that are not in revision
211 211
 				//array_diff *should* work cause I think objects are indexed by ID?
212
-				$related_to_remove = EEH_Array::object_array_diff( $related_objs, $revision_related_objs );
213
-				foreach ( $related_to_remove as $rr ) {
214
-					$this->_remove_relation_to( $rr, $related_name, $cols_n_values );
212
+				$related_to_remove = EEH_Array::object_array_diff($related_objs, $revision_related_objs);
213
+				foreach ($related_to_remove as $rr) {
214
+					$this->_remove_relation_to($rr, $related_name, $cols_n_values);
215 215
 				}
216 216
 				//add all related objs attached to revision to this object
217
-				foreach ( $revision_related_objs as $r_obj ) {
218
-					$this->_add_relation_to( $r_obj, $related_name, $cols_n_values );
217
+				foreach ($revision_related_objs as $r_obj) {
218
+					$this->_add_relation_to($r_obj, $related_name, $cols_n_values);
219 219
 				}
220 220
 			}
221 221
 		}
@@ -231,8 +231,8 @@  discard block
 block discarded – undo
231 231
 	 * <li>If $single is set to false, or left blank, the function returns an array containing all values of the specified key.</li>
232 232
 	 * <li>If $single is set to true, the function returns the first value of the specified key (not in an array</li></ul>
233 233
 	 */
234
-	public function get_post_meta( $meta_key = NULL, $single = FALSE ) {
235
-		return get_post_meta( $this->ID(), $meta_key, $single );
234
+	public function get_post_meta($meta_key = NULL, $single = FALSE) {
235
+		return get_post_meta($this->ID(), $meta_key, $single);
236 236
 	}
237 237
 
238 238
 
@@ -244,11 +244,11 @@  discard block
 block discarded – undo
244 244
 	 * @param mixed  $prev_value
245 245
 	 * @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.
246 246
 	 */
247
-	public function update_post_meta( $meta_key, $meta_value, $prev_value = NULL ) {
248
-		if ( ! $this->ID() ) {
247
+	public function update_post_meta($meta_key, $meta_value, $prev_value = NULL) {
248
+		if ( ! $this->ID()) {
249 249
 			$this->save();
250 250
 		}
251
-		return update_post_meta( $this->ID(), $meta_key, $meta_value, $prev_value );
251
+		return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value);
252 252
 	}
253 253
 
254 254
 
@@ -260,11 +260,11 @@  discard block
 block discarded – undo
260 260
 	 * @param bool  $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not
261 261
 	 * @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.
262 262
 	 */
263
-	public function add_post_meta( $meta_key, $meta_value, $unique = FALSE ) {
264
-		if ( $this->ID() ) {
263
+	public function add_post_meta($meta_key, $meta_value, $unique = FALSE) {
264
+		if ($this->ID()) {
265 265
 			$this->save();
266 266
 		}
267
-		return add_post_meta( $this->ID(), $meta_key, $meta_value, $unique );
267
+		return add_post_meta($this->ID(), $meta_key, $meta_value, $unique);
268 268
 	}
269 269
 
270 270
 
@@ -276,13 +276,13 @@  discard block
 block discarded – undo
276 276
 	 * @param mixed $meta_value
277 277
 	 * @return boolean False for failure. True for success.
278 278
 	 */
279
-	public function delete_post_meta( $meta_key, $meta_value = '' ) {
280
-		if ( ! $this->ID() ) {
279
+	public function delete_post_meta($meta_key, $meta_value = '') {
280
+		if ( ! $this->ID()) {
281 281
 			//there are obviously no postmetas for this if it's not saved
282 282
 			//so let's just report this as a success
283 283
 			return true;
284 284
 		}
285
-		return delete_post_meta( $this->ID(), $meta_key, $meta_value );
285
+		return delete_post_meta($this->ID(), $meta_key, $meta_value);
286 286
 	}
287 287
 
288 288
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 	 * @return string
293 293
 	 */
294 294
 	public function get_permalink() {
295
-		return get_permalink( $this->ID() );
295
+		return get_permalink($this->ID());
296 296
 	}
297 297
 
298 298
 
@@ -302,8 +302,8 @@  discard block
 block discarded – undo
302 302
 	 * @param array $query_params
303 303
 	 * @return EE_Term_Taxonomy
304 304
 	 */
305
-	public function term_taxonomies( $query_params = array() ) {
306
-		return $this->get_many_related( 'Term_Taxonomy', $query_params );
305
+	public function term_taxonomies($query_params = array()) {
306
+		return $this->get_many_related('Term_Taxonomy', $query_params);
307 307
 	}
308 308
 
309 309
 
Please login to merge, or discard this patch.
core/db_models/EEM_Registration.model.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@
 block discarded – undo
257 257
 	* 		@param	int	$TXN_ID
258 258
 	* 		@param    int		$ATT_ID
259 259
 	* 		@param    int		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
260
-	*		@return 		mixed		array on success, FALSE on fail
260
+	*		@return 		EE_Base_Class|null		array on success, FALSE on fail
261 261
 	*/
262 262
 	public function get_registration_for_transaction_attendee( $TXN_ID = 0, $ATT_ID = 0, $att_nmbr = 0 ) {
263 263
 		return $this->get_one(array(
Please login to merge, or discard this patch.
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' );
3
-require_once ( EE_CLASSES . 'EE_Registration.class.php' );
2
+require_once (EE_MODELS.'EEM_Soft_Delete_Base.model.php');
3
+require_once (EE_CLASSES.'EE_Registration.class.php');
4 4
 /**
5 5
  *
6 6
  * Registration Model
@@ -92,31 +92,31 @@  discard block
 block discarded – undo
92 92
 	 *    Note this just sends the timezone info to the date time model field objects.  Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option)
93 93
 	 * @return \EEM_Registration
94 94
 	 */
95
-	protected function __construct( $timezone ) {
96
-		$this->singular_item = __('Registration','event_espresso');
97
-		$this->plural_item = __('Registrations','event_espresso');
95
+	protected function __construct($timezone) {
96
+		$this->singular_item = __('Registration', 'event_espresso');
97
+		$this->plural_item = __('Registrations', 'event_espresso');
98 98
 
99 99
 		$this->_tables = array(
100
-			'Registration'=>new EE_Primary_Table('esp_registration','REG_ID')
100
+			'Registration'=>new EE_Primary_Table('esp_registration', 'REG_ID')
101 101
 		);
102 102
 		$this->_fields = array(
103 103
 			'Registration'=>array(
104
-				'REG_ID'=>new EE_Primary_Key_Int_Field('REG_ID', __('Registration ID','event_espresso')),
105
-				'EVT_ID'=>new EE_Foreign_Key_Int_Field('EVT_ID', __('Event ID','event_espresso'), false, 0, 'Event'),
106
-				'ATT_ID'=>new EE_Foreign_Key_Int_Field('ATT_ID', __('Attendee ID','event_espresso'), false, 0, 'Attendee'),
107
-				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID','event_espresso'), false, 0, 'Transaction'),
108
-				'TKT_ID'=>new EE_Foreign_Key_Int_Field('TKT_ID', __('Ticket ID','event_espresso'), false, 0, 'Ticket'),
109
-				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID','event_espresso'), false, EEM_Registration::status_id_incomplete, 'Status'),
110
-				'REG_date'=>new EE_Datetime_Field('REG_date', __('Time registration occurred','event_espresso'), false, time(), $timezone ),
111
-				'REG_final_price'=>new EE_Money_Field('REG_final_price', __('Registration\'s share of the transaction total','event_espresso'), false, 0),
112
-				'REG_paid'=>new EE_Money_Field('REG_paid', __('Amount paid to date towards registration','event_espresso'), false, 0),
113
-				'REG_session'=>new EE_Plain_Text_Field('REG_session', __('Session ID of registration','event_espresso'), false, ''),
114
-				'REG_code'=>new EE_Plain_Text_Field('REG_code', __('Unique Code for this registration','event_espresso'), false, ''),
115
-				'REG_url_link'=>new EE_Plain_Text_Field('REG_url_link', __('String to be used in URL for identifying registration','event_espresso'), false, ''),
116
-				'REG_count'=>new EE_Integer_Field('REG_count', __('Count of this registration in the group registration ','event_espresso'), true, 1),
117
-				'REG_group_size'=>new EE_Integer_Field('REG_group_size', __('Number of registrations on this group','event_espresso'), false, 1),
118
-				'REG_att_is_going'=>new EE_Boolean_Field('REG_att_is_going', __('Flag indicating the registrant plans on attending','event_espresso'), false, false),
119
-				'REG_deleted' => new EE_Trashed_Flag_Field('REG_deleted', __('Flag indicating if registration has been archived or not.', 'event_espresso'), false, false )
104
+				'REG_ID'=>new EE_Primary_Key_Int_Field('REG_ID', __('Registration ID', 'event_espresso')),
105
+				'EVT_ID'=>new EE_Foreign_Key_Int_Field('EVT_ID', __('Event ID', 'event_espresso'), false, 0, 'Event'),
106
+				'ATT_ID'=>new EE_Foreign_Key_Int_Field('ATT_ID', __('Attendee ID', 'event_espresso'), false, 0, 'Attendee'),
107
+				'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID', 'event_espresso'), false, 0, 'Transaction'),
108
+				'TKT_ID'=>new EE_Foreign_Key_Int_Field('TKT_ID', __('Ticket ID', 'event_espresso'), false, 0, 'Ticket'),
109
+				'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID', 'event_espresso'), false, EEM_Registration::status_id_incomplete, 'Status'),
110
+				'REG_date'=>new EE_Datetime_Field('REG_date', __('Time registration occurred', 'event_espresso'), false, time(), $timezone),
111
+				'REG_final_price'=>new EE_Money_Field('REG_final_price', __('Registration\'s share of the transaction total', 'event_espresso'), false, 0),
112
+				'REG_paid'=>new EE_Money_Field('REG_paid', __('Amount paid to date towards registration', 'event_espresso'), false, 0),
113
+				'REG_session'=>new EE_Plain_Text_Field('REG_session', __('Session ID of registration', 'event_espresso'), false, ''),
114
+				'REG_code'=>new EE_Plain_Text_Field('REG_code', __('Unique Code for this registration', 'event_espresso'), false, ''),
115
+				'REG_url_link'=>new EE_Plain_Text_Field('REG_url_link', __('String to be used in URL for identifying registration', 'event_espresso'), false, ''),
116
+				'REG_count'=>new EE_Integer_Field('REG_count', __('Count of this registration in the group registration ', 'event_espresso'), true, 1),
117
+				'REG_group_size'=>new EE_Integer_Field('REG_group_size', __('Number of registrations on this group', 'event_espresso'), false, 1),
118
+				'REG_att_is_going'=>new EE_Boolean_Field('REG_att_is_going', __('Flag indicating the registrant plans on attending', 'event_espresso'), false, false),
119
+				'REG_deleted' => new EE_Trashed_Flag_Field('REG_deleted', __('Flag indicating if registration has been archived or not.', 'event_espresso'), false, false)
120 120
 			)
121 121
 		);
122 122
 		$this->_model_relations = array(
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
 			'Answer'=>new EE_Has_Many_Relation(),
129 129
 			'Checkin'=>new EE_Has_Many_Relation(),
130 130
 			'Registration_Payment' => new EE_Has_Many_Relation(),
131
-			'Payment'=>new EE_HABTM_Relation( 'Registration_Payment' ),
131
+			'Payment'=>new EE_HABTM_Relation('Registration_Payment'),
132 132
 		);
133 133
 		$this->_model_chain_to_wp_user = 'Event';
134 134
 
135
-		parent::__construct( $timezone );
135
+		parent::__construct($timezone);
136 136
 	}
137 137
 
138 138
 
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
 	 *		@param bool  $translated If true will return the values as singular localized strings
166 166
 	 *		@return array
167 167
 	 */
168
-	public static function reg_status_array( $exclude = array(), $translated = FALSE ) {
169
-		EEM_Registration::instance()->_get_registration_status_array( $exclude );
170
-		return $translated ? EEM_Status::instance()->localized_status( self::$_reg_status, FALSE, 'sentence') : self::$_reg_status;
168
+	public static function reg_status_array($exclude = array(), $translated = FALSE) {
169
+		EEM_Registration::instance()->_get_registration_status_array($exclude);
170
+		return $translated ? EEM_Status::instance()->localized_status(self::$_reg_status, FALSE, 'sentence') : self::$_reg_status;
171 171
 	}
172 172
 
173 173
 
@@ -178,19 +178,19 @@  discard block
 block discarded – undo
178 178
 	 * @param array $exclude
179 179
 	 * @return array
180 180
 	 */
181
-	private function _get_registration_status_array( $exclude = array() ) {
181
+	private function _get_registration_status_array($exclude = array()) {
182 182
 		//in the very rare circumstance that we are deleting a model's table's data
183 183
 		//and the table hasn't actually been created, this could have an error
184 184
 		/** @type WPDB $wpdb */
185 185
 		global $wpdb;
186
-		EE_Registry::instance()->load_helper( 'Activation' );
187
-		if( EEH_Activation::table_exists( $wpdb->prefix . 'esp_status' ) ){
188
-			$SQL = 'SELECT STS_ID, STS_code FROM '. $wpdb->prefix . 'esp_status WHERE STS_type = "registration"';
189
-			$results = $wpdb->get_results( $SQL );
186
+		EE_Registry::instance()->load_helper('Activation');
187
+		if (EEH_Activation::table_exists($wpdb->prefix.'esp_status')) {
188
+			$SQL = 'SELECT STS_ID, STS_code FROM '.$wpdb->prefix.'esp_status WHERE STS_type = "registration"';
189
+			$results = $wpdb->get_results($SQL);
190 190
 			self::$_reg_status = array();
191
-			foreach ( $results as $status ) {
192
-				if ( ! in_array( $status->STS_ID, $exclude )) {
193
-					self::$_reg_status[ $status->STS_ID ] = $status->STS_code;
191
+			foreach ($results as $status) {
192
+				if ( ! in_array($status->STS_ID, $exclude)) {
193
+					self::$_reg_status[$status->STS_ID] = $status->STS_code;
194 194
 				}
195 195
 			}
196 196
 		}
@@ -205,15 +205,15 @@  discard block
 block discarded – undo
205 205
 	 * @param  array  $where_params Array of query_params as described in the comments for EEM_Base::get_all()
206 206
 	 * @return wpdb results array
207 207
 	 */
208
-	public function get_reg_months_and_years( $where_params ) {
208
+	public function get_reg_months_and_years($where_params) {
209 209
 		$query_params[0] = $where_params;
210 210
 		$query_params['group_by'] = array('reg_year', 'reg_month');
211
-		$query_params['order_by'] = array( 'REG_date' => 'DESC' );
211
+		$query_params['order_by'] = array('REG_date' => 'DESC');
212 212
 		$columns_to_select = array(
213 213
 			'reg_year' => array('YEAR(REG_date)', '%s'),
214 214
 			'reg_month' => array('MONTHNAME(REG_date)', '%s')
215 215
 			);
216
-		return $this->_get_all_wpdb_results( $query_params, OBJECT, $columns_to_select );
216
+		return $this->_get_all_wpdb_results($query_params, OBJECT, $columns_to_select);
217 217
 	}
218 218
 
219 219
 
@@ -225,11 +225,11 @@  discard block
 block discarded – undo
225 225
 	* 		@param		int		$ATT_ID
226 226
 	*		@return 	EE_Registration[]
227 227
 	*/
228
-	public function get_all_registrations_for_attendee( $ATT_ID = 0 ) {
229
-		if ( ! $ATT_ID ) {
228
+	public function get_all_registrations_for_attendee($ATT_ID = 0) {
229
+		if ( ! $ATT_ID) {
230 230
 			return FALSE;
231 231
 		}
232
-		return $this->get_all( array( array( 'ATT_ID' => $ATT_ID )));
232
+		return $this->get_all(array(array('ATT_ID' => $ATT_ID)));
233 233
 	}
234 234
 
235 235
 
@@ -240,8 +240,8 @@  discard block
 block discarded – undo
240 240
 	 * @param string $REG_url_link
241 241
 	 * @return EE_Registration
242 242
 	 */
243
-	public function get_registration_for_reg_url_link($REG_url_link){
244
-		if(!$REG_url_link){
243
+	public function get_registration_for_reg_url_link($REG_url_link) {
244
+		if ( ! $REG_url_link) {
245 245
 			return false;
246 246
 		}
247 247
 		return $this->get_one(array(array('REG_url_link'=>$REG_url_link)));
@@ -259,13 +259,13 @@  discard block
 block discarded – undo
259 259
 	* 		@param    int		$att_nmbr 	in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required
260 260
 	*		@return 		mixed		array on success, FALSE on fail
261 261
 	*/
262
-	public function get_registration_for_transaction_attendee( $TXN_ID = 0, $ATT_ID = 0, $att_nmbr = 0 ) {
262
+	public function get_registration_for_transaction_attendee($TXN_ID = 0, $ATT_ID = 0, $att_nmbr = 0) {
263 263
 		return $this->get_one(array(
264 264
 			array(
265 265
 				'TXN_ID'=>$TXN_ID,
266 266
 				'ATT_ID'=>$ATT_ID
267 267
 			),
268
-			'limit'=>array( min( ( $att_nmbr-1 ), 0 ), 1 )
268
+			'limit'=>array(min(($att_nmbr - 1), 0), 1)
269 269
 		));
270 270
 	}
271 271
 
@@ -277,17 +277,17 @@  discard block
 block discarded – undo
277 277
 	 *		@param $period string which can be passed to php's strtotime function (eg "-1 month")
278 278
 	 *		@return stdClass[] with properties regDate and total
279 279
 	*/
280
-	public function get_registrations_per_day_report( $period = '-1 month' ) {
280
+	public function get_registrations_per_day_report($period = '-1 month') {
281 281
 
282
-		$sql_date = $this->convert_datetime_for_query( 'REG_date', date("Y-m-d H:i:s", strtotime($period) ), 'Y-m-d H:i:s', 'UTC' );
283
-		$where = array( 'REG_date' => array( '>=', $sql_date ), 'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete ) );
282
+		$sql_date = $this->convert_datetime_for_query('REG_date', date("Y-m-d H:i:s", strtotime($period)), 'Y-m-d H:i:s', 'UTC');
283
+		$where = array('REG_date' => array('>=', $sql_date), 'STS_ID' => array('!=', EEM_Registration::status_id_incomplete));
284 284
 
285
-		if ( ! EE_Registry::instance()->CAP->current_user_can( 'ee_read_others_registrations', 'reg_per_day_report' ) ) {
285
+		if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_registrations', 'reg_per_day_report')) {
286 286
 			$where['Event.EVT_wp_user'] = get_current_user_id();
287 287
 		}
288 288
 
289
-		EE_Registry::instance()->load_helper( 'DTT_Helper' );
290
-		$query_interval = EEH_DTT_Helper::get_sql_query_interval_for_offset( $this->get_timezone(), 'REG_date' );
289
+		EE_Registry::instance()->load_helper('DTT_Helper');
290
+		$query_interval = EEH_DTT_Helper::get_sql_query_interval_for_offset($this->get_timezone(), 'REG_date');
291 291
 
292 292
 		$results = $this->_get_all_wpdb_results(
293 293
 				array(
@@ -297,8 +297,8 @@  discard block
 block discarded – undo
297 297
 				),
298 298
 				OBJECT,
299 299
 				array(
300
-					'regDate'=>array( 'DATE(' . $query_interval . ')','%s'),
301
-					'total'=>array('count(REG_ID)','%d')
300
+					'regDate'=>array('DATE('.$query_interval.')', '%s'),
301
+					'total'=>array('count(REG_ID)', '%d')
302 302
 				));
303 303
 		return $results;
304 304
 	}
@@ -313,23 +313,23 @@  discard block
 block discarded – undo
313 313
 	 * @param $period string which can be passed to php's strtotime function (eg "-1 month")
314 314
 	 *		@return stdClass[] each with properties event_name, reg_limit, and total
315 315
 	*/
316
-	public function get_registrations_per_event_report( $period = '-1 month' ) {
316
+	public function get_registrations_per_event_report($period = '-1 month') {
317 317
 
318
-		$date_sql = $this->convert_datetime_for_query( 'REG_date', date( "Y-m-d H:i:s", strtotime( $period )), 'Y-m-d H:i:s', 'UTC' );
319
-		$where = array( 'REG_date' => array( '>=', $date_sql ), 'STS_ID' => array( '!=', EEM_Registration::status_id_incomplete ) );
318
+		$date_sql = $this->convert_datetime_for_query('REG_date', date("Y-m-d H:i:s", strtotime($period)), 'Y-m-d H:i:s', 'UTC');
319
+		$where = array('REG_date' => array('>=', $date_sql), 'STS_ID' => array('!=', EEM_Registration::status_id_incomplete));
320 320
 
321
-		if ( ! EE_Registry::instance()->CAP->current_user_can( 'ee_read_others_registrations', 'reg_per_event_report' ) ) {
321
+		if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_registrations', 'reg_per_event_report')) {
322 322
 			$where['Event.EVT_wp_user'] = get_current_user_id();
323 323
 		}
324 324
 		$results = $this->_get_all_wpdb_results(array(
325 325
 			$where,
326 326
 			'group_by'=>'Event.EVT_name',
327 327
 			'order_by'=>'Event.EVT_name',
328
-			'limit'=>array(0,24)),
328
+			'limit'=>array(0, 24)),
329 329
 			OBJECT,
330 330
 			array(
331
-				'event_name'=>array('Event_CPT.post_title','%s'),
332
-				'total'=>array('COUNT(REG_ID)','%s')
331
+				'event_name'=>array('Event_CPT.post_title', '%s'),
332
+				'total'=>array('COUNT(REG_ID)', '%s')
333 333
 			)
334 334
 		);
335 335
 
@@ -343,11 +343,11 @@  discard block
 block discarded – undo
343 343
 	 * @param int $TXN_ID
344 344
 	 * @return EE_Registration
345 345
 	 */
346
-	public function get_primary_registration_for_transaction_ID( $TXN_ID = 0){
347
-		if( ! $TXN_ID ){
346
+	public function get_primary_registration_for_transaction_ID($TXN_ID = 0) {
347
+		if ( ! $TXN_ID) {
348 348
 			return false;
349 349
 		}
350
-		return $this->get_one(array(array('TXN_ID'=>$TXN_ID,'REG_count'=>  EEM_Registration::PRIMARY_REGISTRANT_COUNT)));
350
+		return $this->get_one(array(array('TXN_ID'=>$TXN_ID, 'REG_count'=>  EEM_Registration::PRIMARY_REGISTRANT_COUNT)));
351 351
 	}
352 352
 
353 353
 
@@ -359,11 +359,11 @@  discard block
 block discarded – undo
359 359
 	 *		@param boolean $for_incomplete_payments
360 360
 	 *		@return int
361 361
 	 */
362
-	public function get_event_registration_count ( $EVT_ID, $for_incomplete_payments = FALSE ) {
362
+	public function get_event_registration_count($EVT_ID, $for_incomplete_payments = FALSE) {
363 363
 		// we only count approved registrations towards registration limits
364
-		$query_params = array( array( 'EVT_ID' => $EVT_ID, 'STS_ID' => self::status_id_approved ) );
365
-		if( $for_incomplete_payments ){
366
-			$query_params[0]['Transaction.STS_ID']=array('!=',  EEM_Transaction::complete_status_code);
364
+		$query_params = array(array('EVT_ID' => $EVT_ID, 'STS_ID' => self::status_id_approved));
365
+		if ($for_incomplete_payments) {
366
+			$query_params[0]['Transaction.STS_ID'] = array('!=', EEM_Transaction::complete_status_code);
367 367
 		}
368 368
 
369 369
 		return $this->count($query_params);
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
 		/** @type WPDB $wpdb */
380 380
 		global $wpdb;
381 381
 		return $wpdb->query(
382
-				'DELETE r FROM ' . $this->table() . ' r LEFT JOIN ' . EEM_Transaction::instance()->table() . ' t ON r.TXN_ID = t.TXN_ID WHERE t.TXN_ID IS NULL' );
382
+				'DELETE r FROM '.$this->table().' r LEFT JOIN '.EEM_Transaction::instance()->table().' t ON r.TXN_ID = t.TXN_ID WHERE t.TXN_ID IS NULL' );
383 383
 	}
384 384
 
385 385
 
Please login to merge, or discard this patch.
core/db_models/EEM_Soft_Delete_Base.model.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	 * Sum all the deleted items.
147 147
 	 * @param array $query_params like EEM_Base::get_all
148 148
 	 * @param string $field_to_sum
149
-	 * @return int
149
+	 * @return double
150 150
 	 */
151 151
 	public function sum_deleted($query_params = null, $field_to_sum = null){
152 152
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 	 * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
196 196
 	 * that blocks it (ie, there' sno other data that depends on this data); if false, deletes regardless of other objects
197 197
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
198
-	 * @return boolean success
198
+	 * @return integer success
199 199
 	 */
200 200
 	public function delete_permanently($query_params = array(), $allow_blocking = true){
201 201
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 	/**
279 279
 	 * Updates all the items of this model which match the $query params, regardless of whether
280 280
 	 * they've been soft-deleted or not
281
-	 * @param array $field_n_values like EEM_Base::update's $fields_n_value
281
+	 * @param array $fields_n_values like EEM_Base::update's $fields_n_value
282 282
 	 * @param array $query_params like EEM_base::get_all's $query_params
283 283
 	 * @param boolean $keep_model_objs_in_sync if TRUE, makes sure we ALSO update model objects
284 284
 	 * in this model's entity map according to $fields_n_values that match $query_params. This
Please login to merge, or discard this patch.
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
2
-require_once( EE_MODELS . 'EEM_Base.model.php');
2
+require_once(EE_MODELS.'EEM_Base.model.php');
3 3
 /**
4 4
  * EEM_Soft_Delete_Base
5 5
  *
@@ -25,13 +25,13 @@  discard block
 block discarded – undo
25 25
  * @subpackage		includes/models/
26 26
  * @author				Michael Nelson
27 27
  */
28
-abstract class EEM_Soft_Delete_Base extends EEM_Base{
28
+abstract class EEM_Soft_Delete_Base extends EEM_Base {
29 29
 
30 30
 	/**
31 31
 	 * @param null $timezone
32 32
 	 */
33 33
 	protected function __construct($timezone = NULL) {
34
-		if( ! $this->_default_where_conditions_strategy instanceof EE_Default_Where_Conditions ){
34
+		if ( ! $this->_default_where_conditions_strategy instanceof EE_Default_Where_Conditions) {
35 35
 			$this->_default_where_conditions_strategy = new EE_Soft_Delete_Where_Conditions();
36 36
 		}
37 37
 		parent::__construct($timezone);
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
 	 * @return string
43 43
 	 * @throws EE_Error
44 44
 	 */
45
-	public function deleted_field_name(){
45
+	public function deleted_field_name() {
46 46
 		$field = $this->get_a_field_of_type('EE_Trashed_Flag_Field');
47
-		if($field){
47
+		if ($field) {
48 48
 			return $field->get_name();
49
-		}else{
50
-			throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?','event_espresso'),get_class($this),get_class($this)));
49
+		} else {
50
+			throw new EE_Error(sprintf(__('We are trying to find the deleted flag field on %s, but none was found. Are you sure there is a field of type EE_Trashed_Flag_Field in %s constructor?', 'event_espresso'), get_class($this), get_class($this)));
51 51
 		}
52 52
 	}
53 53
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 * @param array $query_params like EEM_Base::get_all's $query_params
58 58
 	 * @return EE_Soft_Delete_Base_Class
59 59
 	 */
60
-	public function get_one_deleted($query_params = array()){
60
+	public function get_one_deleted($query_params = array()) {
61 61
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
62 62
 		return parent::get_one($query_params);
63 63
 	}
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 	 * @param array $query_params like EEM_base::get_all's $query_params
68 68
 	 * @return EE_Soft_Delete_Base_Class
69 69
 	 */
70
-	public function get_one_deleted_or_undeleted($query_params = array()){
70
+	public function get_one_deleted_or_undeleted($query_params = array()) {
71 71
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
72 72
 		return parent::get_one($query_params);
73 73
 	}
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
 	 * @param int|string $id
78 78
 	 * @return EE_Soft_Delete_Base_Class
79 79
 	 */
80
-	public function get_one_by_ID_but_ignore_deleted($id){
80
+	public function get_one_by_ID_but_ignore_deleted($id) {
81 81
 		return $this->get_one( 
82 82
 			$this->alter_query_params_to_restrict_by_ID( 
83 83
 				$id,
84
-				array( 'default_where_conditions' => 'default' ) 
84
+				array('default_where_conditions' => 'default') 
85 85
 			) 
86 86
 		);
87 87
 	}
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 * @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;
94 94
 	 * @return int
95 95
 	 */
96
-	public function count_deleted($query_params = null, $field_to_count = null, $distinct = FALSE){
96
+	public function count_deleted($query_params = null, $field_to_count = null, $distinct = FALSE) {
97 97
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
98 98
 		return parent::count($query_params, $field_to_count, $distinct);
99 99
 	}
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 	 * @param array $query_params like EEM_Base::get_all's $query_params
104 104
 	 * @return array like EEM_Base::get_all's $query_params
105 105
 	 */
106
-	protected function _alter_query_params_so_only_trashed_items_included($query_params){
107
-		$deletedFlagFieldName=$this->deleted_field_name();
108
-		$query_params[0][$deletedFlagFieldName]=true;
106
+	protected function _alter_query_params_so_only_trashed_items_included($query_params) {
107
+		$deletedFlagFieldName = $this->deleted_field_name();
108
+		$query_params[0][$deletedFlagFieldName] = true;
109 109
 		return $query_params;
110 110
 	}
111 111
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	 * @param array $query_params
115 115
 	 * @return array
116 116
 	 */
117
-	public function alter_query_params_so_deleted_and_undeleted_items_included( $query_params = array() ){
117
+	public function alter_query_params_so_deleted_and_undeleted_items_included($query_params = array()) {
118 118
 		return $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
119 119
 	}
120 120
 
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
 	 * @param array $query_params
124 124
 	 * @return array
125 125
 	 */
126
-	protected function _alter_query_params_so_deleted_and_undeleted_items_included($query_params){
127
-		if( ! isset( $query_params[ 'default_where_conditions' ] ) ) {
126
+	protected function _alter_query_params_so_deleted_and_undeleted_items_included($query_params) {
127
+		if ( ! isset($query_params['default_where_conditions'])) {
128 128
 			$query_params['default_where_conditions'] = 'minimum';
129 129
 		}
130 130
 		return $query_params;
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
 	 * @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;
138 138
 	 * @return int
139 139
 	 */
140
-	public function count_deleted_and_undeleted($query_params = null, $field_to_count = null, $distinct = FALSE){
140
+	public function count_deleted_and_undeleted($query_params = null, $field_to_count = null, $distinct = FALSE) {
141 141
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
142
-		return parent::count($query_params,$field_to_count, $distinct);
142
+		return parent::count($query_params, $field_to_count, $distinct);
143 143
 	}
144 144
 
145 145
 	/**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 * @param string $field_to_sum
149 149
 	 * @return int
150 150
 	 */
151
-	public function sum_deleted($query_params = null, $field_to_sum = null){
151
+	public function sum_deleted($query_params = null, $field_to_sum = null) {
152 152
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
153 153
 		return parent::sum($query_params, $field_to_sum);
154 154
 	}
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	 * @param string $field_to_sum
160 160
 	 * @reutrn int
161 161
 	 */
162
-	public function sum_deleted_and_undeleted($query_params = null, $field_to_sum = null){
162
+	public function sum_deleted_and_undeleted($query_params = null, $field_to_sum = null) {
163 163
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
164 164
 		parent::sum($query_params, $field_to_sum);
165 165
 	}
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @param array $query_params like EEM_Base::get_all
170 170
 	 * @return EE_Soft_Delete_Base_Class[]
171 171
 	 */
172
-	public function get_all_deleted_and_undeleted($query_params = array()){
172
+	public function get_all_deleted_and_undeleted($query_params = array()) {
173 173
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
174 174
 		return parent::get_all($query_params);
175 175
 	}
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	 * @param array $query_params like EEM_Base::get_all
180 180
 	 * @return EE_Soft_Delete_Base_Class[]
181 181
 	 */
182
-	public function get_all_deleted($query_params = array()){
182
+	public function get_all_deleted($query_params = array()) {
183 183
 		$query_params = $this->_alter_query_params_so_only_trashed_items_included($query_params);
184 184
 		return parent::get_all($query_params);
185 185
 	}
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
198 198
 	 * @return boolean success
199 199
 	 */
200
-	public function delete_permanently($query_params = array(), $allow_blocking = true){
200
+	public function delete_permanently($query_params = array(), $allow_blocking = true) {
201 201
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
202 202
 		return parent::delete_permanently($query_params, $allow_blocking);
203 203
 	}
@@ -208,8 +208,8 @@  discard block
 block discarded – undo
208 208
 	 * @param mixed $ID int if primary key is an int, string otherwise
209 209
 	 * @return boolean success
210 210
 	 */
211
-	public function restore_by_ID($ID=FALSE){
212
-		return $this->delete_or_restore_by_ID(false,$ID);
211
+	public function restore_by_ID($ID = FALSE) {
212
+		return $this->delete_or_restore_by_ID(false, $ID);
213 213
 	}
214 214
 	/**
215 215
 	 * For deleting or restoring a particular item. Note that this model is a SOFT-DELETABLE model! However,
@@ -218,14 +218,14 @@  discard block
 block discarded – undo
218 218
 	 * @param mixed $ID int if primary key is an int, string otherwise
219 219
 	 * @return boolean
220 220
 	 */
221
-	public function delete_or_restore_by_ID($delete=true,$ID=FALSE){
222
-		if ( ! $ID ) {
221
+	public function delete_or_restore_by_ID($delete = true, $ID = FALSE) {
222
+		if ( ! $ID) {
223 223
 			return FALSE;
224 224
 		}
225 225
 		if ( 
226 226
 			$this->delete_or_restore(
227 227
 				$delete, 
228
-				$this->alter_query_params_to_restrict_by_ID( $ID ) 
228
+				$this->alter_query_params_to_restrict_by_ID($ID) 
229 229
 			)
230 230
 		) {
231 231
 			return TRUE;
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 	 * @param bool  $block_deletes
246 246
 	 * @return boolean
247 247
 	 */
248
-	public function delete($query_params = array(), $block_deletes = false){
248
+	public function delete($query_params = array(), $block_deletes = false) {
249 249
 		//no matter what, we WON'T block soft deletes.
250 250
 		return $this->delete_or_restore(true, $query_params);
251 251
 	}
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	 * @param array $query_params like EEM_Base::get_all
257 257
 	 * @return boolean
258 258
 	 */
259
-	public function restore($query_params = array()){
259
+	public function restore($query_params = array()) {
260 260
 		return $this->delete_or_restore(false, $query_params);
261 261
 	}
262 262
 	/**
@@ -265,10 +265,10 @@  discard block
 block discarded – undo
265 265
 	 * @param array $query_params like EEM_Base::get_all
266 266
 	 * @return boolean
267 267
 	 */
268
-	function delete_or_restore($delete=true,$query_params = array()){
269
-		$deletedFlagFieldName=$this->deleted_field_name();
268
+	function delete_or_restore($delete = true, $query_params = array()) {
269
+		$deletedFlagFieldName = $this->deleted_field_name();
270 270
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
271
-		if ( $this->update (array($deletedFlagFieldName=>$delete), $query_params )) {
271
+		if ($this->update(array($deletedFlagFieldName=>$delete), $query_params)) {
272 272
 			return TRUE;
273 273
 		} else {
274 274
 			return FALSE;
@@ -286,8 +286,8 @@  discard block
 block discarded – undo
286 286
 	 * be aware that model objects being used could get out-of-sync with the database
287 287
 	 * @return int number of items updated
288 288
 	 */
289
-	public function update_deleted_and_undeleted($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE ){
289
+	public function update_deleted_and_undeleted($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE) {
290 290
 		$query_params = $this->_alter_query_params_so_deleted_and_undeleted_items_included($query_params);
291
-		return $this->update($fields_n_values, $query_params, $keep_model_objs_in_sync );
291
+		return $this->update($fields_n_values, $query_params, $keep_model_objs_in_sync);
292 292
 	}
293 293
 }
Please login to merge, or discard this patch.
core/db_models/strategies/EE_CPT_Minimum_Where_Conditions.strategy.php 3 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,10 @@  discard block
 block discarded – undo
7 7
 
8 8
 	protected $_post_type;
9 9
 	protected $_meta_field;
10
+
11
+	/**
12
+	 * @param string $post_type
13
+	 */
10 14
 	function __construct($post_type, $meta_field_to_chk = ''){
11 15
 		$this->_post_type = $post_type;
12 16
 		$this->_meta_field = $meta_field_to_chk;
@@ -27,7 +31,6 @@  discard block
 block discarded – undo
27 31
 	}
28 32
 	/**
29 33
 	 * Gets the where default where conditions for a custom post type model
30
-	 * @param string $model_relation_path. Eg, from Event to Payment, this should be "Registration.Transaction.Payment"
31 34
 	 * @return array like EEM_Base::get_all's $query_params's index [0] (where conditions)
32 35
 	 */
33 36
 	protected function _get_default_where_conditions() {
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 /**
6 6
  *
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
  * @since		 	   4.8.29.rc.010
16 16
  *
17 17
  */
18
-class EE_CPT_Minimum_Where_Conditions extends EE_Default_Where_Conditions{
18
+class EE_CPT_Minimum_Where_Conditions extends EE_Default_Where_Conditions {
19 19
 
20 20
 	protected $_post_type;
21 21
 	protected $_meta_field;
22
-	function __construct($post_type, $meta_field_to_chk = ''){
22
+	function __construct($post_type, $meta_field_to_chk = '') {
23 23
 		$this->_post_type = $post_type;
24 24
 		$this->_meta_field = $meta_field_to_chk;
25 25
 	}
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
 	 * @param string $column column name
30 30
 	 * @return EE_Model_Field_Base
31 31
 	 */
32
-	protected function _get_field_on_column($column){
32
+	protected function _get_field_on_column($column) {
33 33
 		$all_fields = $this->_model->field_settings(true);
34
-		foreach($all_fields as $field_name => $field_obj){
35
-			if($column == $field_obj->get_table_column()){
34
+		foreach ($all_fields as $field_name => $field_obj) {
35
+			if ($column == $field_obj->get_table_column()) {
36 36
 				return $field_obj;
37 37
 			}
38 38
 		}
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 /**
6 6
  *
7 7
  * Class EE_CPT_Minimum_Where_Conditions
8
-  * 
8
+ * 
9 9
  * Strategy specifically for adding where conditions specific to CPT models.
10 10
  * But only sets the minimum, so any row of the right type will get used
11 11
  *
Please login to merge, or discard this patch.
core/db_classes/EE_Base_Class.class.php 4 patches
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -47,25 +47,25 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 )){
@@ -1310,28 +1310,28 @@  discard block
 block discarded – undo
1310 1310
 		return $result ? true : false;
1311 1311
 	}
1312 1312
 
1313
-        /**
1314
-         * When this model object is deleted, it may still be cached on related model objects. This clears the cache of
1315
-         * related model objects
1316
-         */
1317
-        public function refresh_cache_of_related_objects() {
1318
-            foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ) {
1319
-                if( ! empty( $this->_model_relations[ $relation_name ] ) ) {
1320
-                    $related_objects = $this->_model_relations[ $relation_name ];
1321
-                    if( $relation_obj instanceof EE_Belongs_To_Relation ) {
1322
-                        //this relation only stores a single model object, not an array
1323
-                        //but let's make it consistent
1324
-                        $related_objects = array( $related_objects );
1325
-                    }
1326
-                    foreach( $related_objects as $related_object ) {
1327
-                        //only refresh their cache if they're in memory
1328
-                        if( $related_object instanceof EE_Base_Class ) {
1313
+		/**
1314
+		 * When this model object is deleted, it may still be cached on related model objects. This clears the cache of
1315
+		 * related model objects
1316
+		 */
1317
+		public function refresh_cache_of_related_objects() {
1318
+			foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ) {
1319
+				if( ! empty( $this->_model_relations[ $relation_name ] ) ) {
1320
+					$related_objects = $this->_model_relations[ $relation_name ];
1321
+					if( $relation_obj instanceof EE_Belongs_To_Relation ) {
1322
+						//this relation only stores a single model object, not an array
1323
+						//but let's make it consistent
1324
+						$related_objects = array( $related_objects );
1325
+					}
1326
+					foreach( $related_objects as $related_object ) {
1327
+						//only refresh their cache if they're in memory
1328
+						if( $related_object instanceof EE_Base_Class ) {
1329 1329
 							$related_object->clear_cache( $this->get_model()->get_this_model_name(), $this );
1330
-                        }
1331
-                    }
1332
-                }
1333
-            }
1334
-        }
1330
+						}
1331
+					}
1332
+				}
1333
+			}
1334
+		}
1335 1335
 
1336 1336
 
1337 1337
 
@@ -1681,9 +1681,9 @@  discard block
 block discarded – undo
1681 1681
 			$otherObject = $this->get_model()->add_relationship_to( $this, $otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values );
1682 1682
 			//clear cache so future get_many_related and get_first_related() return new results.
1683 1683
 			$this->clear_cache( $relationName, $otherObject, TRUE );
1684
-                        if( $otherObject instanceof EE_Base_Class ) {
1685
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1686
-                        }
1684
+						if( $otherObject instanceof EE_Base_Class ) {
1685
+							$otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1686
+						}
1687 1687
 		} else {
1688 1688
 			//this thing doesn't exist in the DB,  so just cache it
1689 1689
 			if( ! $otherObjectModelObjectOrID instanceof EE_Base_Class){
@@ -1697,18 +1697,18 @@  discard block
 block discarded – undo
1697 1697
 			}
1698 1698
 			$this->cache( $relationName, $otherObjectModelObjectOrID, $cache_id );
1699 1699
 		}
1700
-                if( $otherObject instanceof EE_Base_Class ) {
1701
-                    //fix the reciprocal relation too
1702
-                    if( $otherObject->ID() ) {
1703
-                            //its saved so assumed relations exist in the DB, so we can just
1704
-                            //clear the cache so future queries use the updated info in the DB
1705
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), null, true );
1706
-                    } else {
1707
-
1708
-                            //it's not saved, so it caches relations like this
1709
-                            $otherObject->cache( $this->get_model()->get_this_model_name(), $this );
1710
-                    }
1711
-                }
1700
+				if( $otherObject instanceof EE_Base_Class ) {
1701
+					//fix the reciprocal relation too
1702
+					if( $otherObject->ID() ) {
1703
+							//its saved so assumed relations exist in the DB, so we can just
1704
+							//clear the cache so future queries use the updated info in the DB
1705
+							$otherObject->clear_cache( $this->get_model()->get_this_model_name(), null, true );
1706
+					} else {
1707
+
1708
+							//it's not saved, so it caches relations like this
1709
+							$otherObject->cache( $this->get_model()->get_this_model_name(), $this );
1710
+					}
1711
+				}
1712 1712
 		return $otherObject;
1713 1713
 	}
1714 1714
 
@@ -1738,9 +1738,9 @@  discard block
 block discarded – undo
1738 1738
 			//this doesn't exist in the DB, just remove it from the cache
1739 1739
 			$otherObject = $this->clear_cache( $relationName, $otherObjectModelObjectOrID );
1740 1740
 		}
1741
-                if( $otherObject instanceof EE_Base_Class ) {
1742
-                    $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1743
-                }
1741
+				if( $otherObject instanceof EE_Base_Class ) {
1742
+					$otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1743
+				}
1744 1744
 		return $otherObject;
1745 1745
 	}
1746 1746
 
@@ -1759,11 +1759,11 @@  discard block
 block discarded – undo
1759 1759
 			//this doesn't exist in the DB, just remove it from the cache
1760 1760
 			$otherObjects = $this->clear_cache( $relationName, null, true );
1761 1761
 		}
1762
-                if( is_array( $otherObjects ) ) {
1763
-                    foreach ( $otherObjects as $otherObject ) {
1764
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1765
-                    }
1766
-                }
1762
+				if( is_array( $otherObjects ) ) {
1763
+					foreach ( $otherObjects as $otherObject ) {
1764
+							$otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1765
+					}
1766
+				}
1767 1767
 		return $otherObjects;
1768 1768
 	}
1769 1769
 
Please login to merge, or discard this patch.
Braces   +69 added lines, -61 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@  discard block
 block discarded – undo
1
-<?php if (!defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if (!defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 do_action( 'AHEE_log', __FILE__, ' FILE LOADED', '' );
3 5
 /**
4 6
  *
@@ -170,7 +172,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
724 727
 		$cached_array_or_object = isset( $this->_model_relations[$relationName] ) ? $this->_model_relations[$relationName] : null;
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
 block discarded – undo
743 746
 		$cached_array_or_object =  isset( $this->_model_relations[$relationName] ) ? $this->_model_relations[$relationName] : array();
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
@@ -1397,7 +1404,7 @@  discard block
 block discarded – undo
1397 1404
 						$this->_update_cached_related_model_objs_fks();
1398 1405
 					}
1399 1406
 				}
1400
-			}else{//PK is NOT auto-increment
1407
+			} else{//PK is NOT auto-increment
1401 1408
 				//so check if one like it already exists in the db
1402 1409
 				if( $this->get_model()->exists_by_ID( $this->ID() ) ){
1403 1410
 					if( ! $this->in_entity_map() && WP_DEBUG ){
@@ -1412,12 +1419,12 @@  discard block
 block discarded – undo
1412 1419
 						);
1413 1420
 					}
1414 1421
 					$results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1415
-				}else{
1422
+				} else{
1416 1423
 					$results = $this->get_model()->insert($save_cols_n_values);
1417 1424
 					$this->_update_cached_related_model_objs_fks();
1418 1425
 				}
1419 1426
 			}
1420
-		}else{//there is NO primary key
1427
+		} else{//there is NO primary key
1421 1428
 			$already_in_db = false;
1422 1429
 			foreach($this->get_model()->unique_indexes() as $index){
1423 1430
 				$uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields());
@@ -1428,7 +1435,7 @@  discard block
 block discarded – undo
1428 1435
 			if( $already_in_db ){
1429 1436
 				$combined_pk_fields_n_values = array_intersect_key( $save_cols_n_values, $this->get_model()->get_combined_primary_key_fields() );
1430 1437
 				$results = $this->get_model()->update( $save_cols_n_values,$combined_pk_fields_n_values );
1431
-			}else{
1438
+			} else{
1432 1439
 				$results = $this->get_model()->insert( $save_cols_n_values );
1433 1440
 			}
1434 1441
 		}
@@ -1480,7 +1487,7 @@  discard block
 block discarded – undo
1480 1487
 		//make sure this has been saved
1481 1488
 		if( ! $this->ID()){
1482 1489
 			$id = $this->save();
1483
-		}else{
1490
+		} else{
1484 1491
 			$id = $this->ID();
1485 1492
 		}
1486 1493
 		//now save all the NEW cached model objects  (ie they don't exist in the DB)
@@ -1499,7 +1506,7 @@  discard block
 block discarded – undo
1499 1506
 						$this->_add_relation_to($related_model_obj, $relationName);
1500 1507
 						$related_model_obj->save_new_cached_related_model_objs();
1501 1508
 //					}
1502
-				}else{
1509
+				} else{
1503 1510
 					foreach($this->_model_relations[$relationName] as $related_model_obj){
1504 1511
 						//add a relation to that relation type (which saves the appropriate thing in the process)
1505 1512
 						//but ONLY if it DOES NOT exist in the DB
@@ -1558,13 +1565,13 @@  discard block
 block discarded – undo
1558 1565
 
1559 1566
 			if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) {
1560 1567
 				$existing = self::_get_model( $classname, $timezone )->get_one_by_ID( $props_n_values[$primary_id_ref] );
1561
-			}else{
1568
+			} else{
1562 1569
 				$existing = null;
1563 1570
 			}
1564
-		}elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields(  $props_n_values ) ){
1571
+		} elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields(  $props_n_values ) ){
1565 1572
 			//no primary key on this model, but there's still a matching item in the DB
1566 1573
 				$existing = self::_get_model($classname, $timezone)->get_one_by_ID( self::_get_model($classname, $timezone)->get_index_primary_key_string( $props_n_values ) );
1567
-		}else{
1574
+		} else{
1568 1575
 			$existing = null;
1569 1576
 		}
1570 1577
 		if ( $existing ) {
@@ -1622,7 +1629,7 @@  discard block
 block discarded – undo
1622 1629
 	private static function _get_model_classname( $model_name = null){
1623 1630
 		if(strpos($model_name,"EE_")===0){
1624 1631
 			$model_classname=str_replace("EE_","EEM_",$model_name);
1625
-		}else{
1632
+		} else{
1626 1633
 			$model_classname = "EEM_".$model_name;
1627 1634
 		}
1628 1635
 		return $model_classname;
@@ -1656,7 +1663,7 @@  discard block
 block discarded – undo
1656 1663
 		//now that we know the name of the variable, use a variable variable to get its value and return its
1657 1664
 		if( $this->get_model()->has_primary_key_field() ) {
1658 1665
 			return $this->_fields[self::_get_primary_key_name( get_class($this) )];
1659
-		}else{
1666
+		} else{
1660 1667
 			return $this->get_model()->get_index_primary_key_string( $this->_fields );
1661 1668
 		}
1662 1669
 	}
@@ -1784,7 +1791,7 @@  discard block
 block discarded – undo
1784 1791
 			//if there are query parameters, forget about caching the related model objects.
1785 1792
 			if( $query_params ){
1786 1793
 				$related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
1787
-			}else{
1794
+			} else{
1788 1795
 				//did we already cache the result of this query?
1789 1796
 				$cached_results = $this->get_all_from_cache($relationName);
1790 1797
 				if ( ! $cached_results ){
@@ -1794,11 +1801,11 @@  discard block
 block discarded – undo
1794 1801
 					foreach($related_model_objects as $related_model_object){
1795 1802
 						$this->cache($relationName, $related_model_object);
1796 1803
 					}
1797
-				}else{
1804
+				} else{
1798 1805
 					$related_model_objects = $cached_results;
1799 1806
 				}
1800 1807
 			}
1801
-		}else{//this doesn't exist itn eh DB, so just get the related things from the cache
1808
+		} else{//this doesn't exist itn eh DB, so just get the related things from the cache
1802 1809
 			$related_model_objects = $this->get_all_from_cache($relationName);
1803 1810
 		}
1804 1811
 		return $related_model_objects;
@@ -1850,22 +1857,22 @@  discard block
 block discarded – undo
1850 1857
 			//on a relation which should have an array of objects (because the cache might have an array of objects)
1851 1858
 			if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){
1852 1859
 				$related_model_object =  $this->get_model()->get_first_related($this, $relationName, $query_params);
1853
-			}else{
1860
+			} else{
1854 1861
 				//first, check if we've already cached the result of this query
1855 1862
 				$cached_result = $this->get_one_from_cache($relationName);
1856 1863
 				if ( ! $cached_result ){
1857 1864
 
1858 1865
 					$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
1859 1866
 					$this->cache($relationName,$related_model_object);
1860
-				}else{
1867
+				} else{
1861 1868
 					$related_model_object = $cached_result;
1862 1869
 				}
1863 1870
 			}
1864
-		}else{
1871
+		} else{
1865 1872
 			//this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might
1866 1873
 			if( $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){
1867 1874
 				$related_model_object =  $this->get_model()->get_first_related($this, $relationName, $query_params);
1868
-			}else{
1875
+			} else{
1869 1876
 				$related_model_object = null;
1870 1877
 			}
1871 1878
 			//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
@@ -1891,7 +1898,7 @@  discard block
 block discarded – undo
1891 1898
 	public function delete_related($relationName,$query_params = array()){
1892 1899
 		if($this->ID()){
1893 1900
 			$count =  $this->get_model()->delete_related($this, $relationName, $query_params);
1894
-		}else{
1901
+		} else{
1895 1902
 			$count = count($this->get_all_from_cache($relationName));
1896 1903
 			$this->clear_cache($relationName,NULL,TRUE);
1897 1904
 		}
@@ -1911,7 +1918,7 @@  discard block
 block discarded – undo
1911 1918
 	public function delete_related_permanently($relationName,$query_params = array()){
1912 1919
 		if($this->ID()){
1913 1920
 			$count =  $this->get_model()->delete_related_permanently($this, $relationName, $query_params);
1914
-		}else{
1921
+		} else{
1915 1922
 			$count = count($this->get_all_from_cache($relationName));
1916 1923
 		}
1917 1924
 		$this->clear_cache($relationName,NULL,TRUE);
@@ -1946,8 +1953,9 @@  discard block
 block discarded – undo
1946 1953
 
1947 1954
 		foreach ( (array) $properties as $property_name ) {
1948 1955
 			//first make sure this property exists
1949
-			if ( ! $this->_fields[ $property_name ] )
1950
-				throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s).  Double check the spelling please', 'event_espresso'), $property_name ) );
1956
+			if ( ! $this->_fields[ $property_name ] ) {
1957
+							throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s).  Double check the spelling please', 'event_espresso'), $property_name ) );
1958
+			}
1951 1959
 		}
1952 1960
 
1953 1961
 		return TRUE;
@@ -2027,7 +2035,7 @@  discard block
 block discarded – undo
2027 2035
 		$existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params);
2028 2036
 		if( ! $existing_rows_like_that){
2029 2037
 			return $this->add_extra_meta($meta_key, $meta_value);
2030
-		}else{
2038
+		} else{
2031 2039
 			foreach( $existing_rows_like_that as $existing_row){
2032 2040
 				$existing_row->save( array( 'EXM_value' => $meta_value ) );
2033 2041
 			}
@@ -2093,10 +2101,10 @@  discard block
 block discarded – undo
2093 2101
 			$result = $this->get_first_related('Extra_Meta',array(array('EXM_key'=>$meta_key)));
2094 2102
 			if ( $result instanceof EE_Extra_Meta ){
2095 2103
 				return $result->value();
2096
-			}else{
2104
+			} else{
2097 2105
 				return $default;
2098 2106
 			}
2099
-		}else{
2107
+		} else{
2100 2108
 			$results =  $this->get_many_related('Extra_Meta',array(array('EXM_key'=>$meta_key)));
2101 2109
 			if($results){
2102 2110
 				$values = array();
@@ -2106,7 +2114,7 @@  discard block
 block discarded – undo
2106 2114
 					}
2107 2115
 				}
2108 2116
 				return $values;
2109
-			}else{
2117
+			} else{
2110 2118
 				return $default;
2111 2119
 			}
2112 2120
 		}
@@ -2132,7 +2140,7 @@  discard block
 block discarded – undo
2132 2140
 					$return_array[$extra_meta_obj->key()] = $extra_meta_obj->value();
2133 2141
 				}
2134 2142
 			}
2135
-		}else{
2143
+		} else{
2136 2144
 			$extra_meta_objs = $this->get_many_related('Extra_Meta');
2137 2145
 			foreach($extra_meta_objs as $extra_meta_obj){
2138 2146
 				if ( $extra_meta_obj instanceof EE_Extra_Meta ) {
@@ -2154,7 +2162,7 @@  discard block
 block discarded – undo
2154 2162
 		$field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base');
2155 2163
 		if($field_we_can_use){
2156 2164
 			return $this->get($field_we_can_use->get_name());
2157
-		}else{
2165
+		} else{
2158 2166
 			$first_few_properties = $this->model_field_array();
2159 2167
 			$first_few_properties = array_slice($first_few_properties,0,3);
2160 2168
 			$name_parts = array();
@@ -2174,7 +2182,7 @@  discard block
 block discarded – undo
2174 2182
 		if( $this->ID() && $this->get_model()->get_from_entity_map( $this->ID() ) === $this ) {
2175 2183
 			//well, if we looked, did we find it in the entity map?
2176 2184
 			return TRUE;
2177
-		}else{
2185
+		} else{
2178 2186
 			return FALSE;
2179 2187
 		}
2180 2188
 	}
@@ -2188,7 +2196,7 @@  discard block
 block discarded – undo
2188 2196
 	public function refresh_from_db(){
2189 2197
 		if( $this->ID() && $this->in_entity_map() ){
2190 2198
 			$this->get_model()->refresh_entity_map_from_db( $this->ID() );
2191
-		}else{
2199
+		} else{
2192 2200
 			//if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database)
2193 2201
 			//if it has an ID but it's not in the map, and you're asking me to refresh it
2194 2202
 			//that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's
Please login to merge, or discard this patch.
Spacing   +488 added lines, -488 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	}
@@ -312,14 +312,14 @@  discard block
 block discarded – undo
312 312
 	 * @param mixed  $field_value  The value to set.
313 313
 	 * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs.
314 314
 	 */
315
-	public function set_field_or_extra_meta( $field_name, $field_value ) {
316
-		if ( $this->get_model()->has_field( $field_name ) ) {
317
-			$this->set( $field_name, $field_value );
315
+	public function set_field_or_extra_meta($field_name, $field_value) {
316
+		if ($this->get_model()->has_field($field_name)) {
317
+			$this->set($field_name, $field_value);
318 318
 			return true;
319 319
 		} else {
320 320
 			//ensure this object is saved first so that extra meta can be properly related.
321 321
 			$this->save();
322
-			return $this->update_extra_meta( $field_name, $field_value );
322
+			return $this->update_extra_meta($field_name, $field_value);
323 323
 		}
324 324
 	}
325 325
 
@@ -343,12 +343,12 @@  discard block
 block discarded – undo
343 343
 	 * @param  string $field_name  expecting the fully qualified field name.
344 344
 	 * @return mixed|null  value for the field if found.  null if not found.
345 345
 	 */
346
-	public function get_field_or_extra_meta( $field_name ) {
347
-		if ( $this->get_model()->has_field( $field_name ) ) {
348
-			$column_value = $this->get( $field_name );
346
+	public function get_field_or_extra_meta($field_name) {
347
+		if ($this->get_model()->has_field($field_name)) {
348
+			$column_value = $this->get($field_name);
349 349
 		} else {
350 350
 			//This isn't a column in the main table, let's see if it is in the extra meta.
351
-			$column_value = $this->get_extra_meta( $field_name, true, null );
351
+			$column_value = $this->get_extra_meta($field_name, true, null);
352 352
 		}
353 353
 		return $column_value;
354 354
 	}
@@ -367,19 +367,19 @@  discard block
 block discarded – undo
367 367
 	 * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php
368 368
 	 * @return void
369 369
 	 */
370
-	public function set_timezone( $timezone = '' ) {
370
+	public function set_timezone($timezone = '') {
371 371
 		EE_Registry::instance()->load_helper('DTT_Helper');
372
-		$this->_timezone = EEH_DTT_Helper::get_valid_timezone_string( $timezone );
372
+		$this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone);
373 373
 		//make sure we clear all cached properties because they won't be relevant now
374 374
 		$this->_clear_cached_properties();
375 375
 
376 376
 		//make sure we update field settings and the date for all EE_Datetime_Fields
377
-		$model_fields = $this->get_model()->field_settings( false );
378
-		foreach ( $model_fields as $field_name => $field_obj ) {
379
-			if ( $field_obj instanceof EE_Datetime_Field ) {
380
-				$field_obj->set_timezone( $this->_timezone );
381
-				if ( isset( $this->_fields[$field_name] ) && $this->_fields[$field_name] instanceof DateTime ) {
382
-					$this->_fields[$field_name]->setTimezone( new DateTimeZone( $this->_timezone ) );
377
+		$model_fields = $this->get_model()->field_settings(false);
378
+		foreach ($model_fields as $field_name => $field_obj) {
379
+			if ($field_obj instanceof EE_Datetime_Field) {
380
+				$field_obj->set_timezone($this->_timezone);
381
+				if (isset($this->_fields[$field_name]) && $this->_fields[$field_name] instanceof DateTime) {
382
+					$this->_fields[$field_name]->setTimezone(new DateTimeZone($this->_timezone));
383 383
 				}
384 384
 			}
385 385
 		}
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
 	 *
409 409
 	 * @param string $format   should be a format recognizable by PHP date() functions.
410 410
 	 */
411
-	public function set_date_format( $format ) {
411
+	public function set_date_format($format) {
412 412
 		$this->_dt_frmt = $format;
413 413
 		//clear cached_properties because they won't be relevant now.
414 414
 		$this->_clear_cached_properties();
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
 	 * @since 4.6
425 425
 	 * @param string $format should be a format recognizable by PHP date() functions.
426 426
 	 */
427
-	public function set_time_format( $format ) {
427
+	public function set_time_format($format) {
428 428
 		$this->_tm_frmt = $format;
429 429
 		//clear cached_properties because they won't be relevant now.
430 430
 		$this->_clear_cached_properties();
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
 	 *
442 442
 	 * @return mixed string|array
443 443
 	 */
444
-	public function get_format( $full = true ) {
445
-		return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array( $this->_dt_frmt, $this->_tm_frmt );
444
+	public function get_format($full = true) {
445
+		return $full ? $this->_dt_frmt.' '.$this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt);
446 446
 	}
447 447
 
448 448
 
@@ -460,17 +460,17 @@  discard block
 block discarded – undo
460 460
 	 * @throws EE_Error
461 461
 	 * @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)
462 462
 	 */
463
-	public function cache( $relationName = '', $object_to_cache = NULL, $cache_id = NULL ){
463
+	public function cache($relationName = '', $object_to_cache = NULL, $cache_id = NULL) {
464 464
 		// its entirely possible that there IS no related object yet in which case there is nothing to cache.
465
-		if ( ! $object_to_cache instanceof EE_Base_Class ) {
465
+		if ( ! $object_to_cache instanceof EE_Base_Class) {
466 466
 			return FALSE;
467 467
 		}
468 468
 		// also get "how" the object is related, or throw an error
469
-		if( ! $relationship_to_model = $this->get_model()->related_settings_for( $relationName )) {
470
-			throw new EE_Error( sprintf( __( 'There is no relationship to %s on a %s. Cannot cache it', 'event_espresso' ), $relationName, get_class( $this )));
469
+		if ( ! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) {
470
+			throw new EE_Error(sprintf(__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'), $relationName, get_class($this)));
471 471
 		}
472 472
 		// how many things are related ?
473
-		if( $relationship_to_model instanceof EE_Belongs_To_Relation ){
473
+		if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
474 474
 			// 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
475 475
 			// so for these model objects just set it to be cached
476 476
 			$this->_model_relations[$relationName] = $object_to_cache;
@@ -478,26 +478,26 @@  discard block
 block discarded – undo
478 478
 		} else {
479 479
 			// 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.
480 480
 			// eg: if this is an event, there are many registrations for that event, so we cache the registrations in an array
481
-			if( ! is_array( $this->_model_relations[$relationName] )) {
481
+			if ( ! is_array($this->_model_relations[$relationName])) {
482 482
 				// if for some reason, the cached item is a model object, then stick that in the array, otherwise start with an empty array
483
-				$this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class ? array( $this->_model_relations[$relationName] ) : array();
483
+				$this->_model_relations[$relationName] = $this->_model_relations[$relationName] instanceof EE_Base_Class ? array($this->_model_relations[$relationName]) : array();
484 484
 			}
485 485
 			// first check for a cache_id which is normally empty
486
-			if ( ! empty( $cache_id )) {
486
+			if ( ! empty($cache_id)) {
487 487
 				// 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
488
-				$this->_model_relations[$relationName][ $cache_id ] = $object_to_cache;
488
+				$this->_model_relations[$relationName][$cache_id] = $object_to_cache;
489 489
 				$return = $cache_id;
490
-			} elseif ( $object_to_cache->ID() ) {
490
+			} elseif ($object_to_cache->ID()) {
491 491
 				// OR the cached object originally came from the db, so let's just use it's PK for an ID
492
-				$this->_model_relations[$relationName][ $object_to_cache->ID() ] = $object_to_cache;
492
+				$this->_model_relations[$relationName][$object_to_cache->ID()] = $object_to_cache;
493 493
 				$return = $object_to_cache->ID();
494 494
 			} else {
495 495
 				// OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID
496 496
 				$this->_model_relations[$relationName][] = $object_to_cache;
497 497
 				  // move the internal pointer to the end of the array
498
-				end( $this->_model_relations[$relationName] );
498
+				end($this->_model_relations[$relationName]);
499 499
 				// and grab the key so that we can return it
500
-				$return = key( $this->_model_relations[$relationName] );
500
+				$return = key($this->_model_relations[$relationName]);
501 501
 			}
502 502
 
503 503
 		}
@@ -515,11 +515,11 @@  discard block
 block discarded – undo
515 515
 	 * @param null   $cache_type
516 516
 	 * @return void
517 517
 	 */
518
-	protected function _set_cached_property( $fieldname, $value, $cache_type = NULL ) {
518
+	protected function _set_cached_property($fieldname, $value, $cache_type = NULL) {
519 519
 		//first make sure this property exists
520 520
 		$this->get_model()->field_settings_for($fieldname);
521 521
 
522
-		$cache_type = empty( $cache_type ) ? 'standard' : $cache_type;
522
+		$cache_type = empty($cache_type) ? 'standard' : $cache_type;
523 523
 		$this->_cached_properties[$fieldname][$cache_type] = $value;
524 524
 	}
525 525
 
@@ -534,34 +534,34 @@  discard block
 block discarded – undo
534 534
 	 *                                 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
535 535
 	 * @return mixed                whatever the value for the property is we're retrieving
536 536
 	 */
537
-	protected function _get_cached_property( $fieldname, $pretty = FALSE, $extra_cache_ref = NULL ) {
537
+	protected function _get_cached_property($fieldname, $pretty = FALSE, $extra_cache_ref = NULL) {
538 538
 		//verify the field exists
539 539
 		$this->get_model()->field_settings_for($fieldname);
540 540
 
541 541
 		$cache_type = $pretty ? 'pretty' : 'standard';
542
-		$cache_type .= !empty( $extra_cache_ref ) ? '_' . $extra_cache_ref : '';
542
+		$cache_type .= ! empty($extra_cache_ref) ? '_'.$extra_cache_ref : '';
543 543
 
544
-		if ( isset( $this->_cached_properties[$fieldname][$cache_type] ) ) {
544
+		if (isset($this->_cached_properties[$fieldname][$cache_type])) {
545 545
 			return $this->_cached_properties[$fieldname][$cache_type];
546 546
 		}
547 547
 
548 548
 		$field_obj = $this->get_model()->field_settings_for($fieldname);
549
-		if ( $field_obj instanceof EE_Model_Field_Base ) {
549
+		if ($field_obj instanceof EE_Model_Field_Base) {
550 550
 			/**
551 551
 			 * maybe this is EE_Datetime_Field.  If so we need to make sure timezone and
552 552
 			 * formats are correct.
553 553
 			 */
554
-			if ( $field_obj instanceof EE_Datetime_Field ) {
555
-				$field_obj->set_timezone( $this->_timezone );
556
-				$field_obj->set_date_format( $this->_dt_frmt, $pretty );
557
-				$field_obj->set_time_format( $this->_tm_frmt, $pretty );
554
+			if ($field_obj instanceof EE_Datetime_Field) {
555
+				$field_obj->set_timezone($this->_timezone);
556
+				$field_obj->set_date_format($this->_dt_frmt, $pretty);
557
+				$field_obj->set_time_format($this->_tm_frmt, $pretty);
558 558
 			}
559 559
 
560
-			if( ! isset($this->_fields[$fieldname])){
560
+			if ( ! isset($this->_fields[$fieldname])) {
561 561
 				$this->_fields[$fieldname] = NULL;
562 562
 			}
563
-			$value = $pretty ? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref) : $field_obj->prepare_for_get($this->_fields[$fieldname] );
564
-			$this->_set_cached_property( $fieldname, $value, $cache_type );
563
+			$value = $pretty ? $field_obj->prepare_for_pretty_echoing($this->_fields[$fieldname], $extra_cache_ref) : $field_obj->prepare_for_get($this->_fields[$fieldname]);
564
+			$this->_set_cached_property($fieldname, $value, $cache_type);
565 565
 			return $value;
566 566
 		}
567 567
 		return FALSE;
@@ -587,9 +587,9 @@  discard block
 block discarded – undo
587 587
 	 * @param  string $property_name the property to remove if it exists (from the _cached_properties array)
588 588
 	 * @return void
589 589
 	 */
590
-	protected function _clear_cached_property( $property_name ) {
591
-		if ( isset( $this->_cached_properties[ $property_name ] ) )
592
-			unset( $this->_cached_properties[ $property_name ] );
590
+	protected function _clear_cached_property($property_name) {
591
+		if (isset($this->_cached_properties[$property_name]))
592
+			unset($this->_cached_properties[$property_name]);
593 593
 	}
594 594
 
595 595
 
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
 	 * @param string $model_name name of the related thing, eg 'Attendee',
601 601
 	 * @return EE_Base_Class
602 602
 	 */
603
-	protected function ensure_related_thing_is_model_obj($object_or_id,$model_name){
603
+	protected function ensure_related_thing_is_model_obj($object_or_id, $model_name) {
604 604
 		$other_model_instance = self::_get_model_instance_with_name(self::_get_model_classname($model_name), $this->_timezone);
605 605
 		$model_obj = $other_model_instance->ensure_is_obj($object_or_id);
606 606
 		return $model_obj;
@@ -620,55 +620,55 @@  discard block
 block discarded – undo
620 620
 	 * @throws EE_Error
621 621
 	 * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a relation from all
622 622
 	 */
623
-	public function clear_cache($relationName, $object_to_remove_or_index_into_array = NULL, $clear_all = FALSE){
623
+	public function clear_cache($relationName, $object_to_remove_or_index_into_array = NULL, $clear_all = FALSE) {
624 624
 		$relationship_to_model = $this->get_model()->related_settings_for($relationName);
625 625
 		$index_in_cache = '';
626
-		if( ! $relationship_to_model){
627
-			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
+		if ( ! $relationship_to_model) {
627
+			throw new EE_Error(sprintf(__("There is no relationship to %s on a %s. Cannot clear that cache", 'event_espresso'), $relationName, get_class($this)));
628 628
 		}
629
-		if($clear_all){
629
+		if ($clear_all) {
630 630
 			$obj_removed = true;
631 631
 			$this->_model_relations[$relationName]  = null;
632
-		}elseif($relationship_to_model instanceof EE_Belongs_To_Relation){
632
+		}elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) {
633 633
 			$obj_removed = $this->_model_relations[$relationName];
634 634
 			$this->_model_relations[$relationName]  = null;
635
-		}else{
636
-			if($object_to_remove_or_index_into_array instanceof EE_Base_Class && $object_to_remove_or_index_into_array->ID()){
635
+		} else {
636
+			if ($object_to_remove_or_index_into_array instanceof EE_Base_Class && $object_to_remove_or_index_into_array->ID()) {
637 637
 				$index_in_cache = $object_to_remove_or_index_into_array->ID();
638
-				if( is_array($this->_model_relations[$relationName]) && ! isset($this->_model_relations[$relationName][$index_in_cache])){
638
+				if (is_array($this->_model_relations[$relationName]) && ! isset($this->_model_relations[$relationName][$index_in_cache])) {
639 639
 					$index_found_at = NULL;
640 640
 					//find this object in the array even though it has a different key
641
-					foreach($this->_model_relations[$relationName] as $index=>$obj){
642
-						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
+					foreach ($this->_model_relations[$relationName] as $index=>$obj) {
642
+						if ($obj instanceof EE_Base_Class && ($obj == $object_to_remove_or_index_into_array || $obj->ID() == $object_to_remove_or_index_into_array->ID())) {
643 643
 							$index_found_at = $index;
644 644
 							break;
645 645
 						}
646 646
 					}
647
-					if($index_found_at){
647
+					if ($index_found_at) {
648 648
 						$index_in_cache = $index_found_at;
649
-					}else{
649
+					} else {
650 650
 						//it wasn't found. huh. well obviously it doesn't need to be removed from teh cache
651 651
 						//if it wasn't in it to begin with. So we're done
652 652
 						return $object_to_remove_or_index_into_array;
653 653
 					}
654 654
 				}
655
-			}elseif($object_to_remove_or_index_into_array instanceof EE_Base_Class){
655
+			}elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) {
656 656
 				//so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it!
657
-				foreach($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want){
658
-					if($potentially_obj_we_want == $object_to_remove_or_index_into_array){
657
+				foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) {
658
+					if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) {
659 659
 						$index_in_cache = $index;
660 660
 					}
661 661
 				}
662
-			}else{
662
+			} else {
663 663
 				$index_in_cache = $object_to_remove_or_index_into_array;
664 664
 			}
665 665
 			//supposedly we've found it. But it could just be that the client code
666 666
 			//provided a bad index/object
667
-			if(isset( $this->_model_relations[$relationName]) &&
668
-					isset( $this->_model_relations[$relationName][$index_in_cache])){
667
+			if (isset($this->_model_relations[$relationName]) &&
668
+					isset($this->_model_relations[$relationName][$index_in_cache])) {
669 669
 				$obj_removed = $this->_model_relations[$relationName][$index_in_cache];
670 670
 				unset($this->_model_relations[$relationName][$index_in_cache]);
671
-			}else{
671
+			} else {
672 672
 				//that thing was never cached anyways.
673 673
 				$obj_removed = NULL;
674 674
 			}
@@ -687,24 +687,24 @@  discard block
 block discarded – undo
687 687
 	 * @param string                $current_cache_id   - the ID that was used when originally caching the object
688 688
 	 * @return boolean TRUE on success, FALSE on fail
689 689
 	 */
690
-	public function update_cache_after_object_save( $relationName, EE_Base_Class $newly_saved_object, $current_cache_id = '') {
690
+	public function update_cache_after_object_save($relationName, EE_Base_Class $newly_saved_object, $current_cache_id = '') {
691 691
 		// verify that incoming object is of the correct type
692
-		$obj_class = 'EE_' . $relationName;
693
-		if ( $newly_saved_object instanceof $obj_class ) {
692
+		$obj_class = 'EE_'.$relationName;
693
+		if ($newly_saved_object instanceof $obj_class) {
694 694
 			/* @type EE_Base_Class $newly_saved_object*/
695 695
 			// now get the type of relation
696
-			$relationship_to_model = $this->get_model()->related_settings_for( $relationName );
696
+			$relationship_to_model = $this->get_model()->related_settings_for($relationName);
697 697
 			// if this is a 1:1 relationship
698
-			if( $relationship_to_model instanceof EE_Belongs_To_Relation ) {
698
+			if ($relationship_to_model instanceof EE_Belongs_To_Relation) {
699 699
 				// then just replace the cached object with the newly saved object
700 700
 				$this->_model_relations[$relationName] = $newly_saved_object;
701 701
 				return TRUE;
702 702
 			// or if it's some kind of sordid feral polyamorous relationship...
703
-			} elseif ( is_array( $this->_model_relations[$relationName] ) && isset( $this->_model_relations[$relationName][ $current_cache_id ] )) {
703
+			} elseif (is_array($this->_model_relations[$relationName]) && isset($this->_model_relations[$relationName][$current_cache_id])) {
704 704
 				// then remove the current cached item
705
-				unset( $this->_model_relations[$relationName][ $current_cache_id ] );
705
+				unset($this->_model_relations[$relationName][$current_cache_id]);
706 706
 				// and cache the newly saved object using it's new ID
707
-				$this->_model_relations[$relationName][ $newly_saved_object->ID() ] = $newly_saved_object;
707
+				$this->_model_relations[$relationName][$newly_saved_object->ID()] = $newly_saved_object;
708 708
 				return TRUE;
709 709
 			}
710 710
 		}
@@ -720,11 +720,11 @@  discard block
 block discarded – undo
720 720
 	 * @param string $relationName
721 721
 	 * @return EE_Base_Class
722 722
 	 */
723
-	public function get_one_from_cache($relationName){
724
-		$cached_array_or_object = isset( $this->_model_relations[$relationName] ) ? $this->_model_relations[$relationName] : null;
725
-		if(is_array($cached_array_or_object)){
723
+	public function get_one_from_cache($relationName) {
724
+		$cached_array_or_object = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName] : null;
725
+		if (is_array($cached_array_or_object)) {
726 726
 			return array_shift($cached_array_or_object);
727
-		}else{
727
+		} else {
728 728
 			return $cached_array_or_object;
729 729
 		}
730 730
 	}
@@ -739,14 +739,14 @@  discard block
 block discarded – undo
739 739
 	 * @throws \EE_Error
740 740
 	 * @return EE_Base_Class[] NOT necessarily indexed by primary keys
741 741
 	 */
742
-	public function get_all_from_cache($relationName){
743
-		$cached_array_or_object =  isset( $this->_model_relations[$relationName] ) ? $this->_model_relations[$relationName] : array();
744
-		if(is_array($cached_array_or_object)){
742
+	public function get_all_from_cache($relationName) {
743
+		$cached_array_or_object = isset($this->_model_relations[$relationName]) ? $this->_model_relations[$relationName] : array();
744
+		if (is_array($cached_array_or_object)) {
745 745
 			$objects = $cached_array_or_object;
746
-		}elseif($cached_array_or_object){
746
+		}elseif ($cached_array_or_object) {
747 747
 			//if the result is not an array, but exists, make it an array
748 748
 			$objects = array($cached_array_or_object);
749
-		}else{
749
+		} else {
750 750
 			//if nothing was found, return an empty array
751 751
 			$objects = array();
752 752
 		}
@@ -754,15 +754,15 @@  discard block
 block discarded – undo
754 754
 		//basically, if this model object was stored in the session, and these cached model objects
755 755
 		//already have IDs, let's make sure they're in their model's entity mapper
756 756
 		//otherwise we will have duplicates next time we call EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() );
757
-		foreach( $objects as $model_object ){
758
-			$model = EE_Registry::instance()->load_model( $relationName );
759
-			if( $model instanceof EEM_Base && $model_object instanceof EE_Base_Class ){
757
+		foreach ($objects as $model_object) {
758
+			$model = EE_Registry::instance()->load_model($relationName);
759
+			if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) {
760 760
 				//ensure its in the map if it has an ID; otherwise it will be added to the map when its saved
761
-				if( $model_object->ID() ){
762
-					$model->add_to_entity_map( $model_object );
761
+				if ($model_object->ID()) {
762
+					$model->add_to_entity_map($model_object);
763 763
 				}
764
-			}else{
765
-				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
+			} else {
765
+				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 766
 			}
767 767
 		}
768 768
 		return $objects;
@@ -781,13 +781,13 @@  discard block
 block discarded – undo
781 781
 	 *
782 782
 	 * @return array|EE_Base_Class[]
783 783
 	 */
784
-	public function next_x( $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) {
785
-		$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;
786
-		$current_value = ! empty( $field ) ? $this->get( $field ) : null;
787
-		if ( empty( $field ) || empty( $current_value ) ) {
784
+	public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) {
785
+		$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;
786
+		$current_value = ! empty($field) ? $this->get($field) : null;
787
+		if (empty($field) || empty($current_value)) {
788 788
 			return array();
789 789
 		}
790
-		return $this->get_model()->next_x( $current_value, $field, $limit, $query_params, $columns_to_select );
790
+		return $this->get_model()->next_x($current_value, $field, $limit, $query_params, $columns_to_select);
791 791
 	}
792 792
 
793 793
 
@@ -806,13 +806,13 @@  discard block
 block discarded – undo
806 806
 	 *
807 807
 	 * @return array|EE_Base_Class[]
808 808
 	 */
809
-	public function previous_x( $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) {
810
-		$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;
811
-		$current_value = ! empty( $field ) ? $this->get( $field ) : null;
812
-		if ( empty( $field ) || empty( $current_value ) ) {
809
+	public function previous_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) {
810
+		$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;
811
+		$current_value = ! empty($field) ? $this->get($field) : null;
812
+		if (empty($field) || empty($current_value)) {
813 813
 			return array();
814 814
 		}
815
-		return $this->get_model()->previous_x( $current_value, $field, $limit, $query_params, $columns_to_select );
815
+		return $this->get_model()->previous_x($current_value, $field, $limit, $query_params, $columns_to_select);
816 816
 	}
817 817
 
818 818
 
@@ -830,13 +830,13 @@  discard block
 block discarded – undo
830 830
 	 *
831 831
 	 * @return array|EE_Base_Class
832 832
 	 */
833
-	public function next( $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) {
834
-		$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;
835
-		$current_value = ! empty( $field ) ? $this->get( $field ) : null;
836
-		if ( empty( $field ) || empty( $current_value ) ) {
833
+	public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null) {
834
+		$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;
835
+		$current_value = ! empty($field) ? $this->get($field) : null;
836
+		if (empty($field) || empty($current_value)) {
837 837
 			return array();
838 838
 		}
839
-		return $this->get_model()->next( $current_value, $field, $query_params, $columns_to_select );
839
+		return $this->get_model()->next($current_value, $field, $query_params, $columns_to_select);
840 840
 	}
841 841
 
842 842
 
@@ -855,13 +855,13 @@  discard block
 block discarded – undo
855 855
 	 *
856 856
 	 * @return array|EE_Base_Class
857 857
 	 */
858
-	public function previous( $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) {
859
-		$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;
860
-		$current_value = ! empty( $field ) ? $this->get( $field ) : null;
861
-		if ( empty( $field ) || empty( $current_value ) ) {
858
+	public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null) {
859
+		$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;
860
+		$current_value = ! empty($field) ? $this->get($field) : null;
861
+		if (empty($field) || empty($current_value)) {
862 862
 			return array();
863 863
 		}
864
-		return $this->get_model()->previous( $current_value, $field, $query_params, $columns_to_select );
864
+		return $this->get_model()->previous($current_value, $field, $query_params, $columns_to_select);
865 865
 	}
866 866
 
867 867
 
@@ -875,25 +875,25 @@  discard block
 block discarded – undo
875 875
 	 * @param string $field_name
876 876
 	 * @param mixed  $field_value_from_db
877 877
 	 */
878
-	public function set_from_db($field_name,$field_value_from_db){
878
+	public function set_from_db($field_name, $field_value_from_db) {
879 879
 		$field_obj = $this->get_model()->field_settings_for($field_name);
880
-		if ( $field_obj instanceof EE_Model_Field_Base ) {
880
+		if ($field_obj instanceof EE_Model_Field_Base) {
881 881
 			//you would think the DB has no NULLs for non-null label fields right? wrong!
882 882
 			//eg, a CPT model object could have an entry in the posts table, but no
883 883
 			//entry in the meta table. Meaning that all its columns in the meta table
884 884
 			//are null! yikes! so when we find one like that, use defaults for its meta columns
885
-			if($field_value_from_db === NULL ){
886
-				if( $field_obj->is_nullable()){
885
+			if ($field_value_from_db === NULL) {
886
+				if ($field_obj->is_nullable()) {
887 887
 					//if the field allows nulls, then let it be null
888 888
 					$field_value = NULL;
889
-				}else{
889
+				} else {
890 890
 					$field_value = $field_obj->get_default_value();
891 891
 				}
892
-			}else{
893
-				$field_value = $field_obj->prepare_for_set_from_db( $field_value_from_db );
892
+			} else {
893
+				$field_value = $field_obj->prepare_for_set_from_db($field_value_from_db);
894 894
 			}
895 895
 			$this->_fields[$field_name] = $field_value;
896
-			$this->_clear_cached_property( $field_name );
896
+			$this->_clear_cached_property($field_name);
897 897
 		}
898 898
 	}
899 899
 
@@ -905,8 +905,8 @@  discard block
 block discarded – undo
905 905
 	 * @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.)
906 906
 	 * @return boolean
907 907
 	 */
908
-	public function get($field_name, $extra_cache_ref = NULL ){
909
-		return $this->_get_cached_property( $field_name, FALSE, $extra_cache_ref );
908
+	public function get($field_name, $extra_cache_ref = NULL) {
909
+		return $this->_get_cached_property($field_name, FALSE, $extra_cache_ref);
910 910
 	}
911 911
 
912 912
 
@@ -936,11 +936,11 @@  discard block
 block discarded – undo
936 936
 	 *                    				     just null is returned (because that indicates that likely
937 937
 	 *                    				     this field is nullable).
938 938
 	 */
939
-	public function get_DateTime_object( $field_name ) {
940
-		$field_settings = $this->get_model()->field_settings_for( $field_name );
939
+	public function get_DateTime_object($field_name) {
940
+		$field_settings = $this->get_model()->field_settings_for($field_name);
941 941
 
942
-		if ( ! $field_settings instanceof EE_Datetime_Field ) {
943
-			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
+		if ( ! $field_settings instanceof EE_Datetime_Field) {
943
+			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__);
944 944
 			return false;
945 945
 		}
946 946
 
@@ -956,7 +956,7 @@  discard block
 block discarded – undo
956 956
 	 * @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.)
957 957
 	 * @return void
958 958
 	 */
959
-	public function e($field_name, $extra_cache_ref = NULL){
959
+	public function e($field_name, $extra_cache_ref = NULL) {
960 960
 		echo $this->get_pretty($field_name, $extra_cache_ref);
961 961
 	}
962 962
 	/**
@@ -965,8 +965,8 @@  discard block
 block discarded – undo
965 965
 	 * @param string $field_name
966 966
 	 * @return void
967 967
 	 */
968
-	public function f($field_name){
969
-		$this->e($field_name,'form_input');
968
+	public function f($field_name) {
969
+		$this->e($field_name, 'form_input');
970 970
 	}
971 971
 
972 972
 	/**
@@ -975,8 +975,8 @@  discard block
 block discarded – undo
975 975
 	 * @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.)
976 976
 	 * @return mixed
977 977
 	 */
978
-	public function get_pretty($field_name, $extra_cache_ref = NULL){
979
-		return  $this->_get_cached_property( $field_name, TRUE, $extra_cache_ref );
978
+	public function get_pretty($field_name, $extra_cache_ref = NULL) {
979
+		return  $this->_get_cached_property($field_name, TRUE, $extra_cache_ref);
980 980
 	}
981 981
 
982 982
 
@@ -993,37 +993,37 @@  discard block
 block discarded – undo
993 993
 	 * @param  boolean $echo         Whether the dtt is echoing using pretty echoing or just returned using vanilla get
994 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
995 995
 	 */
996
-	protected function _get_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL, $date_or_time = NULL, $echo = FALSE ) {
996
+	protected function _get_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL, $date_or_time = NULL, $echo = FALSE) {
997 997
 
998
-		$in_dt_frmt = empty($dt_frmt) ? $this->_dt_frmt :  $dt_frmt;
998
+		$in_dt_frmt = empty($dt_frmt) ? $this->_dt_frmt : $dt_frmt;
999 999
 		$in_tm_frmt = empty($tm_frmt) ? $this->_tm_frmt : $tm_frmt;
1000 1000
 
1001 1001
 		//validate field for datetime and returns field settings if valid.
1002
-		$field = $this->_get_dtt_field_settings( $field_name );
1002
+		$field = $this->_get_dtt_field_settings($field_name);
1003 1003
 
1004 1004
 		//clear cached property if either formats are not null.
1005
-		if( $dt_frmt !== null || $tm_frmt !== null ) {
1006
-			$this->_clear_cached_property( $field_name );
1005
+		if ($dt_frmt !== null || $tm_frmt !== null) {
1006
+			$this->_clear_cached_property($field_name);
1007 1007
 			//reset format properties because they are used in get()
1008 1008
 			$this->_dt_frmt = $in_dt_frmt;
1009 1009
 			$this->_tm_frmt = $in_tm_frmt;
1010 1010
 		}
1011 1011
 
1012
-		if ( $echo )
1013
-			$field->set_pretty_date_format( $in_dt_frmt );
1012
+		if ($echo)
1013
+			$field->set_pretty_date_format($in_dt_frmt);
1014 1014
 		else
1015
-			$field->set_date_format( $in_dt_frmt );
1015
+			$field->set_date_format($in_dt_frmt);
1016 1016
 
1017
-		if ( $echo )
1018
-			$field->set_pretty_time_format( $in_tm_frmt );
1017
+		if ($echo)
1018
+			$field->set_pretty_time_format($in_tm_frmt);
1019 1019
 		else
1020
-			$field->set_time_format( $in_tm_frmt );
1020
+			$field->set_time_format($in_tm_frmt);
1021 1021
 
1022 1022
 		//set timezone in field object
1023
-		$field->set_timezone( $this->_timezone );
1023
+		$field->set_timezone($this->_timezone);
1024 1024
 
1025 1025
 		//set the output returned
1026
-		switch ( $date_or_time ) {
1026
+		switch ($date_or_time) {
1027 1027
 
1028 1028
 			case 'D' :
1029 1029
 				$field->set_date_time_output('date');
@@ -1038,11 +1038,11 @@  discard block
 block discarded – undo
1038 1038
 		}
1039 1039
 
1040 1040
 
1041
-		if ( $echo ) {
1042
-			$this->e( $field_name, $date_or_time );
1041
+		if ($echo) {
1042
+			$this->e($field_name, $date_or_time);
1043 1043
 			return '';
1044 1044
 		 }
1045
-		return $this->get( $field_name, $date_or_time );
1045
+		return $this->get($field_name, $date_or_time);
1046 1046
 	}
1047 1047
 
1048 1048
 
@@ -1052,8 +1052,8 @@  discard block
 block discarded – undo
1052 1052
 	 * @param  string $format     format for the date returned (if NULL we use default in dt_frmt property)
1053 1053
 	 * @return string            datetime value formatted
1054 1054
 	 */
1055
-	public function get_date( $field_name, $format = NULL ) {
1056
-		return $this->_get_datetime( $field_name, $format, NULL, 'D' );
1055
+	public function get_date($field_name, $format = NULL) {
1056
+		return $this->_get_datetime($field_name, $format, NULL, 'D');
1057 1057
 	}
1058 1058
 
1059 1059
 
@@ -1062,8 +1062,8 @@  discard block
 block discarded – undo
1062 1062
 	 * @param      $field_name
1063 1063
 	 * @param null $format
1064 1064
 	 */
1065
-	public function e_date( $field_name, $format = NULL ) {
1066
-		$this->_get_datetime( $field_name, $format, NULL, 'D', TRUE );
1065
+	public function e_date($field_name, $format = NULL) {
1066
+		$this->_get_datetime($field_name, $format, NULL, 'D', TRUE);
1067 1067
 	}
1068 1068
 
1069 1069
 
@@ -1073,8 +1073,8 @@  discard block
 block discarded – undo
1073 1073
 	 * @param  string $format     format for the time returned ( if NULL we use default in tm_frmt property)
1074 1074
 	 * @return string             datetime value formatted
1075 1075
 	 */
1076
-	public function get_time( $field_name, $format = NULL ) {
1077
-		return $this->_get_datetime( $field_name, NULL, $format, 'T' );
1076
+	public function get_time($field_name, $format = NULL) {
1077
+		return $this->_get_datetime($field_name, NULL, $format, 'T');
1078 1078
 	}
1079 1079
 
1080 1080
 
@@ -1083,8 +1083,8 @@  discard block
 block discarded – undo
1083 1083
 	 * @param      $field_name
1084 1084
 	 * @param null $format
1085 1085
 	 */
1086
-	public function e_time( $field_name, $format = NULL ) {
1087
-		$this->_get_datetime( $field_name, NULL, $format, 'T', TRUE );
1086
+	public function e_time($field_name, $format = NULL) {
1087
+		$this->_get_datetime($field_name, NULL, $format, 'T', TRUE);
1088 1088
 	}
1089 1089
 
1090 1090
 
@@ -1097,8 +1097,8 @@  discard block
 block discarded – undo
1097 1097
 	 * @param  string $tm_frmt    format for the time returned (if NULL we use default in tm_frmt property)
1098 1098
 	 * @return string             datetime value formatted
1099 1099
 	 */
1100
-	public function get_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL ) {
1101
-		return $this->_get_datetime( $field_name, $dt_frmt, $tm_frmt );
1100
+	public function get_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL) {
1101
+		return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt);
1102 1102
 	}
1103 1103
 
1104 1104
 
@@ -1108,8 +1108,8 @@  discard block
 block discarded – undo
1108 1108
 	 * @param null $dt_frmt
1109 1109
 	 * @param null $tm_frmt
1110 1110
 	 */
1111
-	public function e_datetime( $field_name, $dt_frmt = NULL, $tm_frmt = NULL ) {
1112
-		$this->_get_datetime( $field_name, $dt_frmt, $tm_frmt, NULL, TRUE);
1111
+	public function e_datetime($field_name, $dt_frmt = NULL, $tm_frmt = NULL) {
1112
+		$this->_get_datetime($field_name, $dt_frmt, $tm_frmt, NULL, TRUE);
1113 1113
 	}
1114 1114
 
1115 1115
 
@@ -1124,10 +1124,10 @@  discard block
 block discarded – undo
1124 1124
 	 * @return string Date and time string in set locale or false if no field exists for the given
1125 1125
 	 *                         field name.
1126 1126
 	 */
1127
-	public function get_i18n_datetime( $field_name, $format = NULL ) {
1128
-		EE_Registry::instance()->load_helper( 'DTT_Helper' );
1129
-		$format = empty( $format ) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format;
1130
-		return date_i18n( $format, EEH_DTT_Helper::get_timestamp_with_offset( $this->get_raw( $field_name ), $this->_timezone ) );
1127
+	public function get_i18n_datetime($field_name, $format = NULL) {
1128
+		EE_Registry::instance()->load_helper('DTT_Helper');
1129
+		$format = empty($format) ? $this->_dt_frmt.' '.$this->_tm_frmt : $format;
1130
+		return date_i18n($format, EEH_DTT_Helper::get_timestamp_with_offset($this->get_raw($field_name), $this->_timezone));
1131 1131
 	}
1132 1132
 
1133 1133
 
@@ -1139,14 +1139,14 @@  discard block
 block discarded – undo
1139 1139
 	 * @throws EE_Error
1140 1140
 	 * @return EE_Datetime_Field
1141 1141
 	 */
1142
-	protected function _get_dtt_field_settings( $field_name ) {
1142
+	protected function _get_dtt_field_settings($field_name) {
1143 1143
 		$field = $this->get_model()->field_settings_for($field_name);
1144 1144
 
1145 1145
 		//check if field is dtt
1146
-		if ( $field instanceof EE_Datetime_Field ) {
1146
+		if ($field instanceof EE_Datetime_Field) {
1147 1147
 			return $field;
1148 1148
 		} else {
1149
-			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) ) ) );
1149
+			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))));
1150 1150
 		}
1151 1151
 	}
1152 1152
 
@@ -1167,8 +1167,8 @@  discard block
 block discarded – undo
1167 1167
 	 * @param string|Datetime $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
-	protected function _set_time_for( $time, $fieldname ) {
1171
-		$this->_set_date_time( 'T', $time, $fieldname );
1170
+	protected function _set_time_for($time, $fieldname) {
1171
+		$this->_set_date_time('T', $time, $fieldname);
1172 1172
 	}
1173 1173
 
1174 1174
 
@@ -1182,8 +1182,8 @@  discard block
 block discarded – undo
1182 1182
 	 * @param string|DateTime $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
-	protected function _set_date_for( $date, $fieldname ) {
1186
-		$this->_set_date_time( 'D', $date, $fieldname );
1185
+	protected function _set_date_for($date, $fieldname) {
1186
+		$this->_set_date_time('D', $date, $fieldname);
1187 1187
 	}
1188 1188
 
1189 1189
 
@@ -1199,21 +1199,21 @@  discard block
 block discarded – undo
1199 1199
 	 * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object)
1200 1200
 	 * @param string $fieldname     the name of the field the date OR time is being set on (must match a EE_Datetime_Field property)
1201 1201
 	 */
1202
-	protected function _set_date_time( $what = 'T', $datetime_value, $fieldname ) {
1203
-		$field = $this->_get_dtt_field_settings( $fieldname );
1204
-		$field->set_timezone( $this->_timezone );
1205
-		$field->set_date_format( $this->_dt_frmt );
1206
-		$field->set_time_format( $this->_tm_frmt );
1202
+	protected function _set_date_time($what = 'T', $datetime_value, $fieldname) {
1203
+		$field = $this->_get_dtt_field_settings($fieldname);
1204
+		$field->set_timezone($this->_timezone);
1205
+		$field->set_date_format($this->_dt_frmt);
1206
+		$field->set_time_format($this->_tm_frmt);
1207 1207
 
1208
-		switch ( $what ) {
1208
+		switch ($what) {
1209 1209
 			case 'T' :
1210
-				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_time( $datetime_value, $this->_fields[$fieldname] );
1210
+				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_time($datetime_value, $this->_fields[$fieldname]);
1211 1211
 				break;
1212 1212
 			case 'D' :
1213
-				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_date( $datetime_value, $this->_fields[$fieldname] );
1213
+				$this->_fields[$fieldname] = $field->prepare_for_set_with_new_date($datetime_value, $this->_fields[$fieldname]);
1214 1214
 				break;
1215 1215
 			case 'B' :
1216
-				$this->_fields[$fieldname] = $field->prepare_for_set( $datetime_value );
1216
+				$this->_fields[$fieldname] = $field->prepare_for_set($datetime_value);
1217 1217
 				break;
1218 1218
 		}
1219 1219
 
@@ -1236,25 +1236,25 @@  discard block
 block discarded – undo
1236 1236
 	 * @throws EE_Error
1237 1237
 	 * @return string timestamp
1238 1238
 	 */
1239
-	public function display_in_my_timezone( $field_name, $callback = 'get_datetime', $args = NULL, $prepend = '', $append = '' ) {
1239
+	public function display_in_my_timezone($field_name, $callback = 'get_datetime', $args = NULL, $prepend = '', $append = '') {
1240 1240
 		EE_Registry::instance()->load_helper('DTT_Helper');
1241 1241
 		$timezone = EEH_DTT_Helper::get_timezone();
1242 1242
 
1243
-		if ( $timezone == $this->_timezone )
1243
+		if ($timezone == $this->_timezone)
1244 1244
 			return '';
1245 1245
 
1246 1246
 		$original_timezone = $this->_timezone;
1247
-		$this->set_timezone( $timezone );
1247
+		$this->set_timezone($timezone);
1248 1248
 
1249 1249
 		$fn = (array) $field_name;
1250
-		$args = array_merge( $fn, (array) $args );
1250
+		$args = array_merge($fn, (array) $args);
1251 1251
 
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 ) );
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));
1254 1254
 		$args = (array) $args;
1255
-		$return =  $prepend . call_user_func_array( array( $this, $callback ), $args ) . $append;
1255
+		$return = $prepend.call_user_func_array(array($this, $callback), $args).$append;
1256 1256
 
1257
-		$this->set_timezone( $original_timezone );
1257
+		$this->set_timezone($original_timezone);
1258 1258
 		return $return;
1259 1259
 	}
1260 1260
 
@@ -1270,7 +1270,7 @@  discard block
 block discarded – undo
1270 1270
 	 *
1271 1271
 	 * @return boolean | int
1272 1272
 	 */
1273
-	public function delete( $allow_blocking = true ){
1273
+	public function delete($allow_blocking = true) {
1274 1274
 		/**
1275 1275
 		 * Called just before the `EE_Base_Class::_delete` method call.
1276 1276
 		 * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
@@ -1279,8 +1279,8 @@  discard block
 block discarded – undo
1279 1279
 		 *
1280 1280
 		 * @param EE_Base_Class $model_object about to be 'deleted'
1281 1281
 		 */
1282
-		do_action( 'AHEE__EE_Base_Class__delete__before', $this );
1283
-		$result = $this->_delete( $allow_blocking );
1282
+		do_action('AHEE__EE_Base_Class__delete__before', $this);
1283
+		$result = $this->_delete($allow_blocking);
1284 1284
 		/**
1285 1285
 		 * Called just after the `EE_Base_Class::_delete` method call.
1286 1286
 		 * Note: `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions
@@ -1289,7 +1289,7 @@  discard block
 block discarded – undo
1289 1289
 		 * @param EE_Base_Class $model_object that was just 'deleted'
1290 1290
 		 * @param boolean $result
1291 1291
 		 */
1292
-		do_action( 'AHEE__EE_Base_Class__delete__end', $this, $result );
1292
+		do_action('AHEE__EE_Base_Class__delete__end', $this, $result);
1293 1293
 		return $result;
1294 1294
 	}
1295 1295
 
@@ -1302,8 +1302,8 @@  discard block
 block discarded – undo
1302 1302
 	 * based on the existence of related model objects
1303 1303
 	 * @return bool|int
1304 1304
 	 */
1305
-	protected function _delete( $allow_blocking = true ) {
1306
-		$result = $this->delete_permanently( $allow_blocking );
1305
+	protected function _delete($allow_blocking = true) {
1306
+		$result = $this->delete_permanently($allow_blocking);
1307 1307
 		return $result;
1308 1308
 	}
1309 1309
 
@@ -1316,22 +1316,22 @@  discard block
 block discarded – undo
1316 1316
 	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
1317 1317
 	 * @return bool | int
1318 1318
 	 */
1319
-	public function delete_permanently( $allow_blocking = true){
1319
+	public function delete_permanently($allow_blocking = true) {
1320 1320
 		/**
1321 1321
 		 * Called just before HARD deleting a model object
1322 1322
 		 *
1323 1323
 		 * @param EE_Base_Class $model_object about to be 'deleted'
1324 1324
 		 */
1325
-		do_action( 'AHEE__EE_Base_Class__delete_permanently__before', $this );
1326
-		$model=$this->get_model();
1327
-		$result=$model->delete_permanently_by_ID($this->ID(), $allow_blocking );
1325
+		do_action('AHEE__EE_Base_Class__delete_permanently__before', $this);
1326
+		$model = $this->get_model();
1327
+		$result = $model->delete_permanently_by_ID($this->ID(), $allow_blocking);
1328 1328
 		$this->refresh_cache_of_related_objects();
1329 1329
 		/**
1330 1330
 		 * Called just after HARD deleting a model object
1331 1331
 		 * @param EE_Base_Class $model_object that was just 'deleted'
1332 1332
 		 * @param boolean $result
1333 1333
 		 */
1334
-		do_action( 'AHEE__EE_Base_Class__delete_permanently__end', $this, $result );
1334
+		do_action('AHEE__EE_Base_Class__delete_permanently__end', $this, $result);
1335 1335
 		return $result;
1336 1336
 	}
1337 1337
 
@@ -1340,18 +1340,18 @@  discard block
 block discarded – undo
1340 1340
          * related model objects
1341 1341
          */
1342 1342
         public function refresh_cache_of_related_objects() {
1343
-            foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ) {
1344
-                if( ! empty( $this->_model_relations[ $relation_name ] ) ) {
1345
-                    $related_objects = $this->_model_relations[ $relation_name ];
1346
-                    if( $relation_obj instanceof EE_Belongs_To_Relation ) {
1343
+            foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1344
+                if ( ! empty($this->_model_relations[$relation_name])) {
1345
+                    $related_objects = $this->_model_relations[$relation_name];
1346
+                    if ($relation_obj instanceof EE_Belongs_To_Relation) {
1347 1347
                         //this relation only stores a single model object, not an array
1348 1348
                         //but let's make it consistent
1349
-                        $related_objects = array( $related_objects );
1349
+                        $related_objects = array($related_objects);
1350 1350
                     }
1351
-                    foreach( $related_objects as $related_object ) {
1351
+                    foreach ($related_objects as $related_object) {
1352 1352
                         //only refresh their cache if they're in memory
1353
-                        if( $related_object instanceof EE_Base_Class ) {
1354
-							$related_object->clear_cache( $this->get_model()->get_this_model_name(), $this );
1353
+                        if ($related_object instanceof EE_Base_Class) {
1354
+							$related_object->clear_cache($this->get_model()->get_this_model_name(), $this);
1355 1355
                         }
1356 1356
                     }
1357 1357
                 }
@@ -1371,17 +1371,17 @@  discard block
 block discarded – undo
1371 1371
 	 * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object
1372 1372
 	 * isn't allowed to persist (as determined by EE_Base_Class::allow_persist())
1373 1373
 	 */
1374
-	public function save($set_cols_n_values=array()) {
1374
+	public function save($set_cols_n_values = array()) {
1375 1375
 		/**
1376 1376
 		 * Filters the fields we're about to save on the model object
1377 1377
 		 *
1378 1378
 		 * @param array $set_cols_n_values
1379 1379
 		 * @param EE_Base_Class $model_object
1380 1380
 		 */
1381
-		$set_cols_n_values = apply_filters( 'FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values, $this  );
1381
+		$set_cols_n_values = apply_filters('FHEE__EE_Base_Class__save__set_cols_n_values', $set_cols_n_values, $this);
1382 1382
 		//set attributes as provided in $set_cols_n_values
1383
-		foreach($set_cols_n_values as $column=>$value){
1384
-			$this->set($column,$value);
1383
+		foreach ($set_cols_n_values as $column=>$value) {
1384
+			$this->set($column, $value);
1385 1385
 		}
1386 1386
 		/**
1387 1387
 		 * Saving a model object.
@@ -1389,8 +1389,8 @@  discard block
 block discarded – undo
1389 1389
 		 * Before we perform a save, this action is fired.
1390 1390
 		 * @param EE_Base_Class $model_object the model object about to be saved.
1391 1391
 		 */
1392
-		do_action( 'AHEE__EE_Base_Class__save__begin', $this );
1393
-		if( ! $this->allow_persist() ) {
1392
+		do_action('AHEE__EE_Base_Class__save__begin', $this);
1393
+		if ( ! $this->allow_persist()) {
1394 1394
 			return 0;
1395 1395
 		}
1396 1396
 		//now get current attribute values
@@ -1400,61 +1400,61 @@  discard block
 block discarded – undo
1400 1400
 		$old_assumption_concerning_value_preparation = $this->get_model()->get_assumption_concerning_values_already_prepared_by_model_object();
1401 1401
 		$this->get_model()->assume_values_already_prepared_by_model_object(true);
1402 1402
 		//does this model have an autoincrement PK?
1403
-		if($this->get_model()->has_primary_key_field()){
1404
-			if($this->get_model()->get_primary_key_field()->is_auto_increment()){
1403
+		if ($this->get_model()->has_primary_key_field()) {
1404
+			if ($this->get_model()->get_primary_key_field()->is_auto_increment()) {
1405 1405
 				//ok check if it's set, if so: update; if not, insert
1406
-				if ( ! empty( $save_cols_n_values[self::_get_primary_key_name( get_class($this) )] ) ){
1407
-					$results = $this->get_model()->update_by_ID ( $save_cols_n_values, $this->ID() );
1406
+				if ( ! empty($save_cols_n_values[self::_get_primary_key_name(get_class($this))])) {
1407
+					$results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1408 1408
 				} else {
1409
-					unset($save_cols_n_values[self::_get_primary_key_name( get_class( $this) )]);
1410
-					$results = $this->get_model()->insert( $save_cols_n_values, true);
1411
-					if($results){
1409
+					unset($save_cols_n_values[self::_get_primary_key_name(get_class($this))]);
1410
+					$results = $this->get_model()->insert($save_cols_n_values, true);
1411
+					if ($results) {
1412 1412
 						//if successful, set the primary key
1413 1413
 						//but don't use the normal SET method, because it will check if
1414 1414
 						//an item with the same ID exists in the mapper & db, then
1415 1415
 						//will find it in the db (because we just added it) and THAT object
1416 1416
 						//will get added to the mapper before we can add this one!
1417 1417
 						//but if we just avoid using the SET method, all that headache can be avoided
1418
-						$pk_field_name =self::_get_primary_key_name( get_class($this));
1418
+						$pk_field_name = self::_get_primary_key_name(get_class($this));
1419 1419
 						$this->_fields[$pk_field_name] = $results;
1420 1420
 						$this->_clear_cached_property($pk_field_name);
1421
-						$this->get_model()->add_to_entity_map( $this );
1421
+						$this->get_model()->add_to_entity_map($this);
1422 1422
 						$this->_update_cached_related_model_objs_fks();
1423 1423
 					}
1424 1424
 				}
1425
-			}else{//PK is NOT auto-increment
1425
+			} else {//PK is NOT auto-increment
1426 1426
 				//so check if one like it already exists in the db
1427
-				if( $this->get_model()->exists_by_ID( $this->ID() ) ){
1428
-					if( ! $this->in_entity_map() && WP_DEBUG ){
1427
+				if ($this->get_model()->exists_by_ID($this->ID())) {
1428
+					if ( ! $this->in_entity_map() && WP_DEBUG) {
1429 1429
 						throw new EE_Error(
1430 1430
 							sprintf(
1431
-								__( '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' ),
1431
+								__('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'),
1432 1432
 								get_class($this),
1433
-								get_class( $this->get_model() ) . '::instance()->add_to_entity_map()',
1434
-								get_class( $this->get_model() ) . '::instance()->get_one_by_ID()',
1433
+								get_class($this->get_model()).'::instance()->add_to_entity_map()',
1434
+								get_class($this->get_model()).'::instance()->get_one_by_ID()',
1435 1435
 								'<br />'
1436 1436
 							)
1437 1437
 						);
1438 1438
 					}
1439 1439
 					$results = $this->get_model()->update_by_ID($save_cols_n_values, $this->ID());
1440
-				}else{
1440
+				} else {
1441 1441
 					$results = $this->get_model()->insert($save_cols_n_values);
1442 1442
 					$this->_update_cached_related_model_objs_fks();
1443 1443
 				}
1444 1444
 			}
1445
-		}else{//there is NO primary key
1445
+		} else {//there is NO primary key
1446 1446
 			$already_in_db = false;
1447
-			foreach($this->get_model()->unique_indexes() as $index){
1447
+			foreach ($this->get_model()->unique_indexes() as $index) {
1448 1448
 				$uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields());
1449
-				if($this->get_model()->exists(array($uniqueness_where_params))){
1449
+				if ($this->get_model()->exists(array($uniqueness_where_params))) {
1450 1450
 					$already_in_db = true;
1451 1451
 				}
1452 1452
 			}
1453
-			if( $already_in_db ){
1454
-				$combined_pk_fields_n_values = array_intersect_key( $save_cols_n_values, $this->get_model()->get_combined_primary_key_fields() );
1455
-				$results = $this->get_model()->update( $save_cols_n_values,$combined_pk_fields_n_values );
1456
-			}else{
1457
-				$results = $this->get_model()->insert( $save_cols_n_values );
1453
+			if ($already_in_db) {
1454
+				$combined_pk_fields_n_values = array_intersect_key($save_cols_n_values, $this->get_model()->get_combined_primary_key_fields());
1455
+				$results = $this->get_model()->update($save_cols_n_values, $combined_pk_fields_n_values);
1456
+			} else {
1457
+				$results = $this->get_model()->insert($save_cols_n_values);
1458 1458
 			}
1459 1459
 		}
1460 1460
 		//restore the old assumption about values being prepared by the model object
@@ -1467,7 +1467,7 @@  discard block
 block discarded – undo
1467 1467
 		 * @param boolean|int $results if it were updated, TRUE or FALSE; if it were newly inserted
1468 1468
 		 * the new ID (or 0 if an error occurred and it wasn't updated)
1469 1469
 		 */
1470
-		do_action( 'AHEE__EE_Base_Class__save__end', $this, $results );
1470
+		do_action('AHEE__EE_Base_Class__save__end', $this, $results);
1471 1471
 		return $results;
1472 1472
 	}
1473 1473
 
@@ -1479,13 +1479,13 @@  discard block
 block discarded – undo
1479 1479
 	 * 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)
1480 1480
 	 * @return void
1481 1481
 	 */
1482
-	protected function _update_cached_related_model_objs_fks(){
1483
-		foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ){
1484
-			if( $relation_obj instanceof EE_Has_Many_Relation ){
1485
-				foreach( $this->get_all_from_cache( $relation_name ) as $related_model_obj_in_cache) {
1486
-					$fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to( $this->get_model()->get_this_model_name() );
1487
-					$related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID() );
1488
-					if( $related_model_obj_in_cache->ID() ){
1482
+	protected function _update_cached_related_model_objs_fks() {
1483
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
1484
+			if ($relation_obj instanceof EE_Has_Many_Relation) {
1485
+				foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) {
1486
+					$fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to($this->get_model()->get_this_model_name());
1487
+					$related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID());
1488
+					if ($related_model_obj_in_cache->ID()) {
1489 1489
 						$related_model_obj_in_cache->save();
1490 1490
 					}
1491 1491
 				}
@@ -1501,21 +1501,21 @@  discard block
 block discarded – undo
1501 1501
 	 * and this object and properly setup
1502 1502
 	 * @return int ID of new model object on save; 0 on failure+
1503 1503
 	 */
1504
-	public function save_new_cached_related_model_objs(){
1504
+	public function save_new_cached_related_model_objs() {
1505 1505
 		//make sure this has been saved
1506
-		if( ! $this->ID()){
1506
+		if ( ! $this->ID()) {
1507 1507
 			$id = $this->save();
1508
-		}else{
1508
+		} else {
1509 1509
 			$id = $this->ID();
1510 1510
 		}
1511 1511
 		//now save all the NEW cached model objects  (ie they don't exist in the DB)
1512
-		foreach($this->get_model()->relation_settings() as $relationName => $relationObj){
1512
+		foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) {
1513 1513
 
1514 1514
 
1515
-			if($this->_model_relations[$relationName]){
1515
+			if ($this->_model_relations[$relationName]) {
1516 1516
 				//is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation)
1517 1517
 				//or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)?
1518
-				if($relationObj instanceof EE_Belongs_To_Relation){
1518
+				if ($relationObj instanceof EE_Belongs_To_Relation) {
1519 1519
 					//add a relation to that relation type (which saves the appropriate thing in the process)
1520 1520
 					//but ONLY if it DOES NOT exist in the DB
1521 1521
 					/* @var $related_model_obj EE_Base_Class */
@@ -1524,8 +1524,8 @@  discard block
 block discarded – undo
1524 1524
 						$this->_add_relation_to($related_model_obj, $relationName);
1525 1525
 						$related_model_obj->save_new_cached_related_model_objs();
1526 1526
 //					}
1527
-				}else{
1528
-					foreach($this->_model_relations[$relationName] as $related_model_obj){
1527
+				} else {
1528
+					foreach ($this->_model_relations[$relationName] as $related_model_obj) {
1529 1529
 						//add a relation to that relation type (which saves the appropriate thing in the process)
1530 1530
 						//but ONLY if it DOES NOT exist in the DB
1531 1531
 //						if( ! $related_model_obj->ID()){
@@ -1546,8 +1546,8 @@  discard block
 block discarded – undo
1546 1546
 	 * @return \EEM_Base | \EEM_CPT_Base
1547 1547
 	 */
1548 1548
 	public function get_model() {
1549
-		$modelName = self::_get_model_classname( get_class($this) );
1550
-		return self::_get_model_instance_with_name($modelName, $this->_timezone );
1549
+		$modelName = self::_get_model_classname(get_class($this));
1550
+		return self::_get_model_instance_with_name($modelName, $this->_timezone);
1551 1551
 	}
1552 1552
 
1553 1553
 
@@ -1557,10 +1557,10 @@  discard block
 block discarded – undo
1557 1557
 	 * @param $classname
1558 1558
 	 * @return mixed bool|EE_Base_Class|EEM_CPT_Base
1559 1559
 	 */
1560
-	protected static function _get_object_from_entity_mapper($props_n_values, $classname){
1560
+	protected static function _get_object_from_entity_mapper($props_n_values, $classname) {
1561 1561
 		//TODO: will not work for Term_Relationships because they have no PK!
1562
-		$primary_id_ref = self::_get_primary_key_name( $classname );
1563
-		if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) {
1562
+		$primary_id_ref = self::_get_primary_key_name($classname);
1563
+		if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) {
1564 1564
 			$id = $props_n_values[$primary_id_ref];
1565 1565
 			return self::_get_model($classname)->get_from_entity_map($id);
1566 1566
 		}
@@ -1579,35 +1579,35 @@  discard block
 block discarded – undo
1579 1579
 	 *                             	  date_format and the second value is the time format
1580 1580
 	 * @return mixed (EE_Base_Class|bool)
1581 1581
 	 */
1582
-	protected static function _check_for_object( $props_n_values, $classname, $timezone = NULL, $date_formats = array() ) {
1583
-		if( self::_get_model( $classname )->has_primary_key_field()){
1584
-			$primary_id_ref = self::_get_primary_key_name( $classname );
1582
+	protected static function _check_for_object($props_n_values, $classname, $timezone = NULL, $date_formats = array()) {
1583
+		if (self::_get_model($classname)->has_primary_key_field()) {
1584
+			$primary_id_ref = self::_get_primary_key_name($classname);
1585 1585
 
1586
-			if ( array_key_exists( $primary_id_ref, $props_n_values ) && !empty( $props_n_values[$primary_id_ref] ) ) {
1587
-				$existing = self::_get_model( $classname, $timezone )->get_one_by_ID( $props_n_values[$primary_id_ref] );
1588
-			}else{
1586
+			if (array_key_exists($primary_id_ref, $props_n_values) && ! empty($props_n_values[$primary_id_ref])) {
1587
+				$existing = self::_get_model($classname, $timezone)->get_one_by_ID($props_n_values[$primary_id_ref]);
1588
+			} else {
1589 1589
 				$existing = null;
1590 1590
 			}
1591
-		}elseif( self::_get_model( $classname, $timezone )->has_all_combined_primary_key_fields(  $props_n_values ) ){
1591
+		}elseif (self::_get_model($classname, $timezone)->has_all_combined_primary_key_fields($props_n_values)) {
1592 1592
 			//no primary key on this model, but there's still a matching item in the DB
1593
-				$existing = self::_get_model($classname, $timezone)->get_one_by_ID( self::_get_model($classname, $timezone)->get_index_primary_key_string( $props_n_values ) );
1594
-		}else{
1593
+				$existing = self::_get_model($classname, $timezone)->get_one_by_ID(self::_get_model($classname, $timezone)->get_index_primary_key_string($props_n_values));
1594
+		} else {
1595 1595
 			$existing = null;
1596 1596
 		}
1597
-		if ( $existing ) {
1597
+		if ($existing) {
1598 1598
 
1599 1599
 			//set date formats if present before setting values
1600
-			if ( ! empty( $date_formats ) && is_array( $date_formats ) ) {
1601
-				$existing->set_date_format( $date_formats[0] );
1602
-				$existing->set_time_format( $date_formats[1] );
1600
+			if ( ! empty($date_formats) && is_array($date_formats)) {
1601
+				$existing->set_date_format($date_formats[0]);
1602
+				$existing->set_time_format($date_formats[1]);
1603 1603
 			} else {
1604 1604
 				//set default formats for date and time
1605
-				$existing->set_date_format( get_option( 'date_format' ) );
1606
-				$existing->set_time_format( get_option( 'time_format' ) );
1605
+				$existing->set_date_format(get_option('date_format'));
1606
+				$existing->set_time_format(get_option('time_format'));
1607 1607
 			}
1608 1608
 
1609
-			foreach ( $props_n_values as $property => $field_value ) {
1610
-				$existing->set( $property, $field_value );
1609
+			foreach ($props_n_values as $property => $field_value) {
1610
+				$existing->set($property, $field_value);
1611 1611
 			}
1612 1612
 			return $existing;
1613 1613
 		} else {
@@ -1625,13 +1625,13 @@  discard block
 block discarded – undo
1625 1625
 	 * @throws EE_Error
1626 1626
 	 * @return EEM_Base
1627 1627
 	 */
1628
-	protected static function  _get_model( $classname, $timezone = NULL ){
1628
+	protected static function  _get_model($classname, $timezone = NULL) {
1629 1629
 		//find model for this class
1630
-		if( ! $classname ){
1631
-			throw new EE_Error(sprintf(__("What were you thinking calling _get_model(%s)?? You need to specify the class name", "event_espresso"),$classname));
1630
+		if ( ! $classname) {
1631
+			throw new EE_Error(sprintf(__("What were you thinking calling _get_model(%s)?? You need to specify the class name", "event_espresso"), $classname));
1632 1632
 		}
1633
-		$modelName=self::_get_model_classname($classname);
1634
-		return self::_get_model_instance_with_name($modelName, $timezone );
1633
+		$modelName = self::_get_model_classname($classname);
1634
+		return self::_get_model_instance_with_name($modelName, $timezone);
1635 1635
 	}
1636 1636
 
1637 1637
 
@@ -1642,10 +1642,10 @@  discard block
 block discarded – undo
1642 1642
 	 * @param null   $timezone
1643 1643
 	 * @return EEM_Base
1644 1644
 	 */
1645
-	protected static function _get_model_instance_with_name($model_classname, $timezone = NULL){
1646
-		$model_classname = str_replace( 'EEM_', '', $model_classname );
1647
-		$model = EE_Registry::instance()->load_model( $model_classname );
1648
-		$model->set_timezone( $timezone );
1645
+	protected static function _get_model_instance_with_name($model_classname, $timezone = NULL) {
1646
+		$model_classname = str_replace('EEM_', '', $model_classname);
1647
+		$model = EE_Registry::instance()->load_model($model_classname);
1648
+		$model->set_timezone($timezone);
1649 1649
 		return $model;
1650 1650
 	}
1651 1651
 
@@ -1657,10 +1657,10 @@  discard block
 block discarded – undo
1657 1657
 	 * @param null $model_name
1658 1658
 	 * @return string like EEM_Attendee
1659 1659
 	 */
1660
-	private static function _get_model_classname( $model_name = null){
1661
-		if(strpos($model_name,"EE_")===0){
1662
-			$model_classname=str_replace("EE_","EEM_",$model_name);
1663
-		}else{
1660
+	private static function _get_model_classname($model_name = null) {
1661
+		if (strpos($model_name, "EE_") === 0) {
1662
+			$model_classname = str_replace("EE_", "EEM_", $model_name);
1663
+		} else {
1664 1664
 			$model_classname = "EEM_".$model_name;
1665 1665
 		}
1666 1666
 		return $model_classname;
@@ -1674,11 +1674,11 @@  discard block
 block discarded – undo
1674 1674
 	 * @throws EE_Error
1675 1675
 	 * @return string
1676 1676
 	 */
1677
-	protected static function _get_primary_key_name( $classname = NULL ){
1678
-		if( ! $classname){
1679
-			throw new EE_Error(sprintf(__("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"),$classname));
1677
+	protected static function _get_primary_key_name($classname = NULL) {
1678
+		if ( ! $classname) {
1679
+			throw new EE_Error(sprintf(__("What were you thinking calling _get_primary_key_name(%s)", "event_espresso"), $classname));
1680 1680
 		}
1681
-		return self::_get_model( $classname )->get_primary_key_field()->get_name();
1681
+		return self::_get_model($classname)->get_primary_key_field()->get_name();
1682 1682
 	}
1683 1683
 
1684 1684
 
@@ -1690,12 +1690,12 @@  discard block
 block discarded – undo
1690 1690
 	 * Usually defaults for integer primary keys are 0; string primary keys are usually NULL).
1691 1691
 	 * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string
1692 1692
 	 */
1693
-	public function ID(){
1693
+	public function ID() {
1694 1694
 		//now that we know the name of the variable, use a variable variable to get its value and return its
1695
-		if( $this->get_model()->has_primary_key_field() ) {
1696
-			return $this->_fields[self::_get_primary_key_name( get_class($this) )];
1697
-		}else{
1698
-			return $this->get_model()->get_index_primary_key_string( $this->_fields );
1695
+		if ($this->get_model()->has_primary_key_field()) {
1696
+			return $this->_fields[self::_get_primary_key_name(get_class($this))];
1697
+		} else {
1698
+			return $this->get_model()->get_index_primary_key_string($this->_fields);
1699 1699
 		}
1700 1700
 	}
1701 1701
 
@@ -1713,38 +1713,38 @@  discard block
 block discarded – undo
1713 1713
 	 * @throws EE_Error
1714 1714
 	 * @return EE_Base_Class the object the relation was added to
1715 1715
 	 */
1716
-	public function _add_relation_to( $otherObjectModelObjectOrID,$relationName, $extra_join_model_fields_n_values = array(), $cache_id = NULL ){
1716
+	public function _add_relation_to($otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values = array(), $cache_id = NULL) {
1717 1717
 		//if this thing exists in the DB, save the relation to the DB
1718
-		if( $this->ID() ){
1719
-			$otherObject = $this->get_model()->add_relationship_to( $this, $otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values );
1718
+		if ($this->ID()) {
1719
+			$otherObject = $this->get_model()->add_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $extra_join_model_fields_n_values);
1720 1720
 			//clear cache so future get_many_related and get_first_related() return new results.
1721
-			$this->clear_cache( $relationName, $otherObject, TRUE );
1722
-                        if( $otherObject instanceof EE_Base_Class ) {
1723
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1721
+			$this->clear_cache($relationName, $otherObject, TRUE);
1722
+                        if ($otherObject instanceof EE_Base_Class) {
1723
+                            $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
1724 1724
                         }
1725 1725
 		} else {
1726 1726
 			//this thing doesn't exist in the DB,  so just cache it
1727
-			if( ! $otherObjectModelObjectOrID instanceof EE_Base_Class){
1728
-				throw new EE_Error( sprintf(
1729
-					__( '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' ),
1727
+			if ( ! $otherObjectModelObjectOrID instanceof EE_Base_Class) {
1728
+				throw new EE_Error(sprintf(
1729
+					__('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'),
1730 1730
 					$otherObjectModelObjectOrID,
1731
-					get_class( $this )
1731
+					get_class($this)
1732 1732
 				));
1733 1733
 			} else {
1734 1734
 				$otherObject = $otherObjectModelObjectOrID;
1735 1735
 			}
1736
-			$this->cache( $relationName, $otherObjectModelObjectOrID, $cache_id );
1736
+			$this->cache($relationName, $otherObjectModelObjectOrID, $cache_id);
1737 1737
 		}
1738
-                if( $otherObject instanceof EE_Base_Class ) {
1738
+                if ($otherObject instanceof EE_Base_Class) {
1739 1739
                     //fix the reciprocal relation too
1740
-                    if( $otherObject->ID() ) {
1740
+                    if ($otherObject->ID()) {
1741 1741
                             //its saved so assumed relations exist in the DB, so we can just
1742 1742
                             //clear the cache so future queries use the updated info in the DB
1743
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), null, true );
1743
+                            $otherObject->clear_cache($this->get_model()->get_this_model_name(), null, true);
1744 1744
                     } else {
1745 1745
 
1746 1746
                             //it's not saved, so it caches relations like this
1747
-                            $otherObject->cache( $this->get_model()->get_this_model_name(), $this );
1747
+                            $otherObject->cache($this->get_model()->get_this_model_name(), $this);
1748 1748
                     }
1749 1749
                 }
1750 1750
 		return $otherObject;
@@ -1767,17 +1767,17 @@  discard block
 block discarded – undo
1767 1767
 	 * 				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.
1768 1768
 	 * @return EE_Base_Class the relation was removed from
1769 1769
 	 */
1770
-	public function _remove_relation_to($otherObjectModelObjectOrID,$relationName, $where_query = array() ){
1771
-		if ( $this->ID() ) {
1770
+	public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array()) {
1771
+		if ($this->ID()) {
1772 1772
 			//if this exists in the DB, save the relation change to the DB too
1773
-			$otherObject = $this->get_model()->remove_relationship_to( $this, $otherObjectModelObjectOrID, $relationName, $where_query );
1774
-			$this->clear_cache( $relationName, $otherObject );
1773
+			$otherObject = $this->get_model()->remove_relationship_to($this, $otherObjectModelObjectOrID, $relationName, $where_query);
1774
+			$this->clear_cache($relationName, $otherObject);
1775 1775
 		} else {
1776 1776
 			//this doesn't exist in the DB, just remove it from the cache
1777
-			$otherObject = $this->clear_cache( $relationName, $otherObjectModelObjectOrID );
1777
+			$otherObject = $this->clear_cache($relationName, $otherObjectModelObjectOrID);
1778 1778
 		}
1779
-                if( $otherObject instanceof EE_Base_Class ) {
1780
-                    $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1779
+                if ($otherObject instanceof EE_Base_Class) {
1780
+                    $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
1781 1781
                 }
1782 1782
 		return $otherObject;
1783 1783
 	}
@@ -1788,18 +1788,18 @@  discard block
 block discarded – undo
1788 1788
 	 * @param array $where_query_params like EEM_Base::get_all's $query_params[0] (where conditions)
1789 1789
 	 * @return EE_Base_Class
1790 1790
 	 */
1791
-	public function _remove_relations($relationName,$where_query_params = array()){
1792
-		if ( $this->ID() ) {
1791
+	public function _remove_relations($relationName, $where_query_params = array()) {
1792
+		if ($this->ID()) {
1793 1793
 			//if this exists in the DB, save the relation change to the DB too
1794
-			$otherObjects = $this->get_model()->remove_relations( $this, $relationName, $where_query_params );
1795
-			$this->clear_cache( $relationName, null, true );
1794
+			$otherObjects = $this->get_model()->remove_relations($this, $relationName, $where_query_params);
1795
+			$this->clear_cache($relationName, null, true);
1796 1796
 		} else {
1797 1797
 			//this doesn't exist in the DB, just remove it from the cache
1798
-			$otherObjects = $this->clear_cache( $relationName, null, true );
1798
+			$otherObjects = $this->clear_cache($relationName, null, true);
1799 1799
 		}
1800
-                if( is_array( $otherObjects ) ) {
1801
-                    foreach ( $otherObjects as $otherObject ) {
1802
-                            $otherObject->clear_cache( $this->get_model()->get_this_model_name(), $this );
1800
+                if (is_array($otherObjects)) {
1801
+                    foreach ($otherObjects as $otherObject) {
1802
+                            $otherObject->clear_cache($this->get_model()->get_this_model_name(), $this);
1803 1803
                     }
1804 1804
                 }
1805 1805
 		return $otherObjects;
@@ -1817,26 +1817,26 @@  discard block
 block discarded – undo
1817 1817
 	 * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary keys
1818 1818
 	 * or might not be saved yet. Consider using EEM_Base::get_IDs() on these results if you want IDs
1819 1819
 	 */
1820
-	public function get_many_related($relationName,$query_params = array()){
1821
-		if($this->ID()){//this exists in the DB, so get the related things from either the cache or the DB
1820
+	public function get_many_related($relationName, $query_params = array()) {
1821
+		if ($this->ID()) {//this exists in the DB, so get the related things from either the cache or the DB
1822 1822
 			//if there are query parameters, forget about caching the related model objects.
1823
-			if( $query_params ){
1823
+			if ($query_params) {
1824 1824
 				$related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
1825
-			}else{
1825
+			} else {
1826 1826
 				//did we already cache the result of this query?
1827 1827
 				$cached_results = $this->get_all_from_cache($relationName);
1828
-				if ( ! $cached_results ){
1828
+				if ( ! $cached_results) {
1829 1829
 					$related_model_objects = $this->get_model()->get_all_related($this, $relationName, $query_params);
1830 1830
 					//if no query parameters were passed, then we got all the related model objects
1831 1831
 					//for that relation. We can cache them then.
1832
-					foreach($related_model_objects as $related_model_object){
1832
+					foreach ($related_model_objects as $related_model_object) {
1833 1833
 						$this->cache($relationName, $related_model_object);
1834 1834
 					}
1835
-				}else{
1835
+				} else {
1836 1836
 					$related_model_objects = $cached_results;
1837 1837
 				}
1838 1838
 			}
1839
-		}else{//this doesn't exist itn eh DB, so just get the related things from the cache
1839
+		} else {//this doesn't exist itn eh DB, so just get the related things from the cache
1840 1840
 			$related_model_objects = $this->get_all_from_cache($relationName);
1841 1841
 		}
1842 1842
 		return $related_model_objects;
@@ -1853,8 +1853,8 @@  discard block
 block discarded – undo
1853 1853
 	 * @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;
1854 1854
 	 * @return int
1855 1855
 	 */
1856
-	public function count_related($relation_name, $query_params =array(),$field_to_count = NULL, $distinct = FALSE){
1857
-		return $this->get_model()->count_related($this,$relation_name,$query_params,$field_to_count,$distinct);
1856
+	public function count_related($relation_name, $query_params = array(), $field_to_count = NULL, $distinct = FALSE) {
1857
+		return $this->get_model()->count_related($this, $relation_name, $query_params, $field_to_count, $distinct);
1858 1858
 	}
1859 1859
 
1860 1860
 
@@ -1868,7 +1868,7 @@  discard block
 block discarded – undo
1868 1868
 	 * 						By default, uses primary key (which doesn't make much sense, so you should probably change it)
1869 1869
 	 * @return int
1870 1870
 	 */
1871
-	public function sum_related($relation_name, $query_params = array(), $field_to_sum = null){
1871
+	public function sum_related($relation_name, $query_params = array(), $field_to_sum = null) {
1872 1872
 		return $this->get_model()->sum_related($this, $relation_name, $query_params, $field_to_sum);
1873 1873
 	}
1874 1874
 
@@ -1880,34 +1880,34 @@  discard block
 block discarded – undo
1880 1880
 	 * @param array  $query_params  like EEM_Base::get_all
1881 1881
 	 * @return EE_Base_Class (not an array, a single object)
1882 1882
 	 */
1883
-	public function get_first_related($relationName,$query_params = array()){
1884
-		if($this->ID()){//this exists in the DB, get from the cache OR the DB
1883
+	public function get_first_related($relationName, $query_params = array()) {
1884
+		if ($this->ID()) {//this exists in the DB, get from the cache OR the DB
1885 1885
 
1886 1886
 			//if they've provided some query parameters, don't bother trying to cache the result
1887 1887
 			//also make sure we're not caching the result of get_first_related
1888 1888
 			//on a relation which should have an array of objects (because the cache might have an array of objects)
1889
-			if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){
1890
-				$related_model_object =  $this->get_model()->get_first_related($this, $relationName, $query_params);
1891
-			}else{
1889
+			if ($query_params || ! $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) {
1890
+				$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
1891
+			} else {
1892 1892
 				//first, check if we've already cached the result of this query
1893 1893
 				$cached_result = $this->get_one_from_cache($relationName);
1894
-				if ( ! $cached_result ){
1894
+				if ( ! $cached_result) {
1895 1895
 
1896 1896
 					$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
1897
-					$this->cache($relationName,$related_model_object);
1898
-				}else{
1897
+					$this->cache($relationName, $related_model_object);
1898
+				} else {
1899 1899
 					$related_model_object = $cached_result;
1900 1900
 				}
1901 1901
 			}
1902
-		}else{
1902
+		} else {
1903 1903
 			//this doesn't exist in the Db, but maybe the relation is of type belongs to, and so the related thing might
1904
-			if( $this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation){
1905
-				$related_model_object =  $this->get_model()->get_first_related($this, $relationName, $query_params);
1906
-			}else{
1904
+			if ($this->get_model()->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) {
1905
+				$related_model_object = $this->get_model()->get_first_related($this, $relationName, $query_params);
1906
+			} else {
1907 1907
 				$related_model_object = null;
1908 1908
 			}
1909 1909
 			//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
1910
-			if( ! $related_model_object){
1910
+			if ( ! $related_model_object) {
1911 1911
 				$related_model_object = $this->get_one_from_cache($relationName);
1912 1912
 			}
1913 1913
 
@@ -1926,12 +1926,12 @@  discard block
 block discarded – undo
1926 1926
 	 * @param array $query_params like EEM_Base::get_all's
1927 1927
 	 * @return int how many deleted
1928 1928
 	 */
1929
-	public function delete_related($relationName,$query_params = array()){
1930
-		if($this->ID()){
1931
-			$count =  $this->get_model()->delete_related($this, $relationName, $query_params);
1932
-		}else{
1929
+	public function delete_related($relationName, $query_params = array()) {
1930
+		if ($this->ID()) {
1931
+			$count = $this->get_model()->delete_related($this, $relationName, $query_params);
1932
+		} else {
1933 1933
 			$count = count($this->get_all_from_cache($relationName));
1934
-			$this->clear_cache($relationName,NULL,TRUE);
1934
+			$this->clear_cache($relationName, NULL, TRUE);
1935 1935
 		}
1936 1936
 		return $count;
1937 1937
 	}
@@ -1946,13 +1946,13 @@  discard block
 block discarded – undo
1946 1946
 	 * @param array $query_params like EEM_Base::get_all's
1947 1947
 	 * @return int how many deleted (including those soft deleted)
1948 1948
 	 */
1949
-	public function delete_related_permanently($relationName,$query_params = array()){
1950
-		if($this->ID()){
1951
-			$count =  $this->get_model()->delete_related_permanently($this, $relationName, $query_params);
1952
-		}else{
1949
+	public function delete_related_permanently($relationName, $query_params = array()) {
1950
+		if ($this->ID()) {
1951
+			$count = $this->get_model()->delete_related_permanently($this, $relationName, $query_params);
1952
+		} else {
1953 1953
 			$count = count($this->get_all_from_cache($relationName));
1954 1954
 		}
1955
-		$this->clear_cache($relationName,NULL,TRUE);
1955
+		$this->clear_cache($relationName, NULL, TRUE);
1956 1956
 		return $count;
1957 1957
 	}
1958 1958
 
@@ -1968,7 +1968,7 @@  discard block
 block discarded – undo
1968 1968
 	 * @param  string $field_name property to check
1969 1969
 	 * @return bool            				  TRUE if existing,FALSE if not.
1970 1970
 	 */
1971
-	public function is_set( $field_name ) {
1971
+	public function is_set($field_name) {
1972 1972
 		return isset($this->_fields[$field_name]);
1973 1973
 	}
1974 1974
 
@@ -1980,12 +1980,12 @@  discard block
 block discarded – undo
1980 1980
 	 * @throws EE_Error
1981 1981
 	 * @return bool                              TRUE if existing, throw EE_Error if not.
1982 1982
 	 */
1983
-	protected function _property_exists( $properties ) {
1983
+	protected function _property_exists($properties) {
1984 1984
 
1985
-		foreach ( (array) $properties as $property_name ) {
1985
+		foreach ((array) $properties as $property_name) {
1986 1986
 			//first make sure this property exists
1987
-			if ( ! $this->_fields[ $property_name ] )
1988
-				throw new EE_Error( sprintf( __('Trying to retrieve a non-existent property (%s).  Double check the spelling please', 'event_espresso'), $property_name ) );
1987
+			if ( ! $this->_fields[$property_name])
1988
+				throw new EE_Error(sprintf(__('Trying to retrieve a non-existent property (%s).  Double check the spelling please', 'event_espresso'), $property_name));
1989 1989
 		}
1990 1990
 
1991 1991
 		return TRUE;
@@ -2002,7 +2002,7 @@  discard block
 block discarded – undo
2002 2002
 		$fields = $this->get_model()->field_settings(FALSE);
2003 2003
 		$properties = array();
2004 2004
 		//remove prepended underscore
2005
-		foreach ( $fields as $field_name => $settings ) {
2005
+		foreach ($fields as $field_name => $settings) {
2006 2006
 			$properties[$field_name] = $this->get($field_name);
2007 2007
 		}
2008 2008
 		return $properties;
@@ -2032,14 +2032,14 @@  discard block
 block discarded – undo
2032 2032
 	 * @throws EE_Error
2033 2033
 	 * @return mixed whatever the plugin which calls add_filter decides
2034 2034
 	 */
2035
-	public function __call($methodName,$args){
2036
-		$className=get_class($this);
2037
-		$tagName="FHEE__{$className}__{$methodName}";
2038
-		if(!has_filter($tagName)){
2039
-			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"),
2040
-										$methodName,$className,$tagName));
2035
+	public function __call($methodName, $args) {
2036
+		$className = get_class($this);
2037
+		$tagName = "FHEE__{$className}__{$methodName}";
2038
+		if ( ! has_filter($tagName)) {
2039
+			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"),
2040
+										$methodName, $className, $tagName));
2041 2041
 		}
2042
-		return apply_filters($tagName,null,$this,$args);
2042
+		return apply_filters($tagName, null, $this, $args);
2043 2043
 	}
2044 2044
 
2045 2045
 
@@ -2054,22 +2054,22 @@  discard block
 block discarded – undo
2054 2054
 	 * @return int records updated (or BOOLEAN if we actually ended up inserting the extra meta row)
2055 2055
 	 * NOTE: if the values haven't changed, returns 0
2056 2056
 	 */
2057
-	public function update_extra_meta($meta_key,$meta_value,$previous_value = NULL){
2058
-		$query_params  = array(array(
2057
+	public function update_extra_meta($meta_key, $meta_value, $previous_value = NULL) {
2058
+		$query_params = array(array(
2059 2059
 			'EXM_key'=>$meta_key,
2060 2060
 			'OBJ_ID'=>$this->ID(),
2061 2061
 			'EXM_type'=>$this->get_model()->get_this_model_name()));
2062
-		if($previous_value !== NULL){
2062
+		if ($previous_value !== NULL) {
2063 2063
 			$query_params[0]['EXM_value'] = $meta_value;
2064 2064
 		}
2065 2065
 		$existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params);
2066
-		if( ! $existing_rows_like_that){
2066
+		if ( ! $existing_rows_like_that) {
2067 2067
 			return $this->add_extra_meta($meta_key, $meta_value);
2068
-		}else{
2069
-			foreach( $existing_rows_like_that as $existing_row){
2070
-				$existing_row->save( array( 'EXM_value' => $meta_value ) );
2068
+		} else {
2069
+			foreach ($existing_rows_like_that as $existing_row) {
2070
+				$existing_row->save(array('EXM_value' => $meta_value));
2071 2071
 			}
2072
-			return count( $existing_rows_like_that );
2072
+			return count($existing_rows_like_that);
2073 2073
 		}
2074 2074
 	}
2075 2075
 
@@ -2082,10 +2082,10 @@  discard block
 block discarded – undo
2082 2082
 	 * @param boolean $unique
2083 2083
 	 * @return boolean
2084 2084
 	 */
2085
-	public function add_extra_meta($meta_key,$meta_value,$unique = false){
2086
-		if($unique){
2087
-			$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)))));
2088
-			if($existing_extra_meta){
2085
+	public function add_extra_meta($meta_key, $meta_value, $unique = false) {
2086
+		if ($unique) {
2087
+			$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)))));
2088
+			if ($existing_extra_meta) {
2089 2089
 				return false;
2090 2090
 			}
2091 2091
 		}
@@ -2105,12 +2105,12 @@  discard block
 block discarded – undo
2105 2105
 	 * @param string $meta_value
2106 2106
 	 * @return int number of extra meta rows deleted
2107 2107
 	 */
2108
-	public function delete_extra_meta($meta_key,$meta_value = NULL){
2109
-		$query_params  = array(array(
2108
+	public function delete_extra_meta($meta_key, $meta_value = NULL) {
2109
+		$query_params = array(array(
2110 2110
 			'EXM_key'=>$meta_key,
2111 2111
 			'OBJ_ID'=>$this->ID(),
2112 2112
 			'EXM_type'=>$this->get_model()->get_this_model_name()));
2113
-		if($meta_value !== NULL){
2113
+		if ($meta_value !== NULL) {
2114 2114
 			$query_params[0]['EXM_value'] = $meta_value;
2115 2115
 		}
2116 2116
 		$count_deleted = EEM_Extra_Meta::instance()->delete($query_params);
@@ -2126,25 +2126,25 @@  discard block
 block discarded – undo
2126 2126
 	 * @param mixed $default if we don't find anything, what should we return?
2127 2127
 	 * @return mixed single value if $single; array if ! $single
2128 2128
 	 */
2129
-	public function get_extra_meta($meta_key,$single = FALSE,$default = NULL){
2130
-		if($single){
2131
-			$result = $this->get_first_related('Extra_Meta',array(array('EXM_key'=>$meta_key)));
2132
-			if ( $result instanceof EE_Extra_Meta ){
2129
+	public function get_extra_meta($meta_key, $single = FALSE, $default = NULL) {
2130
+		if ($single) {
2131
+			$result = $this->get_first_related('Extra_Meta', array(array('EXM_key'=>$meta_key)));
2132
+			if ($result instanceof EE_Extra_Meta) {
2133 2133
 				return $result->value();
2134
-			}else{
2134
+			} else {
2135 2135
 				return $default;
2136 2136
 			}
2137
-		}else{
2138
-			$results =  $this->get_many_related('Extra_Meta',array(array('EXM_key'=>$meta_key)));
2139
-			if($results){
2137
+		} else {
2138
+			$results = $this->get_many_related('Extra_Meta', array(array('EXM_key'=>$meta_key)));
2139
+			if ($results) {
2140 2140
 				$values = array();
2141
-				foreach($results as $result){
2142
-					if ( $result instanceof EE_Extra_Meta ){
2141
+				foreach ($results as $result) {
2142
+					if ($result instanceof EE_Extra_Meta) {
2143 2143
 						$values[$result->ID()] = $result->value();
2144 2144
 					}
2145 2145
 				}
2146 2146
 				return $values;
2147
-			}else{
2147
+			} else {
2148 2148
 				return $default;
2149 2149
 			}
2150 2150
 		}
@@ -2161,20 +2161,20 @@  discard block
 block discarded – undo
2161 2161
 	 * @param boolean $one_of_each_key
2162 2162
 	 * @return array
2163 2163
 	 */
2164
-	public function all_extra_meta_array($one_of_each_key = true){
2164
+	public function all_extra_meta_array($one_of_each_key = true) {
2165 2165
 		$return_array = array();
2166
-		if($one_of_each_key){
2166
+		if ($one_of_each_key) {
2167 2167
 			$extra_meta_objs = $this->get_many_related('Extra_Meta', array('group_by'=>'EXM_key'));
2168
-			foreach($extra_meta_objs as $extra_meta_obj){
2169
-				if ( $extra_meta_obj instanceof EE_Extra_Meta ) {
2168
+			foreach ($extra_meta_objs as $extra_meta_obj) {
2169
+				if ($extra_meta_obj instanceof EE_Extra_Meta) {
2170 2170
 					$return_array[$extra_meta_obj->key()] = $extra_meta_obj->value();
2171 2171
 				}
2172 2172
 			}
2173
-		}else{
2173
+		} else {
2174 2174
 			$extra_meta_objs = $this->get_many_related('Extra_Meta');
2175
-			foreach($extra_meta_objs as $extra_meta_obj){
2176
-				if ( $extra_meta_obj instanceof EE_Extra_Meta ) {
2177
-					if( ! isset($return_array[$extra_meta_obj->key()])){
2175
+			foreach ($extra_meta_objs as $extra_meta_obj) {
2176
+				if ($extra_meta_obj instanceof EE_Extra_Meta) {
2177
+					if ( ! isset($return_array[$extra_meta_obj->key()])) {
2178 2178
 						$return_array[$extra_meta_obj->key()] = array();
2179 2179
 					}
2180 2180
 					$return_array[$extra_meta_obj->key()][$extra_meta_obj->ID()] = $extra_meta_obj->value();
@@ -2187,19 +2187,19 @@  discard block
 block discarded – undo
2187 2187
 	 * Gets a pretty nice displayable nice for this model object. Often overridden
2188 2188
 	 * @return string
2189 2189
 	 */
2190
-	public function name(){
2190
+	public function name() {
2191 2191
 		//find a field that's not a text field
2192 2192
 		$field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base');
2193
-		if($field_we_can_use){
2193
+		if ($field_we_can_use) {
2194 2194
 			return $this->get($field_we_can_use->get_name());
2195
-		}else{
2195
+		} else {
2196 2196
 			$first_few_properties = $this->model_field_array();
2197
-			$first_few_properties = array_slice($first_few_properties,0,3);
2197
+			$first_few_properties = array_slice($first_few_properties, 0, 3);
2198 2198
 			$name_parts = array();
2199
-			foreach( $first_few_properties as $name=> $value ){
2199
+			foreach ($first_few_properties as $name=> $value) {
2200 2200
 				$name_parts[] = "$name:$value";
2201 2201
 			}
2202
-			return implode(",",$name_parts);
2202
+			return implode(",", $name_parts);
2203 2203
 		}
2204 2204
 	}
2205 2205
 
@@ -2208,11 +2208,11 @@  discard block
 block discarded – undo
2208 2208
 	 * Checks if this model object has been proven to already be in the entity map
2209 2209
 	 * @return boolean
2210 2210
 	 */
2211
-	public function in_entity_map(){
2212
-		if( $this->ID() && $this->get_model()->get_from_entity_map( $this->ID() ) === $this ) {
2211
+	public function in_entity_map() {
2212
+		if ($this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this) {
2213 2213
 			//well, if we looked, did we find it in the entity map?
2214 2214
 			return TRUE;
2215
-		}else{
2215
+		} else {
2216 2216
 			return FALSE;
2217 2217
 		}
2218 2218
 	}
@@ -2223,21 +2223,21 @@  discard block
 block discarded – undo
2223 2223
 	 * @throws EE_Error if this model object isn't in the entity mapper (because then you should
2224 2224
 	 * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE
2225 2225
 	 */
2226
-	public function refresh_from_db(){
2227
-		if( $this->ID() && $this->in_entity_map() ){
2228
-			$this->get_model()->refresh_entity_map_from_db( $this->ID() );
2229
-		}else{
2226
+	public function refresh_from_db() {
2227
+		if ($this->ID() && $this->in_entity_map()) {
2228
+			$this->get_model()->refresh_entity_map_from_db($this->ID());
2229
+		} else {
2230 2230
 			//if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database)
2231 2231
 			//if it has an ID but it's not in the map, and you're asking me to refresh it
2232 2232
 			//that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's
2233 2233
 			//absolutely nothing in it for this ID
2234
-			if( WP_DEBUG ) {
2234
+			if (WP_DEBUG) {
2235 2235
 				throw new EE_Error(
2236 2236
 					sprintf(
2237
-						__( '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' ),
2237
+						__('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'),
2238 2238
 						$this->ID(),
2239
-						get_class( $this->get_model() ) . '::instance()->add_to_entity_map()',
2240
-						get_class( $this->get_model() ) . '::instance()->refresh_entity_map()'
2239
+						get_class($this->get_model()).'::instance()->add_to_entity_map()',
2240
+						get_class($this->get_model()).'::instance()->refresh_entity_map()'
2241 2241
 					)
2242 2242
 				);
2243 2243
 			}
@@ -2249,8 +2249,8 @@  discard block
 block discarded – undo
2249 2249
 	 * (probably a bad assumption they have made, oh well)
2250 2250
 	 * @return string
2251 2251
 	 */
2252
-	public function __toString(){
2253
-		return sprintf( '%s (%s)', $this->name(), $this->ID() );
2252
+	public function __toString() {
2253
+		return sprintf('%s (%s)', $this->name(), $this->ID());
2254 2254
 	}
2255 2255
 
2256 2256
 	/**
@@ -2282,16 +2282,16 @@  discard block
 block discarded – undo
2282 2282
 	 * @return array
2283 2283
 	 */
2284 2284
 	public function __sleep() {
2285
-		foreach( $this->get_model()->relation_settings() as $relation_name => $relation_obj ) {
2286
-			if( $relation_obj instanceof EE_Belongs_To_Relation ) {
2287
-				$classname = 'EE_' . $this->get_model()->get_this_model_name();
2288
-				if( $this->get_one_from_cache( $relation_name ) instanceof $classname &&
2289
-						$this->get_one_from_cache( $relation_name )->ID() ) {
2290
-					$this->clear_cache( $relation_name, $this->get_one_from_cache( $relation_name )->ID() );
2285
+		foreach ($this->get_model()->relation_settings() as $relation_name => $relation_obj) {
2286
+			if ($relation_obj instanceof EE_Belongs_To_Relation) {
2287
+				$classname = 'EE_'.$this->get_model()->get_this_model_name();
2288
+				if ($this->get_one_from_cache($relation_name) instanceof $classname &&
2289
+						$this->get_one_from_cache($relation_name)->ID()) {
2290
+					$this->clear_cache($relation_name, $this->get_one_from_cache($relation_name)->ID());
2291 2291
 				}
2292 2292
 			}
2293 2293
 		}
2294
-		return array_keys( get_object_vars( $this ) );
2294
+		return array_keys(get_object_vars($this));
2295 2295
 	}
2296 2296
 
2297 2297
 
Please login to merge, or discard this patch.
Doc Comments   +15 added lines, -14 removed lines patch added patch discarded remove patch
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
 	/**
914 914
 	 * This method simply returns the RAW unprocessed value for the given property in this class
915 915
 	 * @param  string $field_name A valid fieldname
916
-	 * @return mixed              Whatever the raw value stored on the property is.
916
+	 * @return integer|null              Whatever the raw value stored on the property is.
917 917
 	 * @throws EE_Error if fieldSettings is misconfigured or the field doesn't exist.
918 918
 	 */
919 919
 	public function get_raw($field_name) {
@@ -987,11 +987,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 ) {
@@ -1233,6 +1233,7 @@  discard block
 block discarded – undo
1233 1233
 	 * @param mixed (array|string) $args       This is the arguments that will be passed to the callback.
1234 1234
 	 * @param string               $prepend    You can include something to prepend on the timestamp
1235 1235
 	 * @param string               $append     You can include something to append on the timestamp
1236
+	 * @param string $args
1236 1237
 	 * @throws EE_Error
1237 1238
 	 * @return string timestamp
1238 1239
 	 */
@@ -1537,7 +1538,7 @@  discard block
 block discarded – undo
1537 1538
 
1538 1539
 	/**
1539 1540
 	 * for getting a model while instantiated.
1540
-	 * @return \EEM_Base | \EEM_CPT_Base
1541
+	 * @return boolean | \EEM_CPT_Base
1541 1542
 	 */
1542 1543
 	public function get_model() {
1543 1544
 		$modelName = self::_get_model_classname( get_class($this) );
@@ -1568,7 +1569,7 @@  discard block
 block discarded – undo
1568 1569
 	 * 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.
1569 1570
 	 * @param  array  $props_n_values incoming array of properties and their values
1570 1571
 	 * @param  string $classname      the classname of the child class
1571
-	 * @param null    $timezone
1572
+	 * @param string|null    $timezone
1572 1573
 	 * @param array   $date_formats   incoming date_formats in an array where the first value is the
1573 1574
 	 *                             	  date_format and the second value is the time format
1574 1575
 	 * @return mixed (EE_Base_Class|bool)
@@ -1617,7 +1618,7 @@  discard block
 block discarded – undo
1617 1618
 	 * @param      $classname
1618 1619
 	 * @param null $timezone
1619 1620
 	 * @throws EE_Error
1620
-	 * @return EEM_Base
1621
+	 * @return boolean
1621 1622
 	 */
1622 1623
 	protected static function  _get_model( $classname, $timezone = NULL ){
1623 1624
 		//find model for this class
@@ -1633,8 +1634,8 @@  discard block
 block discarded – undo
1633 1634
 	/**
1634 1635
 	 * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee)
1635 1636
 	 * @param string $model_classname
1636
-	 * @param null   $timezone
1637
-	 * @return EEM_Base
1637
+	 * @param string|null   $timezone
1638
+	 * @return boolean
1638 1639
 	 */
1639 1640
 	protected static function _get_model_instance_with_name($model_classname, $timezone = NULL){
1640 1641
 		$model_classname = str_replace( 'EEM_', '', $model_classname );
Please login to merge, or discard this patch.