@@ -459,7 +459,7 @@ |
||
| 459 | 459 | //must be explicit because schema could equal true. |
| 460 | 460 | if( $schema === 'no_html' ){ |
| 461 | 461 | $timezone_string = ' (' . $DateTime->format( 'T' ) . ')'; |
| 462 | - }else{ |
|
| 462 | + } else{ |
|
| 463 | 463 | $timezone_string = ' <span class="ee_dtt_timezone_string">(' . $DateTime->format( 'T' ) . ')</span>'; |
| 464 | 464 | } |
| 465 | 465 | } else { |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 2 | - exit( 'No direct script access allowed' ); |
|
| 1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 2 | + exit('No direct script access allowed'); |
|
| 3 | 3 | } |
| 4 | 4 | /** |
| 5 | 5 | * Event Espresso |
@@ -37,9 +37,9 @@ discard block |
||
| 37 | 37 | * date_format and the second value is the time format |
| 38 | 38 | * @return EE_Question |
| 39 | 39 | */ |
| 40 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
| 41 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
| 42 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
| 40 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
| 41 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
| 42 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | * the website will be used. |
| 51 | 51 | * @return EE_Question |
| 52 | 52 | */ |
| 53 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
| 54 | - return new self( $props_n_values, TRUE, $timezone ); |
|
| 53 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
| 54 | + return new self($props_n_values, TRUE, $timezone); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | * @access public |
| 63 | 63 | * @param string $QST_display_text |
| 64 | 64 | */ |
| 65 | - public function set_display_text( $QST_display_text = '' ) { |
|
| 66 | - $this->set( 'QST_display_text', $QST_display_text ); |
|
| 65 | + public function set_display_text($QST_display_text = '') { |
|
| 66 | + $this->set('QST_display_text', $QST_display_text); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | |
@@ -74,8 +74,8 @@ discard block |
||
| 74 | 74 | * @access public |
| 75 | 75 | * @param string $QST_admin_label |
| 76 | 76 | */ |
| 77 | - public function set_admin_label( $QST_admin_label = '' ) { |
|
| 78 | - $this->set( 'QST_admin_label', $QST_admin_label ); |
|
| 77 | + public function set_admin_label($QST_admin_label = '') { |
|
| 78 | + $this->set('QST_admin_label', $QST_admin_label); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | * @access public |
| 87 | 87 | * @param mixed $QST_system |
| 88 | 88 | */ |
| 89 | - public function set_system_ID( $QST_system = '' ) { |
|
| 90 | - $this->set( 'QST_system', $QST_system ); |
|
| 89 | + public function set_system_ID($QST_system = '') { |
|
| 90 | + $this->set('QST_system', $QST_system); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | |
@@ -98,8 +98,8 @@ discard block |
||
| 98 | 98 | * @access public |
| 99 | 99 | * @param string $QST_type |
| 100 | 100 | */ |
| 101 | - public function set_question_type( $QST_type = '' ) { |
|
| 102 | - $this->set( 'QST_type', $QST_type ); |
|
| 101 | + public function set_question_type($QST_type = '') { |
|
| 102 | + $this->set('QST_type', $QST_type); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | |
@@ -110,8 +110,8 @@ discard block |
||
| 110 | 110 | * @access public |
| 111 | 111 | * @param bool $QST_required |
| 112 | 112 | */ |
| 113 | - public function set_required( $QST_required = FALSE ) { |
|
| 114 | - $this->set( 'QST_required', $QST_required ); |
|
| 113 | + public function set_required($QST_required = FALSE) { |
|
| 114 | + $this->set('QST_required', $QST_required); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | |
@@ -122,8 +122,8 @@ discard block |
||
| 122 | 122 | * @access public |
| 123 | 123 | * @param string $QST_required_text |
| 124 | 124 | */ |
| 125 | - public function set_required_text( $QST_required_text = '' ) { |
|
| 126 | - $this->set( 'QST_required_text', $QST_required_text ); |
|
| 125 | + public function set_required_text($QST_required_text = '') { |
|
| 126 | + $this->set('QST_required_text', $QST_required_text); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | |
@@ -134,8 +134,8 @@ discard block |
||
| 134 | 134 | * @access public |
| 135 | 135 | * @param int $QST_order |
| 136 | 136 | */ |
| 137 | - public function set_order( $QST_order = 0 ) { |
|
| 138 | - $this->set( 'QST_order', $QST_order ); |
|
| 137 | + public function set_order($QST_order = 0) { |
|
| 138 | + $this->set('QST_order', $QST_order); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | * @access public |
| 147 | 147 | * @param bool $QST_admin_only |
| 148 | 148 | */ |
| 149 | - public function set_admin_only( $QST_admin_only = FALSE ) { |
|
| 150 | - $this->set( 'QST_admin_only', $QST_admin_only ); |
|
| 149 | + public function set_admin_only($QST_admin_only = FALSE) { |
|
| 150 | + $this->set('QST_admin_only', $QST_admin_only); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | * @access public |
| 159 | 159 | * @param int $QST_wp_user |
| 160 | 160 | */ |
| 161 | - public function set_wp_user( $QST_wp_user = 1 ) { |
|
| 162 | - $this->set( 'QST_wp_user', $QST_wp_user ); |
|
| 161 | + public function set_wp_user($QST_wp_user = 1) { |
|
| 162 | + $this->set('QST_wp_user', $QST_wp_user); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | |
@@ -175,8 +175,8 @@ discard block |
||
| 175 | 175 | * @access public |
| 176 | 176 | * @param bool $QST_deleted |
| 177 | 177 | */ |
| 178 | - public function set_deleted( $QST_deleted = FALSE ) { |
|
| 179 | - $this->set( 'QST_deleted', $QST_deleted ); |
|
| 178 | + public function set_deleted($QST_deleted = FALSE) { |
|
| 179 | + $this->set('QST_deleted', $QST_deleted); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | * @return string |
| 188 | 188 | */ |
| 189 | 189 | public function display_text() { |
| 190 | - return $this->get( 'QST_display_text' ); |
|
| 190 | + return $this->get('QST_display_text'); |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * @return string |
| 199 | 199 | */ |
| 200 | 200 | public function admin_label() { |
| 201 | - return $this->get( 'QST_admin_label' ); |
|
| 201 | + return $this->get('QST_admin_label'); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | * @return string |
| 210 | 210 | */ |
| 211 | 211 | public function system_ID() { |
| 212 | - return $this->get( 'QST_system' ); |
|
| 212 | + return $this->get('QST_system'); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | 215 | |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | * @return boolean |
| 221 | 221 | */ |
| 222 | 222 | public function required() { |
| 223 | - return $this->get( 'QST_required' ); |
|
| 223 | + return $this->get('QST_required'); |
|
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | * @return string |
| 233 | 233 | */ |
| 234 | 234 | public function required_text() { |
| 235 | - return $this->get( 'QST_required_text' ); |
|
| 235 | + return $this->get('QST_required_text'); |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | * @return string |
| 244 | 244 | */ |
| 245 | 245 | public function type() { |
| 246 | - return $this->get( 'QST_type' ); |
|
| 246 | + return $this->get('QST_type'); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | * @return int |
| 256 | 256 | */ |
| 257 | 257 | public function order() { |
| 258 | - return $this->get( 'QST_order' ); |
|
| 258 | + return $this->get('QST_order'); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | * @return boolean |
| 268 | 268 | */ |
| 269 | 269 | public function admin_only() { |
| 270 | - return $this->get( 'QST_admin_only' ); |
|
| 270 | + return $this->get('QST_admin_only'); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | * @return int |
| 279 | 279 | */ |
| 280 | 280 | public function wp_user() { |
| 281 | - return $this->get( 'QST_wp_user' ); |
|
| 281 | + return $this->get('QST_wp_user'); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | * @return boolean |
| 290 | 290 | */ |
| 291 | 291 | public function deleted() { |
| 292 | - return $this->get( 'QST_deleted' ); |
|
| 292 | + return $this->get('QST_deleted'); |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | * @return EE_Answer[] |
| 300 | 300 | */ |
| 301 | 301 | public function answers() { |
| 302 | - return $this->get_many_related( 'Answer' ); |
|
| 302 | + return $this->get_many_related('Answer'); |
|
| 303 | 303 | } |
| 304 | 304 | |
| 305 | 305 | |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * @return boolean true = has answers, false = no answers. |
| 310 | 310 | */ |
| 311 | 311 | public function has_answers() { |
| 312 | - return $this->count_related( 'Answer' ) > 0 ? TRUE : FALSE; |
|
| 312 | + return $this->count_related('Answer') > 0 ? TRUE : FALSE; |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | * @return EE_Question_Group[] |
| 320 | 320 | */ |
| 321 | 321 | public function question_groups() { |
| 322 | - return $this->get_many_related( 'Question_Group' ); |
|
| 322 | + return $this->get_many_related('Question_Group'); |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | 325 | |
@@ -333,24 +333,24 @@ discard block |
||
| 333 | 333 | * whether it was trashed or not. |
| 334 | 334 | * @return EE_Question_Option[] |
| 335 | 335 | */ |
| 336 | - public function options( $notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL ) { |
|
| 337 | - if ( ! $this->ID() ) { |
|
| 336 | + public function options($notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL) { |
|
| 337 | + if ( ! $this->ID()) { |
|
| 338 | 338 | return array(); |
| 339 | 339 | } |
| 340 | 340 | $query_params = array(); |
| 341 | - if ( $selected_value_to_always_include ) { |
|
| 342 | - if ( is_array( $selected_value_to_always_include ) ) { |
|
| 343 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_value' ] = array( 'IN', $selected_value_to_always_include ); |
|
| 341 | + if ($selected_value_to_always_include) { |
|
| 342 | + if (is_array($selected_value_to_always_include)) { |
|
| 343 | + $query_params[0]['OR*options-query']['QSO_value'] = array('IN', $selected_value_to_always_include); |
|
| 344 | 344 | } else { |
| 345 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_value' ] = $selected_value_to_always_include; |
|
| 345 | + $query_params[0]['OR*options-query']['QSO_value'] = $selected_value_to_always_include; |
|
| 346 | 346 | } |
| 347 | 347 | } |
| 348 | - if ( $notDeletedOptionsOnly ) { |
|
| 349 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_deleted' ] = FALSE; |
|
| 348 | + if ($notDeletedOptionsOnly) { |
|
| 349 | + $query_params[0]['OR*options-query']['QSO_deleted'] = FALSE; |
|
| 350 | 350 | } |
| 351 | 351 | //order by QSO_order |
| 352 | - $query_params[ 'order_by' ] = array( 'QSO_order' => 'ASC' ); |
|
| 353 | - return $this->get_many_related( 'Question_Option', $query_params ); |
|
| 352 | + $query_params['order_by'] = array('QSO_order' => 'ASC'); |
|
| 353 | + return $this->get_many_related('Question_Option', $query_params); |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | * @return \EE_Question_Option[] |
| 361 | 361 | */ |
| 362 | 362 | public function temp_options() { |
| 363 | - return $this->_model_relations[ 'Question_Option' ]; |
|
| 363 | + return $this->_model_relations['Question_Option']; |
|
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | |
@@ -371,8 +371,8 @@ discard block |
||
| 371 | 371 | * @param EE_Question_Option $option |
| 372 | 372 | * @return boolean success |
| 373 | 373 | */ |
| 374 | - public function add_option( EE_Question_Option $option ) { |
|
| 375 | - return $this->_add_relation_to( $option, 'Question_Option' ); |
|
| 374 | + public function add_option(EE_Question_Option $option) { |
|
| 375 | + return $this->_add_relation_to($option, 'Question_Option'); |
|
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | |
@@ -382,8 +382,8 @@ discard block |
||
| 382 | 382 | * @param EE_Question_Option $option |
| 383 | 383 | * @return boolean success |
| 384 | 384 | */ |
| 385 | - public function add_temp_option( EE_Question_Option $option ) { |
|
| 386 | - $this->_model_relations[ 'Question_Option' ][ ] = $option; |
|
| 385 | + public function add_temp_option(EE_Question_Option $option) { |
|
| 386 | + $this->_model_relations['Question_Option'][] = $option; |
|
| 387 | 387 | return TRUE; |
| 388 | 388 | } |
| 389 | 389 | |
@@ -394,8 +394,8 @@ discard block |
||
| 394 | 394 | * @param EE_Question_Option $option |
| 395 | 395 | * @return boolean success |
| 396 | 396 | */ |
| 397 | - public function remove_option( EE_Question_Option $option ) { |
|
| 398 | - return $this->_remove_relation_to( $option, 'Question_Option' ); |
|
| 397 | + public function remove_option(EE_Question_Option $option) { |
|
| 398 | + return $this->_remove_relation_to($option, 'Question_Option'); |
|
| 399 | 399 | } |
| 400 | 400 | |
| 401 | 401 | |
@@ -404,8 +404,8 @@ discard block |
||
| 404 | 404 | * @return bool |
| 405 | 405 | */ |
| 406 | 406 | public function is_system_question() { |
| 407 | - $system_ID = $this->get( 'QST_system' ); |
|
| 408 | - return ! empty( $system_ID ) ? TRUE : FALSE; |
|
| 407 | + $system_ID = $this->get('QST_system'); |
|
| 408 | + return ! empty($system_ID) ? TRUE : FALSE; |
|
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | |
@@ -418,8 +418,8 @@ discard block |
||
| 418 | 418 | */ |
| 419 | 419 | public function set_order_to_latest() { |
| 420 | 420 | $latest_order = $this->get_model()->get_latest_question_order(); |
| 421 | - $latest_order ++; |
|
| 422 | - $this->set( 'QST_order', $latest_order ); |
|
| 421 | + $latest_order++; |
|
| 422 | + $this->set('QST_order', $latest_order); |
|
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | |
@@ -438,20 +438,20 @@ discard block |
||
| 438 | 438 | * Duplicates this question and its question options |
| 439 | 439 | * @return \EE_Question |
| 440 | 440 | */ |
| 441 | - public function duplicate( $options = array() ) { |
|
| 441 | + public function duplicate($options = array()) { |
|
| 442 | 442 | $new_question = clone $this; |
| 443 | - $new_question->set( 'QST_ID', null ); |
|
| 444 | - $new_question->set_display_text( sprintf( __( '%s **Duplicate**', 'event_espresso' ), $this->display_text() ) ); |
|
| 445 | - $new_question->set_admin_label( sprintf( __( '%s **Duplicate**', 'event_espresso' ), $this->admin_label() ) ); |
|
| 446 | - $new_question->set_system_ID( null ); |
|
| 447 | - $new_question->set_wp_user( get_current_user_id() ); |
|
| 443 | + $new_question->set('QST_ID', null); |
|
| 444 | + $new_question->set_display_text(sprintf(__('%s **Duplicate**', 'event_espresso'), $this->display_text())); |
|
| 445 | + $new_question->set_admin_label(sprintf(__('%s **Duplicate**', 'event_espresso'), $this->admin_label())); |
|
| 446 | + $new_question->set_system_ID(null); |
|
| 447 | + $new_question->set_wp_user(get_current_user_id()); |
|
| 448 | 448 | //if we're duplicating a trashed question, assume we don't want the new one to be trashed |
| 449 | - $new_question->set_deleted( false ); |
|
| 449 | + $new_question->set_deleted(false); |
|
| 450 | 450 | $success = $new_question->save(); |
| 451 | - if( $success ) { |
|
| 451 | + if ($success) { |
|
| 452 | 452 | //we don't totally want to duplicate the question options, because we want them to be for the NEW question |
| 453 | - foreach( $this->options() as $question_option ) { |
|
| 454 | - $question_option->duplicate( array( 'QST_ID' => $new_question->ID() ) ); |
|
| 453 | + foreach ($this->options() as $question_option) { |
|
| 454 | + $question_option->duplicate(array('QST_ID' => $new_question->ID())); |
|
| 455 | 455 | } |
| 456 | 456 | return $new_question; |
| 457 | 457 | } else { |
@@ -464,7 +464,7 @@ discard block |
||
| 464 | 464 | * @return int|float |
| 465 | 465 | */ |
| 466 | 466 | public function max() { |
| 467 | - return $this->get( 'QST_max' ); |
|
| 467 | + return $this->get('QST_max'); |
|
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | /** |
@@ -472,8 +472,8 @@ discard block |
||
| 472 | 472 | * @param int|float $new_max |
| 473 | 473 | * @return void |
| 474 | 474 | */ |
| 475 | - public function set_max( $new_max ) { |
|
| 476 | - $this->set( 'QST_max', $new_max ); |
|
| 475 | + public function set_max($new_max) { |
|
| 476 | + $this->set('QST_max', $new_max); |
|
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | |
@@ -485,7 +485,7 @@ discard block |
||
| 485 | 485 | * @param array $input_constructor_args |
| 486 | 486 | * @return EE_Form_Input_Base |
| 487 | 487 | */ |
| 488 | - public function generate_form_input( $registration = null, $answer = null, $input_constructor_args = array() ) { |
|
| 488 | + public function generate_form_input($registration = null, $answer = null, $input_constructor_args = array()) { |
|
| 489 | 489 | $identifier = $this->is_system_question() ? $this->system_ID() : $this->ID(); |
| 490 | 490 | |
| 491 | 491 | $input_constructor_args = array_merge( |
@@ -496,27 +496,27 @@ discard block |
||
| 496 | 496 | ), |
| 497 | 497 | $input_constructor_args |
| 498 | 498 | ); |
| 499 | - if( ! $answer instanceof EE_Answer && $registration instanceof EE_Registration ) { |
|
| 500 | - $answer = EEM_Answer::instance()->get_registration_question_answer_object( $registration, $this->ID() ); |
|
| 499 | + if ( ! $answer instanceof EE_Answer && $registration instanceof EE_Registration) { |
|
| 500 | + $answer = EEM_Answer::instance()->get_registration_question_answer_object($registration, $this->ID()); |
|
| 501 | 501 | } |
| 502 | 502 | // has this question been answered ? |
| 503 | - if ( $answer instanceof EE_Answer ) { |
|
| 503 | + if ($answer instanceof EE_Answer) { |
|
| 504 | 504 | //answer gets htmlspecialchars called on it, undo that please |
| 505 | 505 | //beceause the form input's display strategy may call esc_attr too |
| 506 | 506 | //which also does html special characters |
| 507 | 507 | $values_with_html_special_chars = $answer->value(); |
| 508 | - if( is_array( $values_with_html_special_chars ) ) { |
|
| 509 | - $default_value = array_map( 'htmlspecialchars_decode', $values_with_html_special_chars ); |
|
| 508 | + if (is_array($values_with_html_special_chars)) { |
|
| 509 | + $default_value = array_map('htmlspecialchars_decode', $values_with_html_special_chars); |
|
| 510 | 510 | } else { |
| 511 | - $default_value = htmlspecialchars_decode( $values_with_html_special_chars ); |
|
| 511 | + $default_value = htmlspecialchars_decode($values_with_html_special_chars); |
|
| 512 | 512 | } |
| 513 | 513 | $input_constructor_args['default'] = $default_value; |
| 514 | 514 | } |
| 515 | - $max_max_for_question = EEM_Question::instance()->absolute_max_for_system_question( $this->system_ID() ); |
|
| 516 | - if( EEM_Question::instance()->question_type_is_in_category( $this->type(), 'text' ) ) { |
|
| 517 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Max_Length_Validation_Strategy( |
|
| 515 | + $max_max_for_question = EEM_Question::instance()->absolute_max_for_system_question($this->system_ID()); |
|
| 516 | + if (EEM_Question::instance()->question_type_is_in_category($this->type(), 'text')) { |
|
| 517 | + $input_constructor_args['validation_strategies'][] = new EE_Max_Length_Validation_Strategy( |
|
| 518 | 518 | null, |
| 519 | - min( $max_max_for_question, $this->max() ) |
|
| 519 | + min($max_max_for_question, $this->max()) |
|
| 520 | 520 | ); |
| 521 | 521 | } |
| 522 | 522 | $input_constructor_args = apply_filters( |
@@ -528,26 +528,26 @@ discard block |
||
| 528 | 528 | ); |
| 529 | 529 | |
| 530 | 530 | $result = null; |
| 531 | - switch ( $this->type() ) { |
|
| 531 | + switch ($this->type()) { |
|
| 532 | 532 | // Text |
| 533 | 533 | case EEM_Question::QST_type_text : |
| 534 | - if( $identifier == 'email' ){ |
|
| 535 | - $result = new EE_Email_Input( $input_constructor_args ); |
|
| 536 | - }else{ |
|
| 537 | - $result = new EE_Text_Input( $input_constructor_args ); |
|
| 534 | + if ($identifier == 'email') { |
|
| 535 | + $result = new EE_Email_Input($input_constructor_args); |
|
| 536 | + } else { |
|
| 537 | + $result = new EE_Text_Input($input_constructor_args); |
|
| 538 | 538 | } |
| 539 | 539 | break; |
| 540 | 540 | // Textarea |
| 541 | 541 | case EEM_Question::QST_type_textarea : |
| 542 | - $result = new EE_Text_Area_Input( $input_constructor_args ); |
|
| 542 | + $result = new EE_Text_Area_Input($input_constructor_args); |
|
| 543 | 543 | break; |
| 544 | 544 | // Radio Buttons |
| 545 | 545 | case EEM_Question::QST_type_radio : |
| 546 | - $result = new EE_Radio_Button_Input( $this->options(), $input_constructor_args ); |
|
| 546 | + $result = new EE_Radio_Button_Input($this->options(), $input_constructor_args); |
|
| 547 | 547 | break; |
| 548 | 548 | // Dropdown |
| 549 | 549 | case EEM_Question::QST_type_dropdown : |
| 550 | - $result = new EE_Select_Input( $this->options(), $input_constructor_args ); |
|
| 550 | + $result = new EE_Select_Input($this->options(), $input_constructor_args); |
|
| 551 | 551 | break; |
| 552 | 552 | // State Dropdown |
| 553 | 553 | case EEM_Question::QST_type_state : |
@@ -557,7 +557,7 @@ discard block |
||
| 557 | 557 | $this, |
| 558 | 558 | $registration, |
| 559 | 559 | $answer |
| 560 | - ); $result = new EE_State_Select_Input( $state_options, $input_constructor_args ); |
|
| 560 | + ); $result = new EE_State_Select_Input($state_options, $input_constructor_args); |
|
| 561 | 561 | break; |
| 562 | 562 | // Country Dropdown |
| 563 | 563 | case EEM_Question::QST_type_country : |
@@ -568,20 +568,20 @@ discard block |
||
| 568 | 568 | $registration, |
| 569 | 569 | $answer |
| 570 | 570 | ); |
| 571 | - $result = new EE_Country_Select_Input( $country_options, $input_constructor_args ); |
|
| 571 | + $result = new EE_Country_Select_Input($country_options, $input_constructor_args); |
|
| 572 | 572 | break; |
| 573 | 573 | // Checkboxes |
| 574 | 574 | case EEM_Question::QST_type_checkbox : |
| 575 | - $result = new EE_Checkbox_Multi_Input( $this->options(), $input_constructor_args ); |
|
| 575 | + $result = new EE_Checkbox_Multi_Input($this->options(), $input_constructor_args); |
|
| 576 | 576 | break; |
| 577 | 577 | // Date |
| 578 | 578 | case EEM_Question::QST_type_date : |
| 579 | - $result = new EE_Datepicker_Input( $input_constructor_args ); |
|
| 579 | + $result = new EE_Datepicker_Input($input_constructor_args); |
|
| 580 | 580 | break; |
| 581 | 581 | case EEM_Question::QST_type_html_textarea : |
| 582 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Simple_HTML_Validation_Strategy(); |
|
| 583 | - $input = new EE_Text_Area_Input( $input_constructor_args ); |
|
| 584 | - $input->remove_validation_strategy( 'EE_Plaintext_Validation_Strategy' ); |
|
| 582 | + $input_constructor_args['validation_strategies'][] = new EE_Simple_HTML_Validation_Strategy(); |
|
| 583 | + $input = new EE_Text_Area_Input($input_constructor_args); |
|
| 584 | + $input->remove_validation_strategy('EE_Plaintext_Validation_Strategy'); |
|
| 585 | 585 | $result = $input; |
| 586 | 586 | break; |
| 587 | 587 | // fallback |
@@ -593,12 +593,12 @@ discard block |
||
| 593 | 593 | $this, |
| 594 | 594 | $input_constructor_args |
| 595 | 595 | ); |
| 596 | - if( ! $default_input ){ |
|
| 597 | - $default_input = new EE_Text_Input( $input_constructor_args ); |
|
| 596 | + if ( ! $default_input) { |
|
| 597 | + $default_input = new EE_Text_Input($input_constructor_args); |
|
| 598 | 598 | } |
| 599 | 599 | $result = $default_input; |
| 600 | 600 | } |
| 601 | - return apply_filters( 'FHEE__EE_Question__generate_form_input__return', $result, $registration, $this, $answer ); |
|
| 601 | + return apply_filters('FHEE__EE_Question__generate_form_input__return', $result, $registration, $this, $answer); |
|
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | |
@@ -445,8 +445,8 @@ |
||
| 445 | 445 | $new_question->set_admin_label( sprintf( __( '%s **Duplicate**', 'event_espresso' ), $this->admin_label() ) ); |
| 446 | 446 | $new_question->set_system_ID( null ); |
| 447 | 447 | $new_question->set_wp_user( get_current_user_id() ); |
| 448 | - //if we're duplicating a trashed question, assume we don't want the new one to be trashed |
|
| 449 | - $new_question->set_deleted( false ); |
|
| 448 | + //if we're duplicating a trashed question, assume we don't want the new one to be trashed |
|
| 449 | + $new_question->set_deleted( false ); |
|
| 450 | 450 | $success = $new_question->save(); |
| 451 | 451 | if( $success ) { |
| 452 | 452 | //we don't totally want to duplicate the question options, because we want them to be for the NEW question |
@@ -664,7 +664,7 @@ discard block |
||
| 664 | 664 | * the registration's share of the transaction total, so that the |
| 665 | 665 | * sum of all the transaction's REG_final_prices equal the transaction's total |
| 666 | 666 | * @access public |
| 667 | - * @return float |
|
| 667 | + * @return boolean |
|
| 668 | 668 | */ |
| 669 | 669 | public function final_price() { |
| 670 | 670 | return $this->get( 'REG_final_price' ); |
@@ -686,7 +686,7 @@ discard block |
||
| 686 | 686 | /** |
| 687 | 687 | * get paid (yeah) |
| 688 | 688 | * @access public |
| 689 | - * @return float |
|
| 689 | + * @return boolean |
|
| 690 | 690 | */ |
| 691 | 691 | public function paid() { |
| 692 | 692 | return $this->get( 'REG_paid' ); |
@@ -799,7 +799,7 @@ discard block |
||
| 799 | 799 | * (either the question's ID or a question object) |
| 800 | 800 | * @param EE_Question|int $question |
| 801 | 801 | * @param bool $pretty_value |
| 802 | - * @return array|string if pretty_value= true, the result will always be a string |
|
| 802 | + * @return string if pretty_value= true, the result will always be a string |
|
| 803 | 803 | * (because the answer might be an array of answer values, so passing pretty_value=true |
| 804 | 804 | * will convert it into some kind of string) |
| 805 | 805 | */ |
@@ -898,7 +898,7 @@ discard block |
||
| 898 | 898 | /** |
| 899 | 899 | * Sets deleted |
| 900 | 900 | * @param boolean $deleted |
| 901 | - * @return boolean |
|
| 901 | + * @return boolean|null |
|
| 902 | 902 | */ |
| 903 | 903 | public function set_deleted($deleted) { |
| 904 | 904 | $this->set( 'REG_deleted', $deleted ); |
@@ -942,6 +942,7 @@ discard block |
||
| 942 | 942 | * |
| 943 | 943 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
| 944 | 944 | * @param bool $check_approved This is used to indicate whether the caller wants can_checkin to also consider registration status as well as datetime access. |
| 945 | + * @param integer $DTT_OR_ID |
|
| 945 | 946 | * |
| 946 | 947 | * @return bool |
| 947 | 948 | */ |
@@ -1179,7 +1180,7 @@ discard block |
||
| 1179 | 1180 | |
| 1180 | 1181 | |
| 1181 | 1182 | /** |
| 1182 | - * @return int |
|
| 1183 | + * @return boolean |
|
| 1183 | 1184 | */ |
| 1184 | 1185 | public function ticket_ID() { |
| 1185 | 1186 | return $this->get( 'TKT_ID' ); |
@@ -1302,7 +1303,7 @@ discard block |
||
| 1302 | 1303 | * This grabs the payment method corresponding to the last payment made for the amount owing on the registration. |
| 1303 | 1304 | * Note: if there are no payments on the registration there will be no payment method returned. |
| 1304 | 1305 | * |
| 1305 | - * @return EE_Payment_Method|null |
|
| 1306 | + * @return EE_Base_Class|null |
|
| 1306 | 1307 | */ |
| 1307 | 1308 | public function payment_method() { |
| 1308 | 1309 | return EEM_Payment_Method::instance()->get_last_used_for_registration( $this ); |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 2 | - exit( 'No direct script access allowed' ); |
|
| 1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 2 | + exit('No direct script access allowed'); |
|
| 3 | 3 | } |
| 4 | 4 | /** |
| 5 | 5 | * EE_Registration class |
@@ -41,9 +41,9 @@ discard block |
||
| 41 | 41 | * date_format and the second value is the time format |
| 42 | 42 | * @return EE_Registration |
| 43 | 43 | */ |
| 44 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
| 45 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
| 46 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
| 44 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
| 45 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
| 46 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | * the website will be used. |
| 55 | 55 | * @return EE_Registration |
| 56 | 56 | */ |
| 57 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
| 58 | - return new self( $props_n_values, TRUE, $timezone ); |
|
| 57 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
| 58 | + return new self($props_n_values, TRUE, $timezone); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | |
@@ -66,8 +66,8 @@ discard block |
||
| 66 | 66 | * @access public |
| 67 | 67 | * @param int $EVT_ID Event ID |
| 68 | 68 | */ |
| 69 | - public function set_event( $EVT_ID = 0 ) { |
|
| 70 | - $this->set( 'EVT_ID', $EVT_ID ); |
|
| 69 | + public function set_event($EVT_ID = 0) { |
|
| 70 | + $this->set('EVT_ID', $EVT_ID); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | |
@@ -78,18 +78,18 @@ discard block |
||
| 78 | 78 | * @param mixed $field_value |
| 79 | 79 | * @param bool $use_default |
| 80 | 80 | */ |
| 81 | - public function set( $field_name, $field_value, $use_default = FALSE ) { |
|
| 82 | - switch( $field_name ) { |
|
| 81 | + public function set($field_name, $field_value, $use_default = FALSE) { |
|
| 82 | + switch ($field_name) { |
|
| 83 | 83 | case 'REG_code' : |
| 84 | - if ( ! empty( $field_value ) && $this->reg_code() == '' ) { |
|
| 85 | - $this->set_reg_code( $field_value, $use_default ); |
|
| 84 | + if ( ! empty($field_value) && $this->reg_code() == '') { |
|
| 85 | + $this->set_reg_code($field_value, $use_default); |
|
| 86 | 86 | } |
| 87 | 87 | break; |
| 88 | 88 | case 'STS_ID' : |
| 89 | - $this->set_status( $field_value, $use_default ); |
|
| 89 | + $this->set_status($field_value, $use_default); |
|
| 90 | 90 | break; |
| 91 | 91 | default : |
| 92 | - parent::set( $field_name, $field_value, $use_default ); |
|
| 92 | + parent::set($field_name, $field_value, $use_default); |
|
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
@@ -106,30 +106,30 @@ discard block |
||
| 106 | 106 | * @param boolean $use_default |
| 107 | 107 | * @return bool |
| 108 | 108 | */ |
| 109 | - public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) { |
|
| 109 | + public function set_status($new_STS_ID = NULL, $use_default = FALSE) { |
|
| 110 | 110 | // get current REG_Status |
| 111 | 111 | $old_STS_ID = $this->status_ID(); |
| 112 | 112 | // if status has changed |
| 113 | - if ( $old_STS_ID != $new_STS_ID ) { |
|
| 113 | + if ($old_STS_ID != $new_STS_ID) { |
|
| 114 | 114 | // TO approved |
| 115 | - if ( $new_STS_ID == EEM_Registration::status_id_approved ) { |
|
| 115 | + if ($new_STS_ID == EEM_Registration::status_id_approved) { |
|
| 116 | 116 | // reserve a space by incrementing ticket and datetime sold values |
| 117 | 117 | $this->_reserve_registration_space(); |
| 118 | - do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID ); |
|
| 118 | + do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID); |
|
| 119 | 119 | // OR FROM approved |
| 120 | - } else if ( $old_STS_ID == EEM_Registration::status_id_approved ) { |
|
| 120 | + } else if ($old_STS_ID == EEM_Registration::status_id_approved) { |
|
| 121 | 121 | // release a space by decrementing ticket and datetime sold values |
| 122 | 122 | $this->_release_registration_space(); |
| 123 | - do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID ); |
|
| 123 | + do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID); |
|
| 124 | 124 | } |
| 125 | 125 | // update status |
| 126 | - parent::set( 'STS_ID', $new_STS_ID, $use_default ); |
|
| 127 | - do_action( 'AHEE__EE_Registration__set_status__after_update', $this ); |
|
| 126 | + parent::set('STS_ID', $new_STS_ID, $use_default); |
|
| 127 | + do_action('AHEE__EE_Registration__set_status__after_update', $this); |
|
| 128 | 128 | return TRUE; |
| 129 | - }else{ |
|
| 129 | + } else { |
|
| 130 | 130 | //even though the old value matches the new value, it's still good to |
| 131 | 131 | //allow the parent set method to have a say |
| 132 | - parent::set( 'STS_ID', $new_STS_ID, $use_default ); |
|
| 132 | + parent::set('STS_ID', $new_STS_ID, $use_default); |
|
| 133 | 133 | return TRUE; |
| 134 | 134 | } |
| 135 | 135 | } |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * @access public |
| 142 | 142 | */ |
| 143 | 143 | public function status_ID() { |
| 144 | - return $this->get( 'STS_ID' ); |
|
| 144 | + return $this->get('STS_ID'); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | |
@@ -166,12 +166,12 @@ discard block |
||
| 166 | 166 | * @param boolean $include_archived whether to include archived tickets or not. |
| 167 | 167 | * @return EE_Ticket |
| 168 | 168 | */ |
| 169 | - public function ticket( $include_archived = TRUE ) { |
|
| 169 | + public function ticket($include_archived = TRUE) { |
|
| 170 | 170 | $query_params = array(); |
| 171 | - if ( $include_archived ) { |
|
| 172 | - $query_params[ 'default_where_conditions' ] = 'none'; |
|
| 171 | + if ($include_archived) { |
|
| 172 | + $query_params['default_where_conditions'] = 'none'; |
|
| 173 | 173 | } |
| 174 | - return $this->get_first_related( 'Ticket', $query_params ); |
|
| 174 | + return $this->get_first_related('Ticket', $query_params); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | * @return EE_Event |
| 182 | 182 | */ |
| 183 | 183 | public function event() { |
| 184 | - return $this->get_first_related( 'Event' ); |
|
| 184 | + return $this->get_first_related('Event'); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | */ |
| 196 | 196 | public function wp_user() { |
| 197 | 197 | $event = $this->event(); |
| 198 | - if ( $event instanceof EE_Event ) { |
|
| 198 | + if ($event instanceof EE_Event) { |
|
| 199 | 199 | return $event->wp_user(); |
| 200 | 200 | } |
| 201 | 201 | return 0; |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | * @access public |
| 222 | 222 | * @param int $ATT_ID Attendee ID |
| 223 | 223 | */ |
| 224 | - public function set_attendee_id( $ATT_ID = 0 ) { |
|
| 225 | - $this->set( 'ATT_ID', $ATT_ID ); |
|
| 224 | + public function set_attendee_id($ATT_ID = 0) { |
|
| 225 | + $this->set('ATT_ID', $ATT_ID); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | |
@@ -233,8 +233,8 @@ discard block |
||
| 233 | 233 | * @access public |
| 234 | 234 | * @param int $TXN_ID Transaction ID |
| 235 | 235 | */ |
| 236 | - public function set_transaction_id( $TXN_ID = 0 ) { |
|
| 237 | - $this->set( 'TXN_ID', $TXN_ID ); |
|
| 236 | + public function set_transaction_id($TXN_ID = 0) { |
|
| 237 | + $this->set('TXN_ID', $TXN_ID); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | |
@@ -245,8 +245,8 @@ discard block |
||
| 245 | 245 | * @access public |
| 246 | 246 | * @param string $REG_session PHP Session ID |
| 247 | 247 | */ |
| 248 | - public function set_session( $REG_session = '' ) { |
|
| 249 | - $this->set( 'REG_session', $REG_session ); |
|
| 248 | + public function set_session($REG_session = '') { |
|
| 249 | + $this->set('REG_session', $REG_session); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | |
@@ -257,8 +257,8 @@ discard block |
||
| 257 | 257 | * @access public |
| 258 | 258 | * @param string $REG_url_link Registration URL Link |
| 259 | 259 | */ |
| 260 | - public function set_reg_url_link( $REG_url_link = '' ) { |
|
| 261 | - $this->set( 'REG_url_link', $REG_url_link ); |
|
| 260 | + public function set_reg_url_link($REG_url_link = '') { |
|
| 261 | + $this->set('REG_url_link', $REG_url_link); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | |
@@ -269,8 +269,8 @@ discard block |
||
| 269 | 269 | * @access public |
| 270 | 270 | * @param int $REG_count Primary Attendee |
| 271 | 271 | */ |
| 272 | - public function set_count( $REG_count = 1 ) { |
|
| 273 | - $this->set( 'REG_count', $REG_count ); |
|
| 272 | + public function set_count($REG_count = 1) { |
|
| 273 | + $this->set('REG_count', $REG_count); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | |
@@ -281,8 +281,8 @@ discard block |
||
| 281 | 281 | * @access public |
| 282 | 282 | * @param boolean $REG_group_size Group Registration |
| 283 | 283 | */ |
| 284 | - public function set_group_size( $REG_group_size = FALSE ) { |
|
| 285 | - $this->set( 'REG_group_size', $REG_group_size ); |
|
| 284 | + public function set_group_size($REG_group_size = FALSE) { |
|
| 285 | + $this->set('REG_group_size', $REG_group_size); |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | |
@@ -365,8 +365,8 @@ discard block |
||
| 365 | 365 | * @access public |
| 366 | 366 | * @param mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date |
| 367 | 367 | */ |
| 368 | - public function set_reg_date( $REG_date = FALSE ) { |
|
| 369 | - $this->set( 'REG_date', $REG_date ); |
|
| 368 | + public function set_reg_date($REG_date = FALSE) { |
|
| 369 | + $this->set('REG_date', $REG_date); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | |
@@ -377,8 +377,8 @@ discard block |
||
| 377 | 377 | * @access public |
| 378 | 378 | * @param float $REG_final_price |
| 379 | 379 | */ |
| 380 | - public function set_final_price( $REG_final_price = 0.00 ) { |
|
| 381 | - $this->set( 'REG_final_price', $REG_final_price ); |
|
| 380 | + public function set_final_price($REG_final_price = 0.00) { |
|
| 381 | + $this->set('REG_final_price', $REG_final_price); |
|
| 382 | 382 | } |
| 383 | 383 | |
| 384 | 384 | |
@@ -389,8 +389,8 @@ discard block |
||
| 389 | 389 | * @access public |
| 390 | 390 | * @param float $REG_paid |
| 391 | 391 | */ |
| 392 | - public function set_paid( $REG_paid = 0.00 ) { |
|
| 393 | - $this->set( 'REG_paid', $REG_paid ); |
|
| 392 | + public function set_paid($REG_paid = 0.00) { |
|
| 393 | + $this->set('REG_paid', $REG_paid); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | |
@@ -401,8 +401,8 @@ discard block |
||
| 401 | 401 | * @access public |
| 402 | 402 | * @param boolean $REG_att_is_going Attendee Is Going |
| 403 | 403 | */ |
| 404 | - public function set_att_is_going( $REG_att_is_going = FALSE ) { |
|
| 405 | - $this->set( 'REG_att_is_going', $REG_att_is_going ); |
|
| 404 | + public function set_att_is_going($REG_att_is_going = FALSE) { |
|
| 405 | + $this->set('REG_att_is_going', $REG_att_is_going); |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | * @return EE_Attendee |
| 413 | 413 | */ |
| 414 | 414 | public function attendee() { |
| 415 | - return $this->get_first_related( 'Attendee' ); |
|
| 415 | + return $this->get_first_related('Attendee'); |
|
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | * @access public |
| 423 | 423 | */ |
| 424 | 424 | public function event_ID() { |
| 425 | - return $this->get( 'EVT_ID' ); |
|
| 425 | + return $this->get('EVT_ID'); |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | */ |
| 434 | 434 | public function event_name() { |
| 435 | 435 | $event = $this->event_obj(); |
| 436 | - if ( $event ) { |
|
| 436 | + if ($event) { |
|
| 437 | 437 | return $event->name(); |
| 438 | 438 | } else { |
| 439 | 439 | return NULL; |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | * @return EE_Event |
| 448 | 448 | */ |
| 449 | 449 | public function event_obj() { |
| 450 | - return $this->get_first_related( 'Event' ); |
|
| 450 | + return $this->get_first_related('Event'); |
|
| 451 | 451 | } |
| 452 | 452 | |
| 453 | 453 | |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | * @access public |
| 458 | 458 | */ |
| 459 | 459 | public function attendee_ID() { |
| 460 | - return $this->get( 'ATT_ID' ); |
|
| 460 | + return $this->get('ATT_ID'); |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | |
@@ -467,7 +467,7 @@ discard block |
||
| 467 | 467 | * @access public |
| 468 | 468 | */ |
| 469 | 469 | public function session_ID() { |
| 470 | - return $this->get( 'REG_session' ); |
|
| 470 | + return $this->get('REG_session'); |
|
| 471 | 471 | } |
| 472 | 472 | |
| 473 | 473 | |
@@ -477,7 +477,7 @@ discard block |
||
| 477 | 477 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
| 478 | 478 | * @return string |
| 479 | 479 | */ |
| 480 | - public function receipt_url( $messenger = 'html' ) { |
|
| 480 | + public function receipt_url($messenger = 'html') { |
|
| 481 | 481 | |
| 482 | 482 | /** |
| 483 | 483 | * The below will be deprecated one version after this. We check first if there is a custom receipt template already in use on old system. If there is then we just return the standard url for it. |
@@ -486,12 +486,12 @@ discard block |
||
| 486 | 486 | */ |
| 487 | 487 | EE_Registry::instance()->load_helper('Template'); |
| 488 | 488 | $template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php'; |
| 489 | - $has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE ); |
|
| 489 | + $has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE); |
|
| 490 | 490 | |
| 491 | - if ( $has_custom ) { |
|
| 492 | - return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) ); |
|
| 491 | + if ($has_custom) { |
|
| 492 | + return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch')); |
|
| 493 | 493 | } |
| 494 | - return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' ); |
|
| 494 | + return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt'); |
|
| 495 | 495 | } |
| 496 | 496 | |
| 497 | 497 | |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
| 503 | 503 | * @return string |
| 504 | 504 | */ |
| 505 | - public function invoice_url( $messenger = 'html' ) { |
|
| 505 | + public function invoice_url($messenger = 'html') { |
|
| 506 | 506 | /** |
| 507 | 507 | * The below will be deprecated one version after this. We check first if there is a custom invoice template already in use on old system. If there is then we just return the standard url for it. |
| 508 | 508 | * |
@@ -510,21 +510,21 @@ discard block |
||
| 510 | 510 | */ |
| 511 | 511 | EE_Registry::instance()->load_helper('Template'); |
| 512 | 512 | $template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php'; |
| 513 | - $has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE ); |
|
| 513 | + $has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE); |
|
| 514 | 514 | |
| 515 | - if ( $has_custom ) { |
|
| 516 | - if ( $messenger == 'html' ) { |
|
| 517 | - return $this->invoice_url( 'launch' ); |
|
| 515 | + if ($has_custom) { |
|
| 516 | + if ($messenger == 'html') { |
|
| 517 | + return $this->invoice_url('launch'); |
|
| 518 | 518 | } |
| 519 | 519 | $route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice'; |
| 520 | 520 | |
| 521 | - $query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() ); |
|
| 522 | - if ( $messenger == 'html' ) { |
|
| 521 | + $query_args = array('ee' => $route, 'id' => $this->reg_url_link()); |
|
| 522 | + if ($messenger == 'html') { |
|
| 523 | 523 | $query_args['html'] = TRUE; |
| 524 | 524 | } |
| 525 | - return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) ); |
|
| 525 | + return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id)); |
|
| 526 | 526 | } |
| 527 | - return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' ); |
|
| 527 | + return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice'); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | 530 | |
@@ -534,7 +534,7 @@ discard block |
||
| 534 | 534 | * @access public |
| 535 | 535 | */ |
| 536 | 536 | public function reg_url_link() { |
| 537 | - return $this->get( 'REG_url_link' ); |
|
| 537 | + return $this->get('REG_url_link'); |
|
| 538 | 538 | } |
| 539 | 539 | |
| 540 | 540 | |
@@ -544,8 +544,8 @@ discard block |
||
| 544 | 544 | * @param string $type 'download','launch', or 'html' (default is 'launch') |
| 545 | 545 | * @return void |
| 546 | 546 | */ |
| 547 | - public function e_invoice_url( $type = 'launch' ) { |
|
| 548 | - echo $this->invoice_url( $type ); |
|
| 547 | + public function e_invoice_url($type = 'launch') { |
|
| 548 | + echo $this->invoice_url($type); |
|
| 549 | 549 | } |
| 550 | 550 | |
| 551 | 551 | |
@@ -565,7 +565,7 @@ discard block |
||
| 565 | 565 | * @return string |
| 566 | 566 | */ |
| 567 | 567 | public function payment_overview_url() { |
| 568 | - return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() ); |
|
| 568 | + return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url()); |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | * @return string |
| 577 | 577 | */ |
| 578 | 578 | public function edit_attendee_information_url() { |
| 579 | - return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() ); |
|
| 579 | + return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url()); |
|
| 580 | 580 | } |
| 581 | 581 | |
| 582 | 582 | |
@@ -586,8 +586,8 @@ discard block |
||
| 586 | 586 | * @return string |
| 587 | 587 | */ |
| 588 | 588 | public function get_admin_edit_url() { |
| 589 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
| 590 | - return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) ); |
|
| 589 | + EE_Registry::instance()->load_helper('URL'); |
|
| 590 | + return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php')); |
|
| 591 | 591 | } |
| 592 | 592 | |
| 593 | 593 | |
@@ -597,7 +597,7 @@ discard block |
||
| 597 | 597 | * @access public |
| 598 | 598 | */ |
| 599 | 599 | public function is_primary_registrant() { |
| 600 | - return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE; |
|
| 600 | + return $this->get('REG_count') == 1 ? TRUE : FALSE; |
|
| 601 | 601 | } |
| 602 | 602 | |
| 603 | 603 | |
@@ -606,12 +606,12 @@ discard block |
||
| 606 | 606 | * This returns the primary registration object for this registration group (which may be this object). |
| 607 | 607 | * @return EE_Registration |
| 608 | 608 | */ |
| 609 | - public function get_primary_registration() { |
|
| 610 | - if ( $this->is_primary_registrant() ) |
|
| 609 | + public function get_primary_registration() { |
|
| 610 | + if ($this->is_primary_registrant()) |
|
| 611 | 611 | return $this; |
| 612 | 612 | |
| 613 | 613 | //k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1 |
| 614 | - $primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) ); |
|
| 614 | + $primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1))); |
|
| 615 | 615 | return $primary_registrant; |
| 616 | 616 | } |
| 617 | 617 | |
@@ -622,7 +622,7 @@ discard block |
||
| 622 | 622 | * @access public |
| 623 | 623 | */ |
| 624 | 624 | public function count() { |
| 625 | - return $this->get( 'REG_count' ); |
|
| 625 | + return $this->get('REG_count'); |
|
| 626 | 626 | } |
| 627 | 627 | |
| 628 | 628 | |
@@ -632,7 +632,7 @@ discard block |
||
| 632 | 632 | * @access public |
| 633 | 633 | */ |
| 634 | 634 | public function group_size() { |
| 635 | - return $this->get( 'REG_group_size' ); |
|
| 635 | + return $this->get('REG_group_size'); |
|
| 636 | 636 | } |
| 637 | 637 | |
| 638 | 638 | |
@@ -642,7 +642,7 @@ discard block |
||
| 642 | 642 | * @access public |
| 643 | 643 | */ |
| 644 | 644 | public function date() { |
| 645 | - return $this->get( 'REG_date' ); |
|
| 645 | + return $this->get('REG_date'); |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | |
@@ -653,8 +653,8 @@ discard block |
||
| 653 | 653 | * @param string $time_format |
| 654 | 654 | * @return string |
| 655 | 655 | */ |
| 656 | - public function pretty_date( $date_format = NULL, $time_format = NULL ) { |
|
| 657 | - return $this->get_datetime( 'REG_date', $date_format, $time_format ); |
|
| 656 | + public function pretty_date($date_format = NULL, $time_format = NULL) { |
|
| 657 | + return $this->get_datetime('REG_date', $date_format, $time_format); |
|
| 658 | 658 | } |
| 659 | 659 | |
| 660 | 660 | |
@@ -667,7 +667,7 @@ discard block |
||
| 667 | 667 | * @return float |
| 668 | 668 | */ |
| 669 | 669 | public function final_price() { |
| 670 | - return $this->get( 'REG_final_price' ); |
|
| 670 | + return $this->get('REG_final_price'); |
|
| 671 | 671 | } |
| 672 | 672 | |
| 673 | 673 | |
@@ -678,7 +678,7 @@ discard block |
||
| 678 | 678 | * @return string |
| 679 | 679 | */ |
| 680 | 680 | public function pretty_final_price() { |
| 681 | - return $this->get_pretty( 'REG_final_price' ); |
|
| 681 | + return $this->get_pretty('REG_final_price'); |
|
| 682 | 682 | } |
| 683 | 683 | |
| 684 | 684 | |
@@ -689,7 +689,7 @@ discard block |
||
| 689 | 689 | * @return float |
| 690 | 690 | */ |
| 691 | 691 | public function paid() { |
| 692 | - return $this->get( 'REG_paid' ); |
|
| 692 | + return $this->get('REG_paid'); |
|
| 693 | 693 | } |
| 694 | 694 | |
| 695 | 695 | |
@@ -700,7 +700,7 @@ discard block |
||
| 700 | 700 | * @return float |
| 701 | 701 | */ |
| 702 | 702 | public function pretty_paid() { |
| 703 | - return $this->get_pretty( 'REG_paid' ); |
|
| 703 | + return $this->get_pretty('REG_paid'); |
|
| 704 | 704 | } |
| 705 | 705 | |
| 706 | 706 | |
@@ -712,11 +712,11 @@ discard block |
||
| 712 | 712 | * @param array $requires_payment |
| 713 | 713 | * @return bool |
| 714 | 714 | */ |
| 715 | - public function owes_monies_and_can_pay( $requires_payment = array()) { |
|
| 715 | + public function owes_monies_and_can_pay($requires_payment = array()) { |
|
| 716 | 716 | // these reg statuses require payment (if event is not free) |
| 717 | - $requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment(); |
|
| 717 | + $requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment(); |
|
| 718 | 718 | if ( |
| 719 | - in_array( $this->status_ID(), $requires_payment ) && |
|
| 719 | + in_array($this->status_ID(), $requires_payment) && |
|
| 720 | 720 | $this->final_price() != 0 && |
| 721 | 721 | $this->final_price() != $this->paid() |
| 722 | 722 | ) { |
@@ -733,8 +733,8 @@ discard block |
||
| 733 | 733 | * @param bool $show_icons |
| 734 | 734 | * @return void |
| 735 | 735 | */ |
| 736 | - public function e_pretty_status( $show_icons = FALSE ) { |
|
| 737 | - echo $this->pretty_status( $show_icons ); |
|
| 736 | + public function e_pretty_status($show_icons = FALSE) { |
|
| 737 | + echo $this->pretty_status($show_icons); |
|
| 738 | 738 | } |
| 739 | 739 | |
| 740 | 740 | |
@@ -745,10 +745,10 @@ discard block |
||
| 745 | 745 | * @param bool $show_icons |
| 746 | 746 | * @return string |
| 747 | 747 | */ |
| 748 | - public function pretty_status( $show_icons = FALSE ) { |
|
| 749 | - $status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' ); |
|
| 748 | + public function pretty_status($show_icons = FALSE) { |
|
| 749 | + $status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence'); |
|
| 750 | 750 | $icon = ''; |
| 751 | - switch ( $this->status_ID() ) { |
|
| 751 | + switch ($this->status_ID()) { |
|
| 752 | 752 | case EEM_Registration::status_id_approved: |
| 753 | 753 | $icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : ''; |
| 754 | 754 | break; |
@@ -768,7 +768,7 @@ discard block |
||
| 768 | 768 | $icon = $show_icons ? '<span class="dashicons dashicons-no ee-icon-size-16 red-text"></span>' : ''; |
| 769 | 769 | break; |
| 770 | 770 | } |
| 771 | - return $icon . $status[ $this->status_ID() ]; |
|
| 771 | + return $icon.$status[$this->status_ID()]; |
|
| 772 | 772 | } |
| 773 | 773 | |
| 774 | 774 | |
@@ -778,7 +778,7 @@ discard block |
||
| 778 | 778 | * @access public |
| 779 | 779 | */ |
| 780 | 780 | public function att_is_going() { |
| 781 | - return $this->get( 'REG_att_is_going' ); |
|
| 781 | + return $this->get('REG_att_is_going'); |
|
| 782 | 782 | } |
| 783 | 783 | |
| 784 | 784 | |
@@ -788,8 +788,8 @@ discard block |
||
| 788 | 788 | * @param array $query_params like EEM_Base::get_all |
| 789 | 789 | * @return EE_Answer[] |
| 790 | 790 | */ |
| 791 | - public function answers( $query_params = NULL ) { |
|
| 792 | - return $this->get_many_related( 'Answer', $query_params ); |
|
| 791 | + public function answers($query_params = NULL) { |
|
| 792 | + return $this->get_many_related('Answer', $query_params); |
|
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | |
@@ -803,9 +803,9 @@ discard block |
||
| 803 | 803 | * (because the answer might be an array of answer values, so passing pretty_value=true |
| 804 | 804 | * will convert it into some kind of string) |
| 805 | 805 | */ |
| 806 | - public function answer_value_to_question( $question, $pretty_value=true ) { |
|
| 806 | + public function answer_value_to_question($question, $pretty_value = true) { |
|
| 807 | 807 | $question_id = EEM_Question::instance()->ensure_is_ID($question); |
| 808 | - return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value); |
|
| 808 | + return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value); |
|
| 809 | 809 | } |
| 810 | 810 | |
| 811 | 811 | |
@@ -818,13 +818,13 @@ discard block |
||
| 818 | 818 | */ |
| 819 | 819 | public function question_groups() { |
| 820 | 820 | $question_groups = array(); |
| 821 | - if ( $this->event() instanceof EE_Event ) { |
|
| 821 | + if ($this->event() instanceof EE_Event) { |
|
| 822 | 822 | $question_groups = $this->event()->question_groups( |
| 823 | 823 | array( |
| 824 | 824 | array( |
| 825 | 825 | 'Event_Question_Group.EQG_primary' => $this->count() == 1 ? true : false |
| 826 | 826 | ), |
| 827 | - 'order_by' => array( 'QSG_order' => 'ASC' ) |
|
| 827 | + 'order_by' => array('QSG_order' => 'ASC') |
|
| 828 | 828 | ) |
| 829 | 829 | ); |
| 830 | 830 | } |
@@ -841,7 +841,7 @@ discard block |
||
| 841 | 841 | */ |
| 842 | 842 | public function count_question_groups() { |
| 843 | 843 | $qg_count = 0; |
| 844 | - if ( $this->event() instanceof EE_Event ) { |
|
| 844 | + if ($this->event() instanceof EE_Event) { |
|
| 845 | 845 | $qg_count = $this->event()->count_related( |
| 846 | 846 | 'Question_Group', |
| 847 | 847 | array( |
@@ -862,7 +862,7 @@ discard block |
||
| 862 | 862 | * @return string |
| 863 | 863 | */ |
| 864 | 864 | public function reg_date() { |
| 865 | - return $this->get_datetime( 'REG_date' ); |
|
| 865 | + return $this->get_datetime('REG_date'); |
|
| 866 | 866 | } |
| 867 | 867 | |
| 868 | 868 | |
@@ -874,7 +874,7 @@ discard block |
||
| 874 | 874 | * @return EE_Datetime_Ticket |
| 875 | 875 | */ |
| 876 | 876 | public function datetime_ticket() { |
| 877 | - return $this->get_first_related( 'Datetime_Ticket' ); |
|
| 877 | + return $this->get_first_related('Datetime_Ticket'); |
|
| 878 | 878 | } |
| 879 | 879 | |
| 880 | 880 | |
@@ -884,15 +884,15 @@ discard block |
||
| 884 | 884 | * @param EE_Datetime_Ticket $datetime_ticket |
| 885 | 885 | * @return EE_Datetime_Ticket |
| 886 | 886 | */ |
| 887 | - public function set_datetime_ticket( $datetime_ticket ) { |
|
| 888 | - return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' ); |
|
| 887 | + public function set_datetime_ticket($datetime_ticket) { |
|
| 888 | + return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket'); |
|
| 889 | 889 | } |
| 890 | 890 | /** |
| 891 | 891 | * Gets deleted |
| 892 | 892 | * @return boolean |
| 893 | 893 | */ |
| 894 | 894 | public function deleted() { |
| 895 | - return $this->get( 'REG_deleted' ); |
|
| 895 | + return $this->get('REG_deleted'); |
|
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | /** |
@@ -901,7 +901,7 @@ discard block |
||
| 901 | 901 | * @return boolean |
| 902 | 902 | */ |
| 903 | 903 | public function set_deleted($deleted) { |
| 904 | - $this->set( 'REG_deleted', $deleted ); |
|
| 904 | + $this->set('REG_deleted', $deleted); |
|
| 905 | 905 | } |
| 906 | 906 | |
| 907 | 907 | |
@@ -911,7 +911,7 @@ discard block |
||
| 911 | 911 | * @return EE_Status |
| 912 | 912 | */ |
| 913 | 913 | public function status_obj() { |
| 914 | - return $this->get_first_related( 'Status' ); |
|
| 914 | + return $this->get_first_related('Status'); |
|
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | |
@@ -922,7 +922,7 @@ discard block |
||
| 922 | 922 | * @return int |
| 923 | 923 | */ |
| 924 | 924 | public function count_checkins() { |
| 925 | - return $this->get_model()->count_related( $this, 'Checkin' ); |
|
| 925 | + return $this->get_model()->count_related($this, 'Checkin'); |
|
| 926 | 926 | } |
| 927 | 927 | |
| 928 | 928 | |
@@ -932,7 +932,7 @@ discard block |
||
| 932 | 932 | * @return int |
| 933 | 933 | */ |
| 934 | 934 | public function count_checkins_not_checkedout() { |
| 935 | - return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) ); |
|
| 935 | + return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1))); |
|
| 936 | 936 | } |
| 937 | 937 | |
| 938 | 938 | |
@@ -945,20 +945,20 @@ discard block |
||
| 945 | 945 | * |
| 946 | 946 | * @return bool |
| 947 | 947 | */ |
| 948 | - public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) { |
|
| 949 | - $DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID ); |
|
| 948 | + public function can_checkin($DTT_OR_ID, $check_approved = TRUE) { |
|
| 949 | + $DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID); |
|
| 950 | 950 | |
| 951 | 951 | //first check registration status |
| 952 | - if ( ( $check_approved && ! $this->is_approved() ) || ! $DTT_ID ) { |
|
| 952 | + if (($check_approved && ! $this->is_approved()) || ! $DTT_ID) { |
|
| 953 | 953 | return false; |
| 954 | 954 | } |
| 955 | 955 | //is there a datetime ticket that matches this dtt_ID? |
| 956 | - if ( ! ( EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) ) ) ) { |
|
| 956 | + if ( ! (EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID))))) { |
|
| 957 | 957 | return false; |
| 958 | 958 | } |
| 959 | 959 | |
| 960 | 960 | //final check is against TKT_uses |
| 961 | - return $this->verify_can_checkin_against_TKT_uses( $DTT_ID ); |
|
| 961 | + return $this->verify_can_checkin_against_TKT_uses($DTT_ID); |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | |
@@ -971,10 +971,10 @@ discard block |
||
| 971 | 971 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
| 972 | 972 | * @return bool true means can checkin. false means cannot checkin. |
| 973 | 973 | */ |
| 974 | - public function verify_can_checkin_against_TKT_uses( $DTT_OR_ID ) { |
|
| 975 | - $DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID ); |
|
| 974 | + public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) { |
|
| 975 | + $DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID); |
|
| 976 | 976 | |
| 977 | - if ( ! $DTT_ID ) { |
|
| 977 | + if ( ! $DTT_ID) { |
|
| 978 | 978 | return false; |
| 979 | 979 | } |
| 980 | 980 | |
@@ -982,23 +982,23 @@ discard block |
||
| 982 | 982 | |
| 983 | 983 | // if max uses is not set or equals infinity then return true cause its not a factor for whether user can check-in |
| 984 | 984 | // or not. |
| 985 | - if ( ! $max_uses || $max_uses === EE_INF ) { |
|
| 985 | + if ( ! $max_uses || $max_uses === EE_INF) { |
|
| 986 | 986 | return true; |
| 987 | 987 | } |
| 988 | 988 | |
| 989 | 989 | //does this datetime have a checkin record? If so, then the dtt count has already been verified so we can just |
| 990 | 990 | //go ahead and toggle. |
| 991 | - if ( EEM_Checkin::instance()->exists( array( array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID ) ) ) ) { |
|
| 991 | + if (EEM_Checkin::instance()->exists(array(array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID)))) { |
|
| 992 | 992 | return true; |
| 993 | 993 | } |
| 994 | 994 | |
| 995 | 995 | //made it here so the last check is whether the number of checkins per unique datetime on this registration |
| 996 | 996 | //disallows further check-ins. |
| 997 | - $count_unique_dtt_checkins = EEM_Checkin::instance()->count( array( array( 'REG_ID' => $this->ID(), 'CHK_in' => true ) ), 'DTT_ID', true ); |
|
| 997 | + $count_unique_dtt_checkins = EEM_Checkin::instance()->count(array(array('REG_ID' => $this->ID(), 'CHK_in' => true)), 'DTT_ID', true); |
|
| 998 | 998 | // checkins have already reached their max number of uses |
| 999 | 999 | // so registrant can NOT checkin |
| 1000 | - if ( $count_unique_dtt_checkins >= $max_uses ) { |
|
| 1001 | - EE_Error::add_error( __( 'Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
| 1000 | + if ($count_unique_dtt_checkins >= $max_uses) { |
|
| 1001 | + EE_Error::add_error(__('Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
| 1002 | 1002 | return false; |
| 1003 | 1003 | } |
| 1004 | 1004 | return true; |
@@ -1019,15 +1019,15 @@ discard block |
||
| 1019 | 1019 | * @param bool $verify If true then can_checkin() is used to verify whether the person can be checked in or not. Otherwise this forces change in checkin status. |
| 1020 | 1020 | * @return int|BOOL the chk_in status toggled to OR false if nothing got changed. |
| 1021 | 1021 | */ |
| 1022 | - public function toggle_checkin_status( $DTT_ID = null, $verify = false ) { |
|
| 1023 | - if ( empty( $DTT_ID ) ) { |
|
| 1022 | + public function toggle_checkin_status($DTT_ID = null, $verify = false) { |
|
| 1023 | + if (empty($DTT_ID)) { |
|
| 1024 | 1024 | $datetime = $this->get_related_primary_datetime(); |
| 1025 | 1025 | $DTT_ID = $datetime->ID(); |
| 1026 | 1026 | // verify the registration can checkin for the given DTT_ID |
| 1027 | - } elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) { |
|
| 1027 | + } elseif ( ! $this->can_checkin($DTT_ID, $verify)) { |
|
| 1028 | 1028 | EE_Error::add_error( |
| 1029 | 1029 | sprintf( |
| 1030 | - __( 'The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'), |
|
| 1030 | + __('The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'), |
|
| 1031 | 1031 | $this->ID(), |
| 1032 | 1032 | $DTT_ID |
| 1033 | 1033 | ), |
@@ -1041,8 +1041,8 @@ discard block |
||
| 1041 | 1041 | EE_Registration::checkin_status_out => EE_Registration::checkin_status_in |
| 1042 | 1042 | ); |
| 1043 | 1043 | //start by getting the current status so we know what status we'll be changing to. |
| 1044 | - $cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL ); |
|
| 1045 | - $status_to = $status_paths[ $cur_status ]; |
|
| 1044 | + $cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL); |
|
| 1045 | + $status_to = $status_paths[$cur_status]; |
|
| 1046 | 1046 | // database only records true for checked IN or false for checked OUT |
| 1047 | 1047 | // no record ( null ) means checked in NEVER, but we obviously don't save that |
| 1048 | 1048 | $new_status = $status_to == EE_Registration::checkin_status_in ? true : false; |
@@ -1050,24 +1050,24 @@ discard block |
||
| 1050 | 1050 | // because we are keeping track of Check-ins over time. |
| 1051 | 1051 | // Eventually we'll probably want to show a list table |
| 1052 | 1052 | // for the individual Check-ins so that they can be managed. |
| 1053 | - $checkin = EE_Checkin::new_instance( array( |
|
| 1053 | + $checkin = EE_Checkin::new_instance(array( |
|
| 1054 | 1054 | 'REG_ID' => $this->ID(), |
| 1055 | 1055 | 'DTT_ID' => $DTT_ID, |
| 1056 | 1056 | 'CHK_in' => $new_status |
| 1057 | - ) ); |
|
| 1057 | + )); |
|
| 1058 | 1058 | // if the record could not be saved then return false |
| 1059 | - if ( $checkin->save() === 0 ) { |
|
| 1060 | - if ( WP_DEBUG ) { |
|
| 1059 | + if ($checkin->save() === 0) { |
|
| 1060 | + if (WP_DEBUG) { |
|
| 1061 | 1061 | global $wpdb; |
| 1062 | 1062 | $error = sprintf( |
| 1063 | - __( 'Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso' ), |
|
| 1063 | + __('Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso'), |
|
| 1064 | 1064 | '<br />', |
| 1065 | 1065 | $wpdb->last_error |
| 1066 | 1066 | ); |
| 1067 | 1067 | } else { |
| 1068 | - $error = __( 'Registration check in update failed because of an unknown database error', 'event_espresso' ); |
|
| 1068 | + $error = __('Registration check in update failed because of an unknown database error', 'event_espresso'); |
|
| 1069 | 1069 | } |
| 1070 | - EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ ); |
|
| 1070 | + EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__); |
|
| 1071 | 1071 | return false; |
| 1072 | 1072 | } |
| 1073 | 1073 | return $status_to; |
@@ -1091,19 +1091,19 @@ discard block |
||
| 1091 | 1091 | * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id. |
| 1092 | 1092 | * @return int Integer representing Check-in status. |
| 1093 | 1093 | */ |
| 1094 | - public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = NULL ) { |
|
| 1095 | - if ( empty( $DTT_ID ) && ! $checkin instanceof EE_Checkin ) { |
|
| 1094 | + public function check_in_status_for_datetime($DTT_ID = 0, $checkin = NULL) { |
|
| 1095 | + if (empty($DTT_ID) && ! $checkin instanceof EE_Checkin) { |
|
| 1096 | 1096 | $datetime = $this->get_related_primary_datetime(); |
| 1097 | - if ( ! $datetime instanceof EE_Datetime ) { |
|
| 1097 | + if ( ! $datetime instanceof EE_Datetime) { |
|
| 1098 | 1098 | return 0; |
| 1099 | 1099 | } |
| 1100 | 1100 | $DTT_ID = $datetime->ID(); |
| 1101 | 1101 | //verify the registration can checkin for the given DTT_ID |
| 1102 | 1102 | } |
| 1103 | 1103 | //get checkin object (if exists) |
| 1104 | - $checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related( 'Checkin', array( array( 'DTT_ID' => $DTT_ID ), 'order_by' => array( 'CHK_timestamp' => 'DESC' ) ) ); |
|
| 1105 | - if ( $checkin instanceof EE_Checkin ) { |
|
| 1106 | - if ( $checkin->get( 'CHK_in' ) ) { |
|
| 1104 | + $checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related('Checkin', array(array('DTT_ID' => $DTT_ID), 'order_by' => array('CHK_timestamp' => 'DESC'))); |
|
| 1105 | + if ($checkin instanceof EE_Checkin) { |
|
| 1106 | + if ($checkin->get('CHK_in')) { |
|
| 1107 | 1107 | return EE_Registration::checkin_status_in; //checked in |
| 1108 | 1108 | } else { |
| 1109 | 1109 | return EE_Registration::checkin_status_out; //had checked in but is now checked out. |
@@ -1121,28 +1121,28 @@ discard block |
||
| 1121 | 1121 | * @param bool $error This just flags that you want an error message returned. This is put in so that the error message can be customized with the attendee name. |
| 1122 | 1122 | * @return string internationalized message |
| 1123 | 1123 | */ |
| 1124 | - public function get_checkin_msg( $DTT_ID, $error = FALSE ) { |
|
| 1124 | + public function get_checkin_msg($DTT_ID, $error = FALSE) { |
|
| 1125 | 1125 | //let's get the attendee first so we can include the name of the attendee |
| 1126 | - $attendee = $this->get_first_related( 'Attendee' ); |
|
| 1127 | - if ( $attendee instanceof EE_Attendee ) { |
|
| 1128 | - if ( $error ) { |
|
| 1129 | - return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() ); |
|
| 1126 | + $attendee = $this->get_first_related('Attendee'); |
|
| 1127 | + if ($attendee instanceof EE_Attendee) { |
|
| 1128 | + if ($error) { |
|
| 1129 | + return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name()); |
|
| 1130 | 1130 | } |
| 1131 | - $cur_status = $this->check_in_status_for_datetime( $DTT_ID ); |
|
| 1131 | + $cur_status = $this->check_in_status_for_datetime($DTT_ID); |
|
| 1132 | 1132 | //what is the status message going to be? |
| 1133 | - switch ( $cur_status ) { |
|
| 1133 | + switch ($cur_status) { |
|
| 1134 | 1134 | case EE_Registration::checkin_status_never : |
| 1135 | - return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() ); |
|
| 1135 | + return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name()); |
|
| 1136 | 1136 | break; |
| 1137 | 1137 | case EE_Registration::checkin_status_in : |
| 1138 | - return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() ); |
|
| 1138 | + return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name()); |
|
| 1139 | 1139 | break; |
| 1140 | 1140 | case EE_Registration::checkin_status_out : |
| 1141 | - return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() ); |
|
| 1141 | + return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name()); |
|
| 1142 | 1142 | break; |
| 1143 | 1143 | } |
| 1144 | 1144 | } |
| 1145 | - return __( "The check-in status could not be determined.", "event_espresso" ); |
|
| 1145 | + return __("The check-in status could not be determined.", "event_espresso"); |
|
| 1146 | 1146 | } |
| 1147 | 1147 | |
| 1148 | 1148 | |
@@ -1152,7 +1152,7 @@ discard block |
||
| 1152 | 1152 | * @return EE_Transaction |
| 1153 | 1153 | */ |
| 1154 | 1154 | public function transaction() { |
| 1155 | - return $this->get_first_related( 'Transaction' ); |
|
| 1155 | + return $this->get_first_related('Transaction'); |
|
| 1156 | 1156 | } |
| 1157 | 1157 | |
| 1158 | 1158 | |
@@ -1163,7 +1163,7 @@ discard block |
||
| 1163 | 1163 | * @access public |
| 1164 | 1164 | */ |
| 1165 | 1165 | public function reg_code() { |
| 1166 | - return $this->get( 'REG_code' ); |
|
| 1166 | + return $this->get('REG_code'); |
|
| 1167 | 1167 | } |
| 1168 | 1168 | |
| 1169 | 1169 | |
@@ -1173,7 +1173,7 @@ discard block |
||
| 1173 | 1173 | * @access public |
| 1174 | 1174 | */ |
| 1175 | 1175 | public function transaction_ID() { |
| 1176 | - return $this->get( 'TXN_ID' ); |
|
| 1176 | + return $this->get('TXN_ID'); |
|
| 1177 | 1177 | } |
| 1178 | 1178 | |
| 1179 | 1179 | |
@@ -1182,7 +1182,7 @@ discard block |
||
| 1182 | 1182 | * @return int |
| 1183 | 1183 | */ |
| 1184 | 1184 | public function ticket_ID() { |
| 1185 | - return $this->get( 'TKT_ID' ); |
|
| 1185 | + return $this->get('TKT_ID'); |
|
| 1186 | 1186 | } |
| 1187 | 1187 | |
| 1188 | 1188 | |
@@ -1194,17 +1194,17 @@ discard block |
||
| 1194 | 1194 | * @param string $REG_code Registration Code |
| 1195 | 1195 | * @param boolean $use_default |
| 1196 | 1196 | */ |
| 1197 | - public function set_reg_code( $REG_code, $use_default = FALSE ) { |
|
| 1198 | - if ( empty( $REG_code )) { |
|
| 1199 | - EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
| 1197 | + public function set_reg_code($REG_code, $use_default = FALSE) { |
|
| 1198 | + if (empty($REG_code)) { |
|
| 1199 | + EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
| 1200 | 1200 | return; |
| 1201 | 1201 | } |
| 1202 | - if ( ! $this->reg_code() ) { |
|
| 1203 | - parent::set( 'REG_code', $REG_code, $use_default ); |
|
| 1202 | + if ( ! $this->reg_code()) { |
|
| 1203 | + parent::set('REG_code', $REG_code, $use_default); |
|
| 1204 | 1204 | } else { |
| 1205 | 1205 | EE_Error::doing_it_wrong( |
| 1206 | - __CLASS__ . '::' . __FUNCTION__, |
|
| 1207 | - __( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ), |
|
| 1206 | + __CLASS__.'::'.__FUNCTION__, |
|
| 1207 | + __('Can not change a registration REG_code once it has been set.', 'event_espresso'), |
|
| 1208 | 1208 | '4.6.0' |
| 1209 | 1209 | ); |
| 1210 | 1210 | } |
@@ -1224,17 +1224,17 @@ discard block |
||
| 1224 | 1224 | * @return EE_Registration[] or empty array if this isn't a group registration. |
| 1225 | 1225 | */ |
| 1226 | 1226 | public function get_all_other_registrations_in_group() { |
| 1227 | - if ( $this->group_size() < 2 ) { |
|
| 1227 | + if ($this->group_size() < 2) { |
|
| 1228 | 1228 | return array(); |
| 1229 | 1229 | } |
| 1230 | 1230 | |
| 1231 | 1231 | $query[0] = array( |
| 1232 | 1232 | 'TXN_ID' => $this->transaction_ID(), |
| 1233 | - 'REG_ID' => array( '!=', $this->ID() ), |
|
| 1233 | + 'REG_ID' => array('!=', $this->ID()), |
|
| 1234 | 1234 | 'TKT_ID' => $this->ticket_ID() |
| 1235 | 1235 | ); |
| 1236 | 1236 | |
| 1237 | - $registrations = $this->get_model()->get_all( $query ); |
|
| 1237 | + $registrations = $this->get_model()->get_all($query); |
|
| 1238 | 1238 | return $registrations; |
| 1239 | 1239 | } |
| 1240 | 1240 | |
@@ -1244,8 +1244,8 @@ discard block |
||
| 1244 | 1244 | * @param array $query_params |
| 1245 | 1245 | * @return \EE_Registration[] |
| 1246 | 1246 | */ |
| 1247 | - public function payments( $query_params = array() ) { |
|
| 1248 | - return $this->get_many_related( 'Payment', $query_params ); |
|
| 1247 | + public function payments($query_params = array()) { |
|
| 1248 | + return $this->get_many_related('Payment', $query_params); |
|
| 1249 | 1249 | } |
| 1250 | 1250 | |
| 1251 | 1251 | |
@@ -1254,8 +1254,8 @@ discard block |
||
| 1254 | 1254 | * @param array $query_params |
| 1255 | 1255 | * @return \EE_Registration[] |
| 1256 | 1256 | */ |
| 1257 | - public function registration_payments( $query_params = array() ) { |
|
| 1258 | - return $this->get_many_related( 'Registration_Payment', $query_params ); |
|
| 1257 | + public function registration_payments($query_params = array()) { |
|
| 1258 | + return $this->get_many_related('Registration_Payment', $query_params); |
|
| 1259 | 1259 | } |
| 1260 | 1260 | |
| 1261 | 1261 | |
@@ -1266,7 +1266,7 @@ discard block |
||
| 1266 | 1266 | * @access public |
| 1267 | 1267 | */ |
| 1268 | 1268 | public function price_paid() { |
| 1269 | - EE_Error::doing_it_wrong( 'EE_Registration::price_paid()', __( 'This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
| 1269 | + EE_Error::doing_it_wrong('EE_Registration::price_paid()', __('This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso'), '4.7.0'); |
|
| 1270 | 1270 | return $this->final_price(); |
| 1271 | 1271 | } |
| 1272 | 1272 | |
@@ -1278,9 +1278,9 @@ discard block |
||
| 1278 | 1278 | * @access public |
| 1279 | 1279 | * @param float $REG_final_price |
| 1280 | 1280 | */ |
| 1281 | - public function set_price_paid( $REG_final_price = 0.00 ) { |
|
| 1282 | - EE_Error::doing_it_wrong( 'EE_Registration::set_price_paid()', __( 'This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
| 1283 | - $this->set_final_price( $REG_final_price ); |
|
| 1281 | + public function set_price_paid($REG_final_price = 0.00) { |
|
| 1282 | + EE_Error::doing_it_wrong('EE_Registration::set_price_paid()', __('This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso'), '4.7.0'); |
|
| 1283 | + $this->set_final_price($REG_final_price); |
|
| 1284 | 1284 | } |
| 1285 | 1285 | |
| 1286 | 1286 | |
@@ -1291,7 +1291,7 @@ discard block |
||
| 1291 | 1291 | * @return string |
| 1292 | 1292 | */ |
| 1293 | 1293 | public function pretty_price_paid() { |
| 1294 | - EE_Error::doing_it_wrong( 'EE_Registration::pretty_price_paid()', __( 'This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso' ), '4.7.0' ); |
|
| 1294 | + EE_Error::doing_it_wrong('EE_Registration::pretty_price_paid()', __('This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso'), '4.7.0'); |
|
| 1295 | 1295 | return $this->pretty_final_price(); |
| 1296 | 1296 | } |
| 1297 | 1297 | |
@@ -1305,7 +1305,7 @@ discard block |
||
| 1305 | 1305 | * @return EE_Payment_Method|null |
| 1306 | 1306 | */ |
| 1307 | 1307 | public function payment_method() { |
| 1308 | - return EEM_Payment_Method::instance()->get_last_used_for_registration( $this ); |
|
| 1308 | + return EEM_Payment_Method::instance()->get_last_used_for_registration($this); |
|
| 1309 | 1309 | } |
| 1310 | 1310 | |
| 1311 | 1311 | |
@@ -618,9 +618,9 @@ |
||
| 618 | 618 | |
| 619 | 619 | |
| 620 | 620 | /** |
| 621 | - * get Attendee Number |
|
| 622 | - * @access public |
|
| 623 | - */ |
|
| 621 | + * get Attendee Number |
|
| 622 | + * @access public |
|
| 623 | + */ |
|
| 624 | 624 | public function count() { |
| 625 | 625 | return $this->get( 'REG_count' ); |
| 626 | 626 | } |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | /** |
| 202 | 202 | * Overrides parent ot also check by the slug |
| 203 | 203 | * @see EEM_Base::ensure_is_obj() |
| 204 | - * @param string|int|EE_Payment_Method $base_class_obj_or_id |
|
| 204 | + * @param EE_Payment_Method $base_class_obj_or_id |
|
| 205 | 205 | * @param boolean $ensure_is_in_db |
| 206 | 206 | * @return EE_Payment_Method |
| 207 | 207 | * @throws EE_Error |
@@ -363,8 +363,8 @@ discard block |
||
| 363 | 363 | * Note: if an offline payment method was selected on the related transaction then this will have no payment methods returned. |
| 364 | 364 | * It will ONLY return a payment method for a PAYMENT recorded against the registration. |
| 365 | 365 | * |
| 366 | - * @param EE_Registration|int $registration_or_reg_id Either the EE_Registration object or the id for the registration. |
|
| 367 | - * @return EE_Payment|null |
|
| 366 | + * @param EE_Registration $registration_or_reg_id Either the EE_Registration object or the id for the registration. |
|
| 367 | + * @return EE_Base_Class|null |
|
| 368 | 368 | */ |
| 369 | 369 | public function get_last_used_for_registration( $registration_or_reg_id ) { |
| 370 | 370 | $registration_id = EEM_Registration::instance()->ensure_is_ID( $registration_or_reg_id ); |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | -<?php if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 2 | - exit( 'No direct script access allowed' ); |
|
| 1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 2 | + exit('No direct script access allowed'); |
|
| 3 | 3 | } |
| 4 | 4 | /** |
| 5 | 5 | * |
@@ -37,33 +37,33 @@ discard block |
||
| 37 | 37 | * @access protected |
| 38 | 38 | * @return EEM_Payment_Method |
| 39 | 39 | */ |
| 40 | - protected function __construct( $timezone = NULL ) { |
|
| 41 | - $this->singlular_item = __( 'Payment Method', 'event_espresso' ); |
|
| 42 | - $this->plural_item = __( 'Payment Methods', 'event_espresso' ); |
|
| 43 | - $this->_tables = array( 'Payment_Method' => new EE_Primary_Table( 'esp_payment_method', 'PMD_ID' ) ); |
|
| 40 | + protected function __construct($timezone = NULL) { |
|
| 41 | + $this->singlular_item = __('Payment Method', 'event_espresso'); |
|
| 42 | + $this->plural_item = __('Payment Methods', 'event_espresso'); |
|
| 43 | + $this->_tables = array('Payment_Method' => new EE_Primary_Table('esp_payment_method', 'PMD_ID')); |
|
| 44 | 44 | $this->_fields = array( |
| 45 | 45 | 'Payment_Method' => array( |
| 46 | - 'PMD_ID' => new EE_Primary_Key_Int_Field( 'PMD_ID', __( "ID", 'event_espresso' ) ), |
|
| 47 | - 'PMD_type' => new EE_Plain_Text_Field( 'PMD_type', __( "Payment Method Type", 'event_espresso' ), FALSE, 'Admin_Only' ), |
|
| 48 | - 'PMD_name' => new EE_Plain_Text_Field( 'PMD_name', __( "Name", 'event_espresso' ), FALSE ), |
|
| 49 | - 'PMD_desc' => new EE_Post_Content_Field( 'PMD_desc', __( "Description", 'event_espresso' ), FALSE, '' ), |
|
| 50 | - 'PMD_admin_name' => new EE_Plain_Text_Field( 'PMD_admin_name', __( "Admin-Only Name", 'event_espresso' ), TRUE ), |
|
| 51 | - 'PMD_admin_desc' => new EE_Post_Content_Field( 'PMD_admin_desc', __( "Admin-Only Description", 'event_espresso' ), TRUE ), |
|
| 52 | - 'PMD_slug' => new EE_Slug_Field( 'PMD_slug', __( "Slug", 'event_espresso' ), FALSE ), |
|
| 53 | - 'PMD_order' => new EE_Integer_Field( 'PMD_order', __( "Order", 'event_espresso' ), FALSE, 0 ), |
|
| 54 | - 'PMD_debug_mode' => new EE_Boolean_Field( 'PMD_debug_mode', __( "Debug Mode On?", 'event_espresso' ), FALSE, FALSE ), |
|
| 55 | - 'PMD_wp_user' => new EE_WP_User_Field( 'PMD_wp_user', __( "Payment Method Creator ID", 'event_espresso' ), FALSE ), |
|
| 56 | - 'PMD_open_by_default' => new EE_Boolean_Field( 'PMD_open_by_default', __( "Open by Default?", 'event_espresso' ), FALSE, FALSE ), 'PMD_button_url' => new EE_Plain_Text_Field( 'PMD_button_url', __( "Button URL", 'event_espresso' ), TRUE, '' ), |
|
| 57 | - 'PMD_scope' => new EE_Serialized_Text_Field( 'PMD_scope', __( "Usable From?", 'event_espresso' ), FALSE, array() ), //possible values currently are 'CART','ADMIN','API' |
|
| 46 | + 'PMD_ID' => new EE_Primary_Key_Int_Field('PMD_ID', __("ID", 'event_espresso')), |
|
| 47 | + 'PMD_type' => new EE_Plain_Text_Field('PMD_type', __("Payment Method Type", 'event_espresso'), FALSE, 'Admin_Only'), |
|
| 48 | + 'PMD_name' => new EE_Plain_Text_Field('PMD_name', __("Name", 'event_espresso'), FALSE), |
|
| 49 | + 'PMD_desc' => new EE_Post_Content_Field('PMD_desc', __("Description", 'event_espresso'), FALSE, ''), |
|
| 50 | + 'PMD_admin_name' => new EE_Plain_Text_Field('PMD_admin_name', __("Admin-Only Name", 'event_espresso'), TRUE), |
|
| 51 | + 'PMD_admin_desc' => new EE_Post_Content_Field('PMD_admin_desc', __("Admin-Only Description", 'event_espresso'), TRUE), |
|
| 52 | + 'PMD_slug' => new EE_Slug_Field('PMD_slug', __("Slug", 'event_espresso'), FALSE), |
|
| 53 | + 'PMD_order' => new EE_Integer_Field('PMD_order', __("Order", 'event_espresso'), FALSE, 0), |
|
| 54 | + 'PMD_debug_mode' => new EE_Boolean_Field('PMD_debug_mode', __("Debug Mode On?", 'event_espresso'), FALSE, FALSE), |
|
| 55 | + 'PMD_wp_user' => new EE_WP_User_Field('PMD_wp_user', __("Payment Method Creator ID", 'event_espresso'), FALSE), |
|
| 56 | + 'PMD_open_by_default' => new EE_Boolean_Field('PMD_open_by_default', __("Open by Default?", 'event_espresso'), FALSE, FALSE), 'PMD_button_url' => new EE_Plain_Text_Field('PMD_button_url', __("Button URL", 'event_espresso'), TRUE, ''), |
|
| 57 | + 'PMD_scope' => new EE_Serialized_Text_Field('PMD_scope', __("Usable From?", 'event_espresso'), FALSE, array()), //possible values currently are 'CART','ADMIN','API' |
|
| 58 | 58 | ) ); |
| 59 | 59 | $this->_model_relations = array( |
| 60 | 60 | // 'Event'=>new EE_HABTM_Relation('Event_Payment_Method'), |
| 61 | 61 | 'Payment' => new EE_Has_Many_Relation(), |
| 62 | - 'Currency' => new EE_HABTM_Relation( 'Currency_Payment_Method' ), |
|
| 62 | + 'Currency' => new EE_HABTM_Relation('Currency_Payment_Method'), |
|
| 63 | 63 | 'Transaction' => new EE_Has_Many_Relation(), |
| 64 | 64 | 'WP_User' => new EE_Belongs_To_Relation(), |
| 65 | 65 | ); |
| 66 | - parent::__construct( $timezone ); |
|
| 66 | + parent::__construct($timezone); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | * @param string $slug |
| 74 | 74 | * @return EE_Payment_Method |
| 75 | 75 | */ |
| 76 | - public function get_one_by_slug( $slug ) { |
|
| 77 | - return $this->get_one( array( array( 'PMD_slug' => $slug ) ) ); |
|
| 76 | + public function get_one_by_slug($slug) { |
|
| 77 | + return $this->get_one(array(array('PMD_slug' => $slug))); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | |
@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | return apply_filters( |
| 89 | 89 | 'FHEE__EEM_Payment_Method__scopes', |
| 90 | 90 | array( |
| 91 | - self::scope_cart => __( "Front-end Registration Page", 'event_espresso' ), |
|
| 92 | - self::scope_admin => __( "Admin Registration Page (no online processing)", 'event_espresso' ) |
|
| 91 | + self::scope_cart => __("Front-end Registration Page", 'event_espresso'), |
|
| 92 | + self::scope_admin => __("Admin Registration Page (no online processing)", 'event_espresso') |
|
| 93 | 93 | ) |
| 94 | 94 | ); |
| 95 | 95 | } |
@@ -101,9 +101,9 @@ discard block |
||
| 101 | 101 | * @param string $scope like one of EEM_Payment_Method::instance()->scopes() |
| 102 | 102 | * @return boolean |
| 103 | 103 | */ |
| 104 | - public function is_valid_scope( $scope ) { |
|
| 104 | + public function is_valid_scope($scope) { |
|
| 105 | 105 | $scopes = $this->scopes(); |
| 106 | - if ( isset( $scopes[ $scope ] ) ) { |
|
| 106 | + if (isset($scopes[$scope])) { |
|
| 107 | 107 | return TRUE; |
| 108 | 108 | } else { |
| 109 | 109 | return FALSE; |
@@ -119,11 +119,11 @@ discard block |
||
| 119 | 119 | * @throws EE_Error |
| 120 | 120 | * @return EE_Payment_Method[] |
| 121 | 121 | */ |
| 122 | - public function get_all_active( $scope = NULL, $query_params = array() ) { |
|
| 123 | - if( ! isset( $query_params[ 'order_by' ] ) && ! isset( $query_params[ 'order' ] ) ) { |
|
| 124 | - $query_params = array( 'order_by' => array( 'PMD_order' => 'ASC', 'PMD_ID' => 'ASC' ) ); |
|
| 122 | + public function get_all_active($scope = NULL, $query_params = array()) { |
|
| 123 | + if ( ! isset($query_params['order_by']) && ! isset($query_params['order'])) { |
|
| 124 | + $query_params = array('order_by' => array('PMD_order' => 'ASC', 'PMD_ID' => 'ASC')); |
|
| 125 | 125 | } |
| 126 | - return $this->get_all( $this->_get_query_params_for_all_active( $scope, $query_params ) ); |
|
| 126 | + return $this->get_all($this->_get_query_params_for_all_active($scope, $query_params)); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | /** |
@@ -132,8 +132,8 @@ discard block |
||
| 132 | 132 | * @param array $query_params |
| 133 | 133 | * @return int |
| 134 | 134 | */ |
| 135 | - public function count_active( $scope = NULL, $query_params = array() ){ |
|
| 136 | - return $this->count( $this->_get_query_params_for_all_active( $scope, $query_params ) ); |
|
| 135 | + public function count_active($scope = NULL, $query_params = array()) { |
|
| 136 | + return $this->count($this->_get_query_params_for_all_active($scope, $query_params)); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -144,21 +144,21 @@ discard block |
||
| 144 | 144 | * @return array like param of EEM_Base::get_all() |
| 145 | 145 | * @throws EE_Error |
| 146 | 146 | */ |
| 147 | - protected function _get_query_params_for_all_active( $scope = NULL, $query_params = array() ){ |
|
| 148 | - if ( $scope ) { |
|
| 149 | - if ( $this->is_valid_scope( $scope ) ) { |
|
| 150 | - return array_replace_recursive( array( array( 'PMD_scope' => array( 'LIKE', "%$scope%" ) ) ), $query_params ); |
|
| 147 | + protected function _get_query_params_for_all_active($scope = NULL, $query_params = array()) { |
|
| 148 | + if ($scope) { |
|
| 149 | + if ($this->is_valid_scope($scope)) { |
|
| 150 | + return array_replace_recursive(array(array('PMD_scope' => array('LIKE', "%$scope%"))), $query_params); |
|
| 151 | 151 | } else { |
| 152 | - throw new EE_Error( sprintf( __( "'%s' is not a valid scope for a payment method", "event_espresso" ), $scope ) ); |
|
| 152 | + throw new EE_Error(sprintf(__("'%s' is not a valid scope for a payment method", "event_espresso"), $scope)); |
|
| 153 | 153 | } |
| 154 | 154 | } else { |
| 155 | 155 | $acceptable_scopes = array(); |
| 156 | 156 | $count = 0; |
| 157 | - foreach ( $this->scopes() as $scope_name => $desc ) { |
|
| 157 | + foreach ($this->scopes() as $scope_name => $desc) { |
|
| 158 | 158 | $count++; |
| 159 | - $acceptable_scopes[ 'PMD_scope*' . $count ] = array( 'LIKE', '%' . $scope_name . '%' ); |
|
| 159 | + $acceptable_scopes['PMD_scope*'.$count] = array('LIKE', '%'.$scope_name.'%'); |
|
| 160 | 160 | } |
| 161 | - return array_replace_recursive( array( array( 'OR*active_scope' => $acceptable_scopes ) ), $query_params ); |
|
| 161 | + return array_replace_recursive(array(array('OR*active_scope' => $acceptable_scopes)), $query_params); |
|
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | * @return array like param of EEM_Base::get_all() |
| 171 | 171 | * @throws EE_Error |
| 172 | 172 | */ |
| 173 | - public function get_query_params_for_all_active( $scope = NULL, $query_params = array() ) { |
|
| 174 | - return $this->_get_query_params_for_all_active( $scope, $query_params ); |
|
| 173 | + public function get_query_params_for_all_active($scope = NULL, $query_params = array()) { |
|
| 174 | + return $this->_get_query_params_for_all_active($scope, $query_params); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | |
@@ -181,8 +181,8 @@ discard block |
||
| 181 | 181 | * @param array $query_params |
| 182 | 182 | * @return EE_Payment_Method |
| 183 | 183 | */ |
| 184 | - public function get_one_active( $scope = NULL, $query_params = array() ) { |
|
| 185 | - return $this->get_one( $this->_get_query_params_for_all_active( $scope, $query_params ) ); |
|
| 184 | + public function get_one_active($scope = NULL, $query_params = array()) { |
|
| 185 | + return $this->get_one($this->_get_query_params_for_all_active($scope, $query_params)); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | |
@@ -192,8 +192,8 @@ discard block |
||
| 192 | 192 | * @param string $type |
| 193 | 193 | * @return EE_Payment_Method |
| 194 | 194 | */ |
| 195 | - public function get_one_of_type( $type ) { |
|
| 196 | - return $this->get_one( array( array( 'PMD_type' => $type ) ) ); |
|
| 195 | + public function get_one_of_type($type) { |
|
| 196 | + return $this->get_one(array(array('PMD_type' => $type))); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | |
@@ -206,22 +206,22 @@ discard block |
||
| 206 | 206 | * @return EE_Payment_Method |
| 207 | 207 | * @throws EE_Error |
| 208 | 208 | */ |
| 209 | - public function ensure_is_obj( $base_class_obj_or_id, $ensure_is_in_db = FALSE ) { |
|
| 209 | + public function ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db = FALSE) { |
|
| 210 | 210 | //first: check if it's a slug |
| 211 | - if( is_string( $base_class_obj_or_id ) ) { |
|
| 212 | - $obj = $this->get_one_by_slug( $base_class_obj_or_id ); |
|
| 213 | - if( $obj ) { |
|
| 211 | + if (is_string($base_class_obj_or_id)) { |
|
| 212 | + $obj = $this->get_one_by_slug($base_class_obj_or_id); |
|
| 213 | + if ($obj) { |
|
| 214 | 214 | return $obj; |
| 215 | 215 | } |
| 216 | 216 | } |
| 217 | 217 | //ok so it wasn't a slug we were passed. try the usual then (ie, it's an object or an ID) |
| 218 | 218 | try { |
| 219 | - return parent::ensure_is_obj( $base_class_obj_or_id, $ensure_is_in_db ); |
|
| 219 | + return parent::ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db); |
|
| 220 | 220 | } |
| 221 | - catch ( EE_Error $e ) { |
|
| 221 | + catch (EE_Error $e) { |
|
| 222 | 222 | //handle it outside the catch |
| 223 | 223 | } |
| 224 | - throw new EE_Error( sprintf( __( "'%s' is neither a Payment Method ID, slug, nor object.", "event_espresso" ), $base_class_obj_or_id ) ); |
|
| 224 | + throw new EE_Error(sprintf(__("'%s' is neither a Payment Method ID, slug, nor object.", "event_espresso"), $base_class_obj_or_id)); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | |
@@ -232,12 +232,12 @@ discard block |
||
| 232 | 232 | * @param mixed $base_obj_or_id_or_slug |
| 233 | 233 | * @return int |
| 234 | 234 | */ |
| 235 | - function ensure_is_ID( $base_obj_or_id_or_slug ) { |
|
| 236 | - if ( is_string( $base_obj_or_id_or_slug ) ) { |
|
| 235 | + function ensure_is_ID($base_obj_or_id_or_slug) { |
|
| 236 | + if (is_string($base_obj_or_id_or_slug)) { |
|
| 237 | 237 | //assume it's a slug |
| 238 | - $base_obj_or_id_or_slug = $this->get_one_by_slug( $base_obj_or_id_or_slug ); |
|
| 238 | + $base_obj_or_id_or_slug = $this->get_one_by_slug($base_obj_or_id_or_slug); |
|
| 239 | 239 | } |
| 240 | - return parent::ensure_is_ID( $base_obj_or_id_or_slug ); |
|
| 240 | + return parent::ensure_is_ID($base_obj_or_id_or_slug); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | |
@@ -246,37 +246,37 @@ discard block |
||
| 246 | 246 | * Verifies the button urls on all the passed payment methods have a valid button url. If not, resets them to their default. |
| 247 | 247 | * @param EE_Payment_Method[] $payment_methods. If NULL is provided defaults to all payment methods active in the cart |
| 248 | 248 | */ |
| 249 | - function verify_button_urls( $payment_methods = NULL ) { |
|
| 250 | - EE_Registry::instance()->load_helper( 'URL' ); |
|
| 251 | - $payment_methods = is_array( $payment_methods ) ? $payment_methods : $this->get_all_active(EEM_Payment_Method::scope_cart); |
|
| 252 | - foreach ( $payment_methods as $payment_method ) { |
|
| 249 | + function verify_button_urls($payment_methods = NULL) { |
|
| 250 | + EE_Registry::instance()->load_helper('URL'); |
|
| 251 | + $payment_methods = is_array($payment_methods) ? $payment_methods : $this->get_all_active(EEM_Payment_Method::scope_cart); |
|
| 252 | + foreach ($payment_methods as $payment_method) { |
|
| 253 | 253 | try { |
| 254 | 254 | $current_button_url = $payment_method->button_url(); |
| 255 | - $buttons_urls_to_try = apply_filters( 'FHEE__EEM_Payment_Method__verify_button_urls__button_urls_to_try', array( |
|
| 256 | - 'current_ssl' => str_replace( "http://", "https://", $current_button_url ), |
|
| 257 | - 'current' => str_replace( "https://", "http://", $current_button_url ), |
|
| 258 | - 'default_ssl' => str_replace( "http://", "https://", $payment_method->type_obj()->default_button_url() ), |
|
| 259 | - 'default' => str_replace( "https://", "http://", $payment_method->type_obj()->default_button_url() ), |
|
| 260 | - ) ); |
|
| 261 | - foreach( $buttons_urls_to_try as $button_url_to_try ) { |
|
| 262 | - if( |
|
| 255 | + $buttons_urls_to_try = apply_filters('FHEE__EEM_Payment_Method__verify_button_urls__button_urls_to_try', array( |
|
| 256 | + 'current_ssl' => str_replace("http://", "https://", $current_button_url), |
|
| 257 | + 'current' => str_replace("https://", "http://", $current_button_url), |
|
| 258 | + 'default_ssl' => str_replace("http://", "https://", $payment_method->type_obj()->default_button_url()), |
|
| 259 | + 'default' => str_replace("https://", "http://", $payment_method->type_obj()->default_button_url()), |
|
| 260 | + )); |
|
| 261 | + foreach ($buttons_urls_to_try as $button_url_to_try) { |
|
| 262 | + if ( |
|
| 263 | 263 | (//this is the current url and it exists, regardless of SSL issues |
| 264 | 264 | $button_url_to_try == $current_button_url && |
| 265 | 265 | EEH_URL::remote_file_exists( |
| 266 | 266 | $button_url_to_try, |
| 267 | 267 | array( |
| 268 | 268 | 'sslverify' => false, |
| 269 | - 'limit_response_size' => 4095,//we don't really care for a full response, but we do want headers at least. Lets just ask for a one block |
|
| 269 | + 'limit_response_size' => 4095, //we don't really care for a full response, but we do want headers at least. Lets just ask for a one block |
|
| 270 | 270 | ) ) |
| 271 | 271 | ) |
| 272 | 272 | || |
| 273 | 273 | (//this is NOT the current url and it exists with a working SSL cert |
| 274 | 274 | $button_url_to_try != $current_button_url && |
| 275 | - EEH_URL::remote_file_exists( $button_url_to_try ) |
|
| 275 | + EEH_URL::remote_file_exists($button_url_to_try) |
|
| 276 | 276 | ) ) { |
| 277 | - if( $current_button_url != $button_url_to_try ){ |
|
| 278 | - $payment_method->save( array( 'PMD_button_url' => $button_url_to_try ) ); |
|
| 279 | - EE_Error::add_attention( sprintf( __( "Payment Method %s's button url was set to %s, because the old image either didnt exist or SSL was recently enabled.", "event_espresso" ), $payment_method->name(), $button_url_to_try ) ); |
|
| 277 | + if ($current_button_url != $button_url_to_try) { |
|
| 278 | + $payment_method->save(array('PMD_button_url' => $button_url_to_try)); |
|
| 279 | + EE_Error::add_attention(sprintf(__("Payment Method %s's button url was set to %s, because the old image either didnt exist or SSL was recently enabled.", "event_espresso"), $payment_method->name(), $button_url_to_try)); |
|
| 280 | 280 | } |
| 281 | 281 | //this image exists. So if wasn't set before, now it is; |
| 282 | 282 | //or if it was already set, we have nothing to do |
@@ -284,8 +284,8 @@ discard block |
||
| 284 | 284 | } |
| 285 | 285 | } |
| 286 | 286 | } |
| 287 | - catch ( EE_Error $e ) { |
|
| 288 | - $payment_method->set_active( FALSE ); |
|
| 287 | + catch (EE_Error $e) { |
|
| 288 | + $payment_method->set_active(FALSE); |
|
| 289 | 289 | } |
| 290 | 290 | } |
| 291 | 291 | } |
@@ -299,16 +299,16 @@ discard block |
||
| 299 | 299 | * @param array $rows |
| 300 | 300 | * @return EE_Payment_Method[] |
| 301 | 301 | */ |
| 302 | - protected function _create_objects( $rows = array() ) { |
|
| 303 | - $payment_methods = parent::_create_objects( $rows ); |
|
| 302 | + protected function _create_objects($rows = array()) { |
|
| 303 | + $payment_methods = parent::_create_objects($rows); |
|
| 304 | 304 | /* @var $payment_methods EE_Payment_Method[] */ |
| 305 | 305 | $usable_payment_methods = array(); |
| 306 | - foreach ( $payment_methods as $key => $payment_method ) { |
|
| 306 | + foreach ($payment_methods as $key => $payment_method) { |
|
| 307 | 307 | try { |
| 308 | 308 | $payment_method->type_obj(); |
| 309 | - $usable_payment_methods[ $key ] = $payment_method; |
|
| 309 | + $usable_payment_methods[$key] = $payment_method; |
|
| 310 | 310 | } |
| 311 | - catch ( EE_Error $e ) { |
|
| 311 | + catch (EE_Error $e) { |
|
| 312 | 312 | //if it threw an exception, its because the payment type object |
| 313 | 313 | //isn't defined (probably because somehow the DB got borked, |
| 314 | 314 | //or an addon which defined it got deactivated |
@@ -317,10 +317,10 @@ discard block |
||
| 317 | 317 | $payment_method->save(); |
| 318 | 318 | EE_Error::add_attention( |
| 319 | 319 | sprintf( |
| 320 | - __( 'An error occurred while attempting to use the "%1$s" payment method, so it was deactivated.%2$sWas the "%1$s" Plugin recently deactivated?%2$sIt can be reactivated on the %3$sPlugins admin page%4$s||%2$sThe actual error was:%2$s%5$s', 'event_espresso' ), |
|
| 320 | + __('An error occurred while attempting to use the "%1$s" payment method, so it was deactivated.%2$sWas the "%1$s" Plugin recently deactivated?%2$sIt can be reactivated on the %3$sPlugins admin page%4$s||%2$sThe actual error was:%2$s%5$s', 'event_espresso'), |
|
| 321 | 321 | $payment_method->name(), |
| 322 | 322 | '<br />', |
| 323 | - '<a href="' . admin_url('plugins.php') . '">', |
|
| 323 | + '<a href="'.admin_url('plugins.php').'">', |
|
| 324 | 324 | '</a>', |
| 325 | 325 | $e->getMessage() |
| 326 | 326 | ), |
@@ -341,16 +341,16 @@ discard block |
||
| 341 | 341 | * @param string $scope @see EEM_Payment_Method::get_all_for_events |
| 342 | 342 | * @return EE_Payment_Method[] |
| 343 | 343 | */ |
| 344 | - public function get_all_for_transaction( $transaction, $scope ) { |
|
| 344 | + public function get_all_for_transaction($transaction, $scope) { |
|
| 345 | 345 | //@todo take relations between events and payment methods into account, once that relation exists |
| 346 | - if ( $transaction instanceof EE_Transaction ) { |
|
| 346 | + if ($transaction instanceof EE_Transaction) { |
|
| 347 | 347 | //@todo take the relation between transaction and currencies into account |
| 348 | 348 | } |
| 349 | - $currencies_for_events = array( EE_Config::instance()->currency->code ); |
|
| 349 | + $currencies_for_events = array(EE_Config::instance()->currency->code); |
|
| 350 | 350 | //give addons a chance to override what payment methods are chosen based on the transaction |
| 351 | 351 | return apply_filters( |
| 352 | 352 | 'FHEE__EEM_Payment_Method__get_all_for_transaction__payment_methods', |
| 353 | - $this->get_all_active( $scope, array( array( 'Currency.CUR_code' => array( 'IN', $currencies_for_events ) ) ) ), |
|
| 353 | + $this->get_all_active($scope, array(array('Currency.CUR_code' => array('IN', $currencies_for_events)))), |
|
| 354 | 354 | $transaction, |
| 355 | 355 | $scope |
| 356 | 356 | ); |
@@ -366,16 +366,16 @@ discard block |
||
| 366 | 366 | * @param EE_Registration|int $registration_or_reg_id Either the EE_Registration object or the id for the registration. |
| 367 | 367 | * @return EE_Payment|null |
| 368 | 368 | */ |
| 369 | - public function get_last_used_for_registration( $registration_or_reg_id ) { |
|
| 370 | - $registration_id = EEM_Registration::instance()->ensure_is_ID( $registration_or_reg_id ); |
|
| 369 | + public function get_last_used_for_registration($registration_or_reg_id) { |
|
| 370 | + $registration_id = EEM_Registration::instance()->ensure_is_ID($registration_or_reg_id); |
|
| 371 | 371 | |
| 372 | 372 | $query_params = array( |
| 373 | 373 | 0 => array( |
| 374 | 374 | 'Payment.Registration.REG_ID' => $registration_id, |
| 375 | 375 | ), |
| 376 | - 'order_by' => array( 'Payment.PAY_ID' => 'DESC' ) |
|
| 376 | + 'order_by' => array('Payment.PAY_ID' => 'DESC') |
|
| 377 | 377 | ); |
| 378 | - return $this->get_one( $query_params ); |
|
| 378 | + return $this->get_one($query_params); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | } |
@@ -57,20 +57,20 @@ discard block |
||
| 57 | 57 | * @param \EE_Admin_Page $admin_page |
| 58 | 58 | * @return EE_Registrations_List_Table |
| 59 | 59 | */ |
| 60 | - function __construct( $admin_page ){ |
|
| 60 | + function __construct($admin_page) { |
|
| 61 | 61 | |
| 62 | - if ( ! empty( $_GET['event_id'] ) ) { |
|
| 62 | + if ( ! empty($_GET['event_id'])) { |
|
| 63 | 63 | $extra_query_args = array(); |
| 64 | - foreach ( $admin_page->get_views() as $key => $view_details ) { |
|
| 65 | - $extra_query_args[$view_details['slug']] = array( 'event_id' => $_GET['event_id'] ); |
|
| 64 | + foreach ($admin_page->get_views() as $key => $view_details) { |
|
| 65 | + $extra_query_args[$view_details['slug']] = array('event_id' => $_GET['event_id']); |
|
| 66 | 66 | } |
| 67 | - $this->_views = $admin_page->get_list_table_view_RLs( $extra_query_args ); |
|
| 67 | + $this->_views = $admin_page->get_list_table_view_RLs($extra_query_args); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | parent::__construct($admin_page); |
| 71 | 71 | $this->_status = $this->_admin_page->get_registration_status_array(); |
| 72 | 72 | |
| 73 | - EE_Registry::instance()->load_helper( 'Template' ); |
|
| 73 | + EE_Registry::instance()->load_helper('Template'); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | |
@@ -81,8 +81,8 @@ discard block |
||
| 81 | 81 | * @return void |
| 82 | 82 | */ |
| 83 | 83 | protected function _setup_data() { |
| 84 | - $this->_data = $this->_admin_page->get_registrations( $this->_per_page ); |
|
| 85 | - $this->_all_data_count = $this->_admin_page->get_registrations( $this->_per_page, TRUE, FALSE, FALSE ); |
|
| 84 | + $this->_data = $this->_admin_page->get_registrations($this->_per_page); |
|
| 85 | + $this->_all_data_count = $this->_admin_page->get_registrations($this->_per_page, TRUE, FALSE, FALSE); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | |
@@ -101,45 +101,45 @@ discard block |
||
| 101 | 101 | ); |
| 102 | 102 | |
| 103 | 103 | |
| 104 | - if ( isset( $_GET['event_id'] )) { |
|
| 104 | + if (isset($_GET['event_id'])) { |
|
| 105 | 105 | $this->_columns = array( |
| 106 | 106 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
| 107 | - '_REG_ID' => __( 'ID', 'event_espresso' ), |
|
| 108 | - 'ATT_fname' => __( 'Name', 'event_espresso' ), |
|
| 107 | + '_REG_ID' => __('ID', 'event_espresso'), |
|
| 108 | + 'ATT_fname' => __('Name', 'event_espresso'), |
|
| 109 | 109 | 'ATT_email' => __('Email', 'event_espresso'), |
| 110 | - '_REG_date' => __( 'Reg Date', 'event_espresso' ), |
|
| 111 | - 'PRC_amount' => __( 'TKT Price', 'event_espresso' ), |
|
| 112 | - '_REG_final_price' => __( 'Final Price', 'event_espresso' ), |
|
| 113 | - 'TXN_total' => __( 'Total Txn', 'event_espresso' ), |
|
| 110 | + '_REG_date' => __('Reg Date', 'event_espresso'), |
|
| 111 | + 'PRC_amount' => __('TKT Price', 'event_espresso'), |
|
| 112 | + '_REG_final_price' => __('Final Price', 'event_espresso'), |
|
| 113 | + 'TXN_total' => __('Total Txn', 'event_espresso'), |
|
| 114 | 114 | 'TXN_paid' => __('Paid', 'event_espresso'), |
| 115 | - 'actions' => __( 'Actions', 'event_espresso' ) |
|
| 115 | + 'actions' => __('Actions', 'event_espresso') |
|
| 116 | 116 | ); |
| 117 | 117 | $this->_bottom_buttons = array( |
| 118 | 118 | 'report'=> array( |
| 119 | 119 | 'route' => 'registrations_report', |
| 120 | 120 | 'extra_request' => |
| 121 | 121 | array( |
| 122 | - 'EVT_ID'=> isset( $this->_req_data['event_id'] ) ? $this->_req_data['event_id'] : null, |
|
| 123 | - 'return_url' => urlencode( "//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}" ) ) |
|
| 122 | + 'EVT_ID'=> isset($this->_req_data['event_id']) ? $this->_req_data['event_id'] : null, |
|
| 123 | + 'return_url' => urlencode("//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}") ) |
|
| 124 | 124 | ), |
| 125 | 125 | ); |
| 126 | 126 | } else { |
| 127 | 127 | $this->_columns = array( |
| 128 | 128 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
| 129 | - '_REG_ID' => __( 'ID', 'event_espresso' ), |
|
| 130 | - 'ATT_fname' => __( 'Name', 'event_espresso' ), |
|
| 131 | - '_REG_date' => __( 'TXN Date', 'event_espresso' ), |
|
| 132 | - 'event_name' => __( 'Event', 'event_espresso' ), |
|
| 133 | - 'DTT_EVT_start' => __( 'Event Date', 'event_espresso' ), |
|
| 134 | - '_REG_final_price' => __( 'Price', 'event_espresso' ), |
|
| 135 | - '_REG_paid' => __( 'Paid', 'event_espresso' ), |
|
| 136 | - 'actions' => __( 'Actions', 'event_espresso' ) |
|
| 129 | + '_REG_ID' => __('ID', 'event_espresso'), |
|
| 130 | + 'ATT_fname' => __('Name', 'event_espresso'), |
|
| 131 | + '_REG_date' => __('TXN Date', 'event_espresso'), |
|
| 132 | + 'event_name' => __('Event', 'event_espresso'), |
|
| 133 | + 'DTT_EVT_start' => __('Event Date', 'event_espresso'), |
|
| 134 | + '_REG_final_price' => __('Price', 'event_espresso'), |
|
| 135 | + '_REG_paid' => __('Paid', 'event_espresso'), |
|
| 136 | + 'actions' => __('Actions', 'event_espresso') |
|
| 137 | 137 | ); |
| 138 | 138 | $this->_bottom_buttons = array( |
| 139 | 139 | 'report_all'=> array( |
| 140 | 140 | 'route' => 'registrations_report', |
| 141 | 141 | 'extra_request' => array( |
| 142 | - 'return_url' => urlencode( "//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}" ) ) |
|
| 142 | + 'return_url' => urlencode("//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}") ) |
|
| 143 | 143 | ), |
| 144 | 144 | ); |
| 145 | 145 | } |
@@ -147,11 +147,11 @@ discard block |
||
| 147 | 147 | $this->_primary_column = '_REG_ID'; |
| 148 | 148 | |
| 149 | 149 | $this->_sortable_columns = array( |
| 150 | - '_REG_date' => array( '_REG_date' => TRUE ), //true means its already sorted |
|
| 151 | - 'ATT_fname' => array( 'ATT_fname' => FALSE ), |
|
| 152 | - 'event_name' => array( 'event_name' => FALSE ), |
|
| 153 | - 'DTT_EVT_start' => array( 'DTT_EVT_start' => FALSE ), |
|
| 154 | - '_REG_ID' => array( '_REG_ID' => FALSE ), |
|
| 150 | + '_REG_date' => array('_REG_date' => TRUE), //true means its already sorted |
|
| 151 | + 'ATT_fname' => array('ATT_fname' => FALSE), |
|
| 152 | + 'event_name' => array('event_name' => FALSE), |
|
| 153 | + 'DTT_EVT_start' => array('DTT_EVT_start' => FALSE), |
|
| 154 | + '_REG_ID' => array('_REG_ID' => FALSE), |
|
| 155 | 155 | ); |
| 156 | 156 | |
| 157 | 157 | $this->_hidden_columns = array(); |
@@ -160,11 +160,11 @@ discard block |
||
| 160 | 160 | |
| 161 | 161 | |
| 162 | 162 | |
| 163 | - protected function _get_row_class( $item ) { |
|
| 164 | - $class = parent::_get_row_class( $item ); |
|
| 163 | + protected function _get_row_class($item) { |
|
| 164 | + $class = parent::_get_row_class($item); |
|
| 165 | 165 | //add status class |
| 166 | - $class .= ' ee-status-strip reg-status-' . $item->status_ID(); |
|
| 167 | - if ( $this->_has_checkbox_column ) { |
|
| 166 | + $class .= ' ee-status-strip reg-status-'.$item->status_ID(); |
|
| 167 | + if ($this->_has_checkbox_column) { |
|
| 168 | 168 | $class .= ' has-checkbox-column'; |
| 169 | 169 | } |
| 170 | 170 | return $class; |
@@ -177,15 +177,15 @@ discard block |
||
| 177 | 177 | * |
| 178 | 178 | * @param EE_Registration $registration |
| 179 | 179 | */ |
| 180 | - protected function _set_related_details( EE_Registration $registration ) { |
|
| 180 | + protected function _set_related_details(EE_Registration $registration) { |
|
| 181 | 181 | |
| 182 | - $transaction = $registration->get_first_related( 'Transaction' ); |
|
| 182 | + $transaction = $registration->get_first_related('Transaction'); |
|
| 183 | 183 | $status = $transaction instanceof EE_Transaction ? $transaction->status_ID() : EEM_Transaction::failed_status_code; |
| 184 | 184 | $this->_transaction_details = array( |
| 185 | 185 | 'transaction' => $transaction, |
| 186 | 186 | 'status' => $status, |
| 187 | 187 | 'id' => $transaction instanceof EE_Transaction ? $transaction->ID() : 0, |
| 188 | - 'title_attr' => sprintf( __('View Transaction Details (%s)', 'event_espresso'), EEH_Template::pretty_status( $status, false, 'sentence' ) ) |
|
| 188 | + 'title_attr' => sprintf(__('View Transaction Details (%s)', 'event_espresso'), EEH_Template::pretty_status($status, false, 'sentence')) |
|
| 189 | 189 | ); |
| 190 | 190 | |
| 191 | 191 | $event = $registration->event(); |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | 'event' => $event, |
| 195 | 195 | 'status' => $status, |
| 196 | 196 | 'id' => $event instanceof EE_Event ? $event->ID() : 0, |
| 197 | - 'title_attr' => sprintf( __('Edit Event (%s)', 'event_espresso'), EEH_Template::pretty_status( $status, false, 'sentence' ) ) |
|
| 197 | + 'title_attr' => sprintf(__('Edit Event (%s)', 'event_espresso'), EEH_Template::pretty_status($status, false, 'sentence')) |
|
| 198 | 198 | ); |
| 199 | 199 | } |
| 200 | 200 | |
@@ -209,26 +209,26 @@ discard block |
||
| 209 | 209 | $filters = array(); |
| 210 | 210 | |
| 211 | 211 | //todo we're currently using old functions here. We need to move things into the Events_Admin_Page() class as methods. |
| 212 | - EE_Registry::instance()->load_helper( 'Form_Fields' ); |
|
| 212 | + EE_Registry::instance()->load_helper('Form_Fields'); |
|
| 213 | 213 | |
| 214 | - $cur_date = isset( $this->_req_data['month_range'] ) ? $this->_req_data['month_range'] : ''; |
|
| 215 | - $cur_category = isset( $this->_req_data['EVT_CAT'] ) ? $this->_req_data['EVT_CAT'] : -1; |
|
| 216 | - $reg_status = isset( $this->_req_data['_reg_status'] ) ? $this->_req_data['_reg_status'] : ''; |
|
| 214 | + $cur_date = isset($this->_req_data['month_range']) ? $this->_req_data['month_range'] : ''; |
|
| 215 | + $cur_category = isset($this->_req_data['EVT_CAT']) ? $this->_req_data['EVT_CAT'] : -1; |
|
| 216 | + $reg_status = isset($this->_req_data['_reg_status']) ? $this->_req_data['_reg_status'] : ''; |
|
| 217 | 217 | |
| 218 | - $filters[] = EEH_Form_Fields::generate_registration_months_dropdown( $cur_date, $reg_status, $cur_category ); |
|
| 219 | - $filters[] = EEH_Form_Fields::generate_event_category_dropdown( $cur_category ); |
|
| 218 | + $filters[] = EEH_Form_Fields::generate_registration_months_dropdown($cur_date, $reg_status, $cur_category); |
|
| 219 | + $filters[] = EEH_Form_Fields::generate_event_category_dropdown($cur_category); |
|
| 220 | 220 | |
| 221 | 221 | $status = array(); |
| 222 | - $status[] = array( 'id' => 0, 'text' => __('Select Status', 'event_espresso') ); |
|
| 223 | - foreach ( $this->_status as $key => $value ) { |
|
| 224 | - $status[] = array( 'id' => $key, 'text' => $value ); |
|
| 222 | + $status[] = array('id' => 0, 'text' => __('Select Status', 'event_espresso')); |
|
| 223 | + foreach ($this->_status as $key => $value) { |
|
| 224 | + $status[] = array('id' => $key, 'text' => $value); |
|
| 225 | 225 | } |
| 226 | - if ( $this->_view != 'incomplete' ) { |
|
| 227 | - $filters[] = EEH_Form_Fields::select_input('_reg_status', $status, isset( $this->_req_data['_reg_status'] ) ? strtoupper( sanitize_key( $this->_req_data['_reg_status'] )) : '' ); |
|
| 226 | + if ($this->_view != 'incomplete') { |
|
| 227 | + $filters[] = EEH_Form_Fields::select_input('_reg_status', $status, isset($this->_req_data['_reg_status']) ? strtoupper(sanitize_key($this->_req_data['_reg_status'])) : ''); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - if ( isset( $this->_req_data['event_id'] ) ) { |
|
| 231 | - $filters[] = EEH_Form_Fields::hidden_input( 'event_id', $this->_req_data['event_id'], 'reg_event_id' ); |
|
| 230 | + if (isset($this->_req_data['event_id'])) { |
|
| 231 | + $filters[] = EEH_Form_Fields::hidden_input('event_id', $this->_req_data['event_id'], 'reg_event_id'); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | return $filters; |
@@ -245,9 +245,9 @@ discard block |
||
| 245 | 245 | $this->_views['all']['count'] = $this->_total_registrations(); |
| 246 | 246 | $this->_views['month']['count'] = $this->_total_registrations_this_month(); |
| 247 | 247 | $this->_views['today']['count'] = $this->_total_registrations_today(); |
| 248 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_registrations', 'espresso_registrations_trash_registrations' ) ) { |
|
| 249 | - $this->_views['incomplete']['count'] = $this->_total_registrations( 'incomplete' ); |
|
| 250 | - $this->_views['trash']['count'] = $this->_total_registrations( 'trash' ); |
|
| 248 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_registrations', 'espresso_registrations_trash_registrations')) { |
|
| 249 | + $this->_views['incomplete']['count'] = $this->_total_registrations('incomplete'); |
|
| 250 | + $this->_views['trash']['count'] = $this->_total_registrations('trash'); |
|
| 251 | 251 | } |
| 252 | 252 | } |
| 253 | 253 | |
@@ -259,23 +259,23 @@ discard block |
||
| 259 | 259 | * @param string $view |
| 260 | 260 | * @return int |
| 261 | 261 | */ |
| 262 | - protected function _total_registrations( $view = '' ){ |
|
| 262 | + protected function _total_registrations($view = '') { |
|
| 263 | 263 | $_where = array(); |
| 264 | - $EVT_ID = isset( $this->_req_data['event_id'] ) ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
| 265 | - if( $EVT_ID ) { |
|
| 264 | + $EVT_ID = isset($this->_req_data['event_id']) ? absint($this->_req_data['event_id']) : FALSE; |
|
| 265 | + if ($EVT_ID) { |
|
| 266 | 266 | $_where['EVT_ID'] = $EVT_ID; |
| 267 | 267 | } |
| 268 | - switch ( $view ) { |
|
| 268 | + switch ($view) { |
|
| 269 | 269 | case 'trash' : |
| 270 | - return EEM_Registration::instance()->count_deleted( array( $_where )); |
|
| 270 | + return EEM_Registration::instance()->count_deleted(array($_where)); |
|
| 271 | 271 | break; |
| 272 | 272 | case 'incomplete' : |
| 273 | 273 | $_where['STS_ID'] = EEM_Registration::status_id_incomplete; |
| 274 | 274 | break; |
| 275 | 275 | default : |
| 276 | - $_where['STS_ID'] = array( '!=', EEM_Registration::status_id_incomplete ); |
|
| 276 | + $_where['STS_ID'] = array('!=', EEM_Registration::status_id_incomplete); |
|
| 277 | 277 | } |
| 278 | - return EEM_Registration::instance()->count( array( $_where )); |
|
| 278 | + return EEM_Registration::instance()->count(array($_where)); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | |
@@ -285,24 +285,24 @@ discard block |
||
| 285 | 285 | * @access protected |
| 286 | 286 | * @return int |
| 287 | 287 | */ |
| 288 | - protected function _total_registrations_this_month(){ |
|
| 289 | - $EVT_ID = isset( $this->_req_data['event_id'] ) ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
| 290 | - $_where = $EVT_ID ? array( 'EVT_ID' => $EVT_ID ) : array(); |
|
| 288 | + protected function _total_registrations_this_month() { |
|
| 289 | + $EVT_ID = isset($this->_req_data['event_id']) ? absint($this->_req_data['event_id']) : FALSE; |
|
| 290 | + $_where = $EVT_ID ? array('EVT_ID' => $EVT_ID) : array(); |
|
| 291 | 291 | $this_year_r = date('Y', current_time('timestamp')); |
| 292 | 292 | $time_start = ' 00:00:00'; |
| 293 | 293 | $time_end = ' 23:59:59'; |
| 294 | 294 | $this_month_r = date('m', current_time('timestamp')); |
| 295 | - $days_this_month = date( 't', current_time('timestamp') ); |
|
| 295 | + $days_this_month = date('t', current_time('timestamp')); |
|
| 296 | 296 | //setup date query. |
| 297 | - $beginning_string = EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $this_year_r . '-' . $this_month_r . '-01' . ' ' . $time_start, 'Y-m-d H:i:s' ); |
|
| 298 | - $end_string = EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $this_year_r . '-' . $this_month_r . '-' . $days_this_month . ' ' . $time_end, 'Y-m-d H:i:s' ); |
|
| 299 | - $_where['REG_date']= array('BETWEEN', |
|
| 297 | + $beginning_string = EEM_Registration::instance()->convert_datetime_for_query('REG_date', $this_year_r.'-'.$this_month_r.'-01'.' '.$time_start, 'Y-m-d H:i:s'); |
|
| 298 | + $end_string = EEM_Registration::instance()->convert_datetime_for_query('REG_date', $this_year_r.'-'.$this_month_r.'-'.$days_this_month.' '.$time_end, 'Y-m-d H:i:s'); |
|
| 299 | + $_where['REG_date'] = array('BETWEEN', |
|
| 300 | 300 | array( |
| 301 | 301 | $beginning_string, |
| 302 | 302 | $end_string |
| 303 | 303 | )); |
| 304 | - $_where['STS_ID'] = array( '!=', EEM_Registration::status_id_incomplete ); |
|
| 305 | - return EEM_Registration::instance()->count(array( $_where ) ); |
|
| 304 | + $_where['STS_ID'] = array('!=', EEM_Registration::status_id_incomplete); |
|
| 305 | + return EEM_Registration::instance()->count(array($_where)); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | |
@@ -312,20 +312,20 @@ discard block |
||
| 312 | 312 | * @access protected |
| 313 | 313 | * @return int |
| 314 | 314 | */ |
| 315 | - protected function _total_registrations_today(){ |
|
| 315 | + protected function _total_registrations_today() { |
|
| 316 | 316 | |
| 317 | - $EVT_ID = isset( $this->_req_data['event_id'] ) ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
| 318 | - $_where = $EVT_ID ? array( 'EVT_ID' => $EVT_ID ) : array(); |
|
| 317 | + $EVT_ID = isset($this->_req_data['event_id']) ? absint($this->_req_data['event_id']) : FALSE; |
|
| 318 | + $_where = $EVT_ID ? array('EVT_ID' => $EVT_ID) : array(); |
|
| 319 | 319 | $current_date = date('Y-m-d', current_time('timestamp')); |
| 320 | 320 | $time_start = ' 00:00:00'; |
| 321 | 321 | $time_end = ' 23:59:59'; |
| 322 | - $_where['REG_date']= array('BETWEEN', |
|
| 322 | + $_where['REG_date'] = array('BETWEEN', |
|
| 323 | 323 | array( |
| 324 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $current_date . $time_start, 'Y-m-d H:i:s' ), |
|
| 325 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $current_date . $time_end, 'Y-m-d H:i:s' ) |
|
| 324 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $current_date.$time_start, 'Y-m-d H:i:s'), |
|
| 325 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $current_date.$time_end, 'Y-m-d H:i:s') |
|
| 326 | 326 | )); |
| 327 | - $_where['STS_ID'] = array( '!=', EEM_Registration::status_id_incomplete ); |
|
| 328 | - return EEM_Registration::instance()->count(array( $_where ) ); |
|
| 327 | + $_where['STS_ID'] = array('!=', EEM_Registration::status_id_incomplete); |
|
| 328 | + return EEM_Registration::instance()->count(array($_where)); |
|
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | |
@@ -337,11 +337,11 @@ discard block |
||
| 337 | 337 | * @param \EE_Registration $item |
| 338 | 338 | * @return string |
| 339 | 339 | */ |
| 340 | - function column_cb($item){ |
|
| 340 | + function column_cb($item) { |
|
| 341 | 341 | /** checkbox/lock **/ |
| 342 | - $transaction = $item->get_first_related( 'Transaction' ); |
|
| 343 | - $payment_count = $transaction instanceof EE_Transaction ? $transaction->count_related( 'Payment' ) : 0; |
|
| 344 | - return $payment_count > 0 ? sprintf( '<input type="checkbox" name="_REG_ID[]" value="%1$s" />', $item->ID() ) . '<span class="ee-lock-icon"></span>' : sprintf( '<input type="checkbox" name="_REG_ID[]" value="%1$s" />', $item->ID() ); |
|
| 342 | + $transaction = $item->get_first_related('Transaction'); |
|
| 343 | + $payment_count = $transaction instanceof EE_Transaction ? $transaction->count_related('Payment') : 0; |
|
| 344 | + return $payment_count > 0 ? sprintf('<input type="checkbox" name="_REG_ID[]" value="%1$s" />', $item->ID()).'<span class="ee-lock-icon"></span>' : sprintf('<input type="checkbox" name="_REG_ID[]" value="%1$s" />', $item->ID()); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | |
@@ -353,14 +353,14 @@ discard block |
||
| 353 | 353 | * @param \EE_Registration $item |
| 354 | 354 | * @return string |
| 355 | 355 | */ |
| 356 | - function column__REG_ID(EE_Registration $item){ |
|
| 356 | + function column__REG_ID(EE_Registration $item) { |
|
| 357 | 357 | $attendee = $item->attendee(); |
| 358 | 358 | $content = $item->ID(); |
| 359 | 359 | $content .= '<div class="show-on-mobile-view-only">'; |
| 360 | 360 | $content .= '<br>'; |
| 361 | 361 | $content .= $attendee instanceof EE_Attendee ? $attendee->full_name() : ''; |
| 362 | - $content .= ' ' . sprintf(__( '(%1$s / %2$s)', 'event_espresso' ), $item->count(), $item->group_size()); |
|
| 363 | - $content .= '<br>' . sprintf( __( 'Reg Code: %s', 'event_espresso' ), $item->get('REG_code') ); |
|
| 362 | + $content .= ' '.sprintf(__('(%1$s / %2$s)', 'event_espresso'), $item->count(), $item->group_size()); |
|
| 363 | + $content .= '<br>'.sprintf(__('Reg Code: %s', 'event_espresso'), $item->get('REG_code')); |
|
| 364 | 364 | $content .= '</div>'; |
| 365 | 365 | return $content; |
| 366 | 366 | } |
@@ -374,12 +374,12 @@ discard block |
||
| 374 | 374 | * @param \EE_Registration $item |
| 375 | 375 | * @return string |
| 376 | 376 | */ |
| 377 | - function column__REG_date(EE_Registration $item){ |
|
| 377 | + function column__REG_date(EE_Registration $item) { |
|
| 378 | 378 | $this->_set_related_details($item); |
| 379 | 379 | //Build row actions |
| 380 | - $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=> $this->_transaction_details['id'] ), TXN_ADMIN_URL ); |
|
| 381 | - $view_link = EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction') ? '<a class="ee-status-color-' . $this->_transaction_details['status'] . '" href="'.$view_lnk_url.'" title="' . esc_attr( $this->_transaction_details['title_attr'] ) . '">' . $item->get_i18n_datetime( 'REG_date' ) . '</a>' : $item->get_i18n_datetime( 'REG_date' ); |
|
| 382 | - $view_link .= '<br><span class="ee-status-text-small">' . EEH_Template::pretty_status( $this->_transaction_details['status'], false, 'sentence' ) . '</span>'; |
|
| 380 | + $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=> $this->_transaction_details['id']), TXN_ADMIN_URL); |
|
| 381 | + $view_link = EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction') ? '<a class="ee-status-color-'.$this->_transaction_details['status'].'" href="'.$view_lnk_url.'" title="'.esc_attr($this->_transaction_details['title_attr']).'">'.$item->get_i18n_datetime('REG_date').'</a>' : $item->get_i18n_datetime('REG_date'); |
|
| 382 | + $view_link .= '<br><span class="ee-status-text-small">'.EEH_Template::pretty_status($this->_transaction_details['status'], false, 'sentence').'</span>'; |
|
| 383 | 383 | return $view_link; |
| 384 | 384 | } |
| 385 | 385 | |
@@ -392,18 +392,18 @@ discard block |
||
| 392 | 392 | * @param \EE_Registration $item |
| 393 | 393 | * @return string |
| 394 | 394 | */ |
| 395 | - function column_event_name(EE_Registration $item){ |
|
| 396 | - $this->_set_related_details( $item ); |
|
| 395 | + function column_event_name(EE_Registration $item) { |
|
| 396 | + $this->_set_related_details($item); |
|
| 397 | 397 | // page=espresso_events&action=edit_event&EVT_ID=2&edit_event_nonce=cf3a7e5b62 |
| 398 | - $edit_event_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit', 'post'=>$item->event_ID() ), EVENTS_ADMIN_URL ); |
|
| 398 | + $edit_event_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit', 'post'=>$item->event_ID()), EVENTS_ADMIN_URL); |
|
| 399 | 399 | $event_name = $item->event_name(); |
| 400 | 400 | $event_name = $event_name ? $event_name : __("No Associated Event", 'event_espresso'); |
| 401 | - $edit_event = EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'edit_event', $item->event_ID() ) ? '<a class="ee-status-color-' . $this->_event_details['status'] . '" href="' . $edit_event_url . '" title="' . esc_attr( $this->_event_details['title_attr'] ) .'">' . wp_trim_words( $event_name, 30, '...' ) . '</a>' : wp_trim_words( $event_name, 30, '...' ) ; |
|
| 401 | + $edit_event = EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'edit_event', $item->event_ID()) ? '<a class="ee-status-color-'.$this->_event_details['status'].'" href="'.$edit_event_url.'" title="'.esc_attr($this->_event_details['title_attr']).'">'.wp_trim_words($event_name, 30, '...').'</a>' : wp_trim_words($event_name, 30, '...'); |
|
| 402 | 402 | |
| 403 | - $edit_event_url = EE_Admin_Page::add_query_args_and_nonce( array( 'event_id'=>$item->event_ID() ), REG_ADMIN_URL ); |
|
| 404 | - $actions['event_filter'] = '<a href="' . $edit_event_url . '" title="' . sprintf( esc_attr__( 'Filter this list to only show registrations for %s', 'event_espresso' ), $event_name ) .'">' . __( 'View Registrations', 'event_espresso' ) . '</a>'; |
|
| 403 | + $edit_event_url = EE_Admin_Page::add_query_args_and_nonce(array('event_id'=>$item->event_ID()), REG_ADMIN_URL); |
|
| 404 | + $actions['event_filter'] = '<a href="'.$edit_event_url.'" title="'.sprintf(esc_attr__('Filter this list to only show registrations for %s', 'event_espresso'), $event_name).'">'.__('View Registrations', 'event_espresso').'</a>'; |
|
| 405 | 405 | |
| 406 | - return sprintf('%1$s %2$s', $edit_event, $this->row_actions($actions) ); |
|
| 406 | + return sprintf('%1$s %2$s', $edit_event, $this->row_actions($actions)); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | |
@@ -415,18 +415,18 @@ discard block |
||
| 415 | 415 | * @param \EE_Registration $item |
| 416 | 416 | * @return string |
| 417 | 417 | */ |
| 418 | - function column_DTT_EVT_start(EE_Registration $item){ |
|
| 418 | + function column_DTT_EVT_start(EE_Registration $item) { |
|
| 419 | 419 | $datetime_strings = array(); |
| 420 | - $ticket = $item->ticket( TRUE ); |
|
| 421 | - if ( $ticket instanceof EE_Ticket ) { |
|
| 420 | + $ticket = $item->ticket(TRUE); |
|
| 421 | + if ($ticket instanceof EE_Ticket) { |
|
| 422 | 422 | $remove_defaults = array('default_where_conditions' => 'none'); |
| 423 | 423 | $datetimes = $ticket->datetimes($remove_defaults); |
| 424 | - foreach($datetimes as $datetime){ |
|
| 425 | - $datetime_strings[] = $datetime->get_i18n_datetime( 'DTT_EVT_start' ); |
|
| 424 | + foreach ($datetimes as $datetime) { |
|
| 425 | + $datetime_strings[] = $datetime->get_i18n_datetime('DTT_EVT_start'); |
|
| 426 | 426 | } |
| 427 | - return implode("<br />",$datetime_strings); |
|
| 427 | + return implode("<br />", $datetime_strings); |
|
| 428 | 428 | } else { |
| 429 | - return __( 'There is no ticket on this registration', 'event_espresso' ); |
|
| 429 | + return __('There is no ticket on this registration', 'event_espresso'); |
|
| 430 | 430 | } |
| 431 | 431 | } |
| 432 | 432 | |
@@ -439,45 +439,45 @@ discard block |
||
| 439 | 439 | * @param \EE_Registration $item |
| 440 | 440 | * @return string |
| 441 | 441 | */ |
| 442 | - function column_ATT_fname(EE_Registration $item){ |
|
| 442 | + function column_ATT_fname(EE_Registration $item) { |
|
| 443 | 443 | $attendee = $item->attendee(); |
| 444 | 444 | |
| 445 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_registration', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
| 445 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_registration', '_REG_ID'=>$item->ID()), REG_ADMIN_URL); |
|
| 446 | 446 | $attendee_name = $attendee instanceof EE_Attendee ? $attendee->full_name() : ''; |
| 447 | - $link = EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ? '<a href="'.$edit_lnk_url.'" title="' . esc_attr__( 'View Registration Details', 'event_espresso' ) . '">' . $attendee_name . '</a>' : $attendee_name; |
|
| 447 | + $link = EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID()) ? '<a href="'.$edit_lnk_url.'" title="'.esc_attr__('View Registration Details', 'event_espresso').'">'.$attendee_name.'</a>' : $attendee_name; |
|
| 448 | 448 | $link .= $item->count() == 1 ? ' <sup><div class="dashicons dashicons-star-filled lt-blue-icon ee-icon-size-8"></div></sup>' : ''; |
| 449 | 449 | |
| 450 | 450 | $t = $item->get_first_related('Transaction'); |
| 451 | 451 | $payment_count = $t instanceof EE_Transaction ? $t->count_related('Payment') : 0; |
| 452 | 452 | |
| 453 | 453 | //append group count to name |
| 454 | - $link .= ' ' . sprintf(__( '(%1$s / %2$s)', 'event_espresso' ), $item->count(), $item->group_size()); |
|
| 454 | + $link .= ' '.sprintf(__('(%1$s / %2$s)', 'event_espresso'), $item->count(), $item->group_size()); |
|
| 455 | 455 | |
| 456 | 456 | //append reg_code |
| 457 | - $link .= '<br>' . sprintf( __( 'Reg Code: %s', 'event_espresso' ), $item->get('REG_code') ); |
|
| 457 | + $link .= '<br>'.sprintf(__('Reg Code: %s', 'event_espresso'), $item->get('REG_code')); |
|
| 458 | 458 | |
| 459 | 459 | //reg status text for accessibility |
| 460 | - $link .= '<br><span class="ee-status-text-small">' . EEH_Template::pretty_status( $item->status_ID(), false, 'sentence' ) . '</span>'; |
|
| 460 | + $link .= '<br><span class="ee-status-text-small">'.EEH_Template::pretty_status($item->status_ID(), false, 'sentence').'</span>'; |
|
| 461 | 461 | |
| 462 | 462 | //trash/restore/delete actions |
| 463 | 463 | $actions = array(); |
| 464 | - if ( $this->_view != 'trash' && $payment_count === 0 && EE_Registry::instance()->CAP->current_user_can( 'ee_delete_registration', 'espresso_registrations_trash_registrations', $item->ID() ) ) { |
|
| 465 | - $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'trash_registrations', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
| 466 | - $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="' . esc_attr__( 'Trash Registration', 'event_espresso' ) . '">' . __( 'Trash', 'event_espresso' ) . '</a>'; |
|
| 467 | - } elseif ( $this->_view == 'trash' ) { |
|
| 464 | + if ($this->_view != 'trash' && $payment_count === 0 && EE_Registry::instance()->CAP->current_user_can('ee_delete_registration', 'espresso_registrations_trash_registrations', $item->ID())) { |
|
| 465 | + $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'trash_registrations', '_REG_ID'=>$item->ID()), REG_ADMIN_URL); |
|
| 466 | + $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="'.esc_attr__('Trash Registration', 'event_espresso').'">'.__('Trash', 'event_espresso').'</a>'; |
|
| 467 | + } elseif ($this->_view == 'trash') { |
|
| 468 | 468 | // restore registration link |
| 469 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_registration', 'espresso_registrations_restore_registrations', $item->ID() ) ) { |
|
| 470 | - $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'restore_registrations', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
| 471 | - $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="' . esc_attr__( 'Restore Registration', 'event_espresso' ) . '">' . __( 'Restore', 'event_espresso' ) . '</a>'; |
|
| 469 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_registration', 'espresso_registrations_restore_registrations', $item->ID())) { |
|
| 470 | + $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'restore_registrations', '_REG_ID'=>$item->ID()), REG_ADMIN_URL); |
|
| 471 | + $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="'.esc_attr__('Restore Registration', 'event_espresso').'">'.__('Restore', 'event_espresso').'</a>'; |
|
| 472 | 472 | } |
| 473 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_registration', 'espresso_registrations_ee_delete_registrations', $item->ID() ) ) { |
|
| 474 | - $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'delete_registrations', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
| 473 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_registration', 'espresso_registrations_ee_delete_registrations', $item->ID())) { |
|
| 474 | + $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'delete_registrations', '_REG_ID'=>$item->ID()), REG_ADMIN_URL); |
|
| 475 | 475 | |
| 476 | - $actions['delete'] = '<a href="'.$delete_lnk_url.'" title="' . esc_attr__( 'Delete Registration Permanently', 'event_espresso' ). '">' . __( 'Delete', 'event_espresso' ) . '</a>'; |
|
| 476 | + $actions['delete'] = '<a href="'.$delete_lnk_url.'" title="'.esc_attr__('Delete Registration Permanently', 'event_espresso').'">'.__('Delete', 'event_espresso').'</a>'; |
|
| 477 | 477 | } |
| 478 | 478 | } |
| 479 | 479 | |
| 480 | - return sprintf('%1$s %2$s', $link, $this->row_actions($actions) ); |
|
| 480 | + return sprintf('%1$s %2$s', $link, $this->row_actions($actions)); |
|
| 481 | 481 | } |
| 482 | 482 | |
| 483 | 483 | |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | * @param \EE_Registration $item |
| 490 | 490 | * @return string |
| 491 | 491 | */ |
| 492 | - function column_ATT_email( EE_Registration $item ) { |
|
| 492 | + function column_ATT_email(EE_Registration $item) { |
|
| 493 | 493 | $attendee = $item->get_first_related('Attendee'); |
| 494 | 494 | return ! $attendee instanceof EE_Attendee ? __('No attached contact record.', 'event_espresso') : $attendee->email(); |
| 495 | 495 | } |
@@ -503,8 +503,8 @@ discard block |
||
| 503 | 503 | * @param \EE_Registration $item |
| 504 | 504 | * @return string |
| 505 | 505 | */ |
| 506 | - function column__REG_count(EE_Registration $item){ |
|
| 507 | - return sprintf(__( '%1$s / %2$s', 'event_espresso' ), $item->count(), $item->group_size()); |
|
| 506 | + function column__REG_count(EE_Registration $item) { |
|
| 507 | + return sprintf(__('%1$s / %2$s', 'event_espresso'), $item->count(), $item->group_size()); |
|
| 508 | 508 | } |
| 509 | 509 | |
| 510 | 510 | |
@@ -516,16 +516,16 @@ discard block |
||
| 516 | 516 | * @param \EE_Registration $item |
| 517 | 517 | * @return string |
| 518 | 518 | */ |
| 519 | - function column_PRC_amount(EE_Registration $item){ |
|
| 519 | + function column_PRC_amount(EE_Registration $item) { |
|
| 520 | 520 | $ticket = $item->ticket(); |
| 521 | 521 | |
| 522 | - $content = isset( $_GET['event_id'] ) && $ticket instanceof EE_Ticket ? '<span class="TKT_name">' . $ticket->name() . '</span><br />' : ''; |
|
| 522 | + $content = isset($_GET['event_id']) && $ticket instanceof EE_Ticket ? '<span class="TKT_name">'.$ticket->name().'</span><br />' : ''; |
|
| 523 | 523 | |
| 524 | - if ( $item->final_price() > 0 ) { |
|
| 525 | - $content .= '<span class="reg-pad-rght">' . $item->pretty_final_price() . '</span>'; |
|
| 524 | + if ($item->final_price() > 0) { |
|
| 525 | + $content .= '<span class="reg-pad-rght">'.$item->pretty_final_price().'</span>'; |
|
| 526 | 526 | } else { |
| 527 | 527 | // free event |
| 528 | - $content .= '<span class="reg-overview-free-event-spn reg-pad-rght">' . __( 'free', 'event_espresso' ) . '</span>'; |
|
| 528 | + $content .= '<span class="reg-overview-free-event-spn reg-pad-rght">'.__('free', 'event_espresso').'</span>'; |
|
| 529 | 529 | } |
| 530 | 530 | |
| 531 | 531 | return $content; |
@@ -541,11 +541,11 @@ discard block |
||
| 541 | 541 | * @param \EE_Registration $item |
| 542 | 542 | * @return string |
| 543 | 543 | */ |
| 544 | - function column__REG_final_price(EE_Registration $item){ |
|
| 544 | + function column__REG_final_price(EE_Registration $item) { |
|
| 545 | 545 | $ticket = $item->ticket(); |
| 546 | - $content = isset( $_GET['event_id'] ) || ! $ticket instanceof EE_Ticket ? '' : '<span class="TKT_name">' . $ticket->name() . '</span><br />'; |
|
| 546 | + $content = isset($_GET['event_id']) || ! $ticket instanceof EE_Ticket ? '' : '<span class="TKT_name">'.$ticket->name().'</span><br />'; |
|
| 547 | 547 | |
| 548 | - $content .= '<span class="reg-pad-rght">' . $item->pretty_final_price() . '</span>'; |
|
| 548 | + $content .= '<span class="reg-pad-rght">'.$item->pretty_final_price().'</span>'; |
|
| 549 | 549 | return $content; |
| 550 | 550 | |
| 551 | 551 | } |
@@ -559,13 +559,13 @@ discard block |
||
| 559 | 559 | * @param \EE_Registration $item |
| 560 | 560 | * @return string |
| 561 | 561 | */ |
| 562 | - function column__REG_paid(EE_Registration $item){ |
|
| 562 | + function column__REG_paid(EE_Registration $item) { |
|
| 563 | 563 | $payment_method = $item->payment_method(); |
| 564 | - $payment_method_name = $payment_method instanceof EE_Payment_Method ? $payment_method->admin_name() : __( 'Unknown', 'event_espresso' ); |
|
| 564 | + $payment_method_name = $payment_method instanceof EE_Payment_Method ? $payment_method->admin_name() : __('Unknown', 'event_espresso'); |
|
| 565 | 565 | |
| 566 | - $content = '<span class="reg-pad-rght">' . $item->pretty_paid() . '</span>'; |
|
| 567 | - if ( $item->paid() > 0 ) { |
|
| 568 | - $content .= '<br><span class="ee-status-text-small">' . sprintf( __( '...via %s', 'event_espresso' ), $payment_method_name ) . '</span>'; |
|
| 566 | + $content = '<span class="reg-pad-rght">'.$item->pretty_paid().'</span>'; |
|
| 567 | + if ($item->paid() > 0) { |
|
| 568 | + $content .= '<br><span class="ee-status-text-small">'.sprintf(__('...via %s', 'event_espresso'), $payment_method_name).'</span>'; |
|
| 569 | 569 | } |
| 570 | 570 | return $content; |
| 571 | 571 | } |
@@ -579,11 +579,11 @@ discard block |
||
| 579 | 579 | * @param \EE_Registration $item |
| 580 | 580 | * @return string |
| 581 | 581 | */ |
| 582 | - function column_TXN_total(EE_Registration $item){ |
|
| 583 | - if($item->transaction()){ |
|
| 584 | - $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=>$item->transaction_ID() ), TXN_ADMIN_URL ); |
|
| 585 | - return EE_Registry::instance()->CAP->current_user_can( 'ee_read_transaction', 'espresso_transactions_view_transaction', $item->transaction_ID() ) ? '<span class="reg-pad-rght"><a class="status-'. $item->transaction()->status_ID() .'" href="'.$view_txn_lnk_url.'" title="' . esc_attr__( 'View Transaction', 'event_espresso' ) . '">' . $item->transaction()->pretty_total() . '</a></span>' : '<span class="reg-pad-rght">' . $item->transaction()->pretty_total() . '</span>'; |
|
| 586 | - }else{ |
|
| 582 | + function column_TXN_total(EE_Registration $item) { |
|
| 583 | + if ($item->transaction()) { |
|
| 584 | + $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=>$item->transaction_ID()), TXN_ADMIN_URL); |
|
| 585 | + return EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction', $item->transaction_ID()) ? '<span class="reg-pad-rght"><a class="status-'.$item->transaction()->status_ID().'" href="'.$view_txn_lnk_url.'" title="'.esc_attr__('View Transaction', 'event_espresso').'">'.$item->transaction()->pretty_total().'</a></span>' : '<span class="reg-pad-rght">'.$item->transaction()->pretty_total().'</span>'; |
|
| 586 | + } else { |
|
| 587 | 587 | return __("None", "event_espresso"); |
| 588 | 588 | } |
| 589 | 589 | } |
@@ -597,15 +597,15 @@ discard block |
||
| 597 | 597 | * @param \EE_Registration $item |
| 598 | 598 | * @return string |
| 599 | 599 | */ |
| 600 | - function column_TXN_paid(EE_Registration $item){ |
|
| 600 | + function column_TXN_paid(EE_Registration $item) { |
|
| 601 | 601 | |
| 602 | - if ( $item->count() == 1 ) { |
|
| 602 | + if ($item->count() == 1) { |
|
| 603 | 603 | $transaction = $item->transaction() ? $item->transaction() : EE_Transaction::new_instance(); |
| 604 | - if ( $transaction->paid() >= $transaction->total() ) { |
|
| 604 | + if ($transaction->paid() >= $transaction->total()) { |
|
| 605 | 605 | return '<span class="reg-pad-rght"><div class="dashicons dashicons-yes green-icon"></div></span>'; |
| 606 | 606 | } else { |
| 607 | - $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=>$item->transaction_ID() ), TXN_ADMIN_URL ); |
|
| 608 | - return EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction', $item->transaction_ID() ) ? '<span class="reg-pad-rght"><a class="status-'. $transaction->status_ID() .'" href="'.$view_txn_lnk_url.'" title="' . esc_attr__( 'View Transaction', 'event_espresso' ) . '">' . $item->transaction()->pretty_paid() . '</a><span>' : '<span class="reg-pad-rght">' . $item->transaction()->pretty_paid() . '</span>'; |
|
| 607 | + $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=>$item->transaction_ID()), TXN_ADMIN_URL); |
|
| 608 | + return EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction', $item->transaction_ID()) ? '<span class="reg-pad-rght"><a class="status-'.$transaction->status_ID().'" href="'.$view_txn_lnk_url.'" title="'.esc_attr__('View Transaction', 'event_espresso').'">'.$item->transaction()->pretty_paid().'</a><span>' : '<span class="reg-pad-rght">'.$item->transaction()->pretty_paid().'</span>'; |
|
| 609 | 609 | } |
| 610 | 610 | } |
| 611 | 611 | |
@@ -626,44 +626,44 @@ discard block |
||
| 626 | 626 | EE_Registry::instance()->load_helper('MSG_Template'); |
| 627 | 627 | $attendee = $item->attendee(); |
| 628 | 628 | $ticket = $item->ticket(); |
| 629 | - $this->_set_related_details( $item ); |
|
| 629 | + $this->_set_related_details($item); |
|
| 630 | 630 | |
| 631 | 631 | //Build row actions |
| 632 | - $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_registration', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
| 633 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$item->attendee_ID() ), REG_ADMIN_URL ); |
|
| 632 | + $view_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_registration', '_REG_ID'=>$item->ID()), REG_ADMIN_URL); |
|
| 633 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$item->attendee_ID()), REG_ADMIN_URL); |
|
| 634 | 634 | |
| 635 | 635 | // page=attendees&event_admin_reports=resend_email®istration_id=43653465634&event_id=2&form_action=resend_email |
| 636 | 636 | //$resend_reg_lnk_url_params = array( 'action'=>'resend_registration', '_REG_ID'=>$item->REG_ID ); |
| 637 | - $resend_reg_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'resend_registration', '_REG_ID'=>$item->ID() ), REG_ADMIN_URL, true ); |
|
| 637 | + $resend_reg_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'resend_registration', '_REG_ID'=>$item->ID()), REG_ADMIN_URL, true); |
|
| 638 | 638 | |
| 639 | 639 | |
| 640 | 640 | //Build row actions |
| 641 | - $view_lnk = EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ? ' |
|
| 641 | + $view_lnk = EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID()) ? ' |
|
| 642 | 642 | <li> |
| 643 | - <a href="'.$view_lnk_url.'" title="' . esc_attr__( 'View Registration Details', 'event_espresso' ) . '" class="tiny-text"> |
|
| 643 | + <a href="'.$view_lnk_url.'" title="'.esc_attr__('View Registration Details', 'event_espresso').'" class="tiny-text"> |
|
| 644 | 644 | <div class="dashicons dashicons-clipboard"></div> |
| 645 | 645 | </a> |
| 646 | 646 | </li>' : ''; |
| 647 | 647 | |
| 648 | - $edit_lnk = EE_Registry::instance()->CAP->current_user_can('ee_edit_contacts', 'espresso_registrations_edit_attendee' ) && $attendee instanceof EE_Attendee ?' |
|
| 648 | + $edit_lnk = EE_Registry::instance()->CAP->current_user_can('ee_edit_contacts', 'espresso_registrations_edit_attendee') && $attendee instanceof EE_Attendee ? ' |
|
| 649 | 649 | <li> |
| 650 | - <a href="'.$edit_lnk_url.'" title="' . esc_attr__( 'Edit Contact Details', 'event_espresso' ) . '" class="tiny-text"> |
|
| 650 | + <a href="'.$edit_lnk_url.'" title="'.esc_attr__('Edit Contact Details', 'event_espresso').'" class="tiny-text"> |
|
| 651 | 651 | <div class="ee-icon ee-icon-user-edit ee-icon-size-16"></div> |
| 652 | 652 | </a> |
| 653 | 653 | </li>' : ''; |
| 654 | 654 | |
| 655 | - $resend_reg_lnk = $attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'espresso_registrations_resend_registration', $item->ID() ) ? ' |
|
| 655 | + $resend_reg_lnk = $attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'espresso_registrations_resend_registration', $item->ID()) ? ' |
|
| 656 | 656 | <li> |
| 657 | - <a href="'.$resend_reg_lnk_url.'" title="' . esc_attr__( 'Resend Registration Details', 'event_espresso' ) . '" class="tiny-text"> |
|
| 657 | + <a href="'.$resend_reg_lnk_url.'" title="'.esc_attr__('Resend Registration Details', 'event_espresso').'" class="tiny-text"> |
|
| 658 | 658 | <div class="dashicons dashicons-email-alt"></div> |
| 659 | 659 | </a> |
| 660 | 660 | </li>' : ''; |
| 661 | 661 | |
| 662 | 662 | // page=transactions&action=view_transaction&txn=256&_wpnonce=6414da4dbb |
| 663 | - $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'view_transaction', 'TXN_ID'=>$this->_transaction_details['id'] ), TXN_ADMIN_URL ); |
|
| 664 | - $view_txn_lnk = EE_Registry::instance()->CAP->current_user_can( 'ee_read_transaction', 'espresso_transactions_view_transaction', $this->_transaction_details['id'] ) ? ' |
|
| 663 | + $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'view_transaction', 'TXN_ID'=>$this->_transaction_details['id']), TXN_ADMIN_URL); |
|
| 664 | + $view_txn_lnk = EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction', $this->_transaction_details['id']) ? ' |
|
| 665 | 665 | <li> |
| 666 | - <a class="ee-status-color-' . $this->_transaction_details['status'] . '" href="'.$view_txn_lnk_url.'" title="' . $this->_transaction_details['title_attr'] . '" class="tiny-text"> |
|
| 666 | + <a class="ee-status-color-' . $this->_transaction_details['status'].'" href="'.$view_txn_lnk_url.'" title="'.$this->_transaction_details['title_attr'].'" class="tiny-text"> |
|
| 667 | 667 | <div class="dashicons dashicons-cart"></div> |
| 668 | 668 | </a> |
| 669 | 669 | </li>' : ''; |
@@ -671,10 +671,10 @@ discard block |
||
| 671 | 671 | //invoice link |
| 672 | 672 | $dl_invoice_lnk_url = $item->invoice_url(); |
| 673 | 673 | //only show invoice link if message type is active. |
| 674 | - if ( $item->is_primary_registrant() && $attendee instanceof EE_Attendee && EEH_MSG_Template::is_mt_active( 'invoice' ) ) { |
|
| 674 | + if ($item->is_primary_registrant() && $attendee instanceof EE_Attendee && EEH_MSG_Template::is_mt_active('invoice')) { |
|
| 675 | 675 | $dl_invoice_lnk = ' |
| 676 | 676 | <li> |
| 677 | - <a title="' . esc_attr__( 'View Transaction Invoice', 'event_espresso' ) . '" target="_blank" href="'.$dl_invoice_lnk_url.'" class="tiny-text"> |
|
| 677 | + <a title="' . esc_attr__('View Transaction Invoice', 'event_espresso').'" target="_blank" href="'.$dl_invoice_lnk_url.'" class="tiny-text"> |
|
| 678 | 678 | <span class="dashicons dashicons-media-spreadsheet ee-icon-size-18"></span> |
| 679 | 679 | </a> |
| 680 | 680 | </li>'; |
@@ -682,7 +682,7 @@ discard block |
||
| 682 | 682 | $dl_invoice_lnk = ''; |
| 683 | 683 | } |
| 684 | 684 | |
| 685 | - return $this->_action_string( $view_lnk . $edit_lnk . $resend_reg_lnk . $view_txn_lnk . $dl_invoice_lnk, $item, 'ul', 'reg-overview-actions-ul' ); |
|
| 685 | + return $this->_action_string($view_lnk.$edit_lnk.$resend_reg_lnk.$view_txn_lnk.$dl_invoice_lnk, $item, 'ul', 'reg-overview-actions-ul'); |
|
| 686 | 686 | } |
| 687 | 687 | |
| 688 | 688 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <p id="spco-attendee_information-pg" class="spco-steps-pg small-text drk-grey-text"> |
| 2 | - <?php echo apply_filters( 'FHEE__registration_page_attendee_information__attendee_information_pg', sprintf( __('In order to process your registration, we ask you to provide the following information.%1$sPlease note that all fields marked with an asterisk (%2$s) are required.', 'event_espresso'), '<br />', '<span class="asterisk">*</span>' )); ?> |
|
| 2 | + <?php echo apply_filters('FHEE__registration_page_attendee_information__attendee_information_pg', sprintf(__('In order to process your registration, we ask you to provide the following information.%1$sPlease note that all fields marked with an asterisk (%2$s) are required.', 'event_espresso'), '<br />', '<span class="asterisk">*</span>')); ?> |
|
| 3 | 3 | </p> |
| 4 | 4 | |
| 5 | 5 | <?php |
@@ -7,34 +7,34 @@ discard block |
||
| 7 | 7 | $prev_event = ''; |
| 8 | 8 | $prev_ticket = ''; |
| 9 | 9 | |
| 10 | -if ( count( $registrations ) > 0 ) { |
|
| 11 | - foreach ( $registrations as $registration ) { |
|
| 12 | - if ( $registration instanceof EE_Registration ) { |
|
| 10 | +if (count($registrations) > 0) { |
|
| 11 | + foreach ($registrations as $registration) { |
|
| 12 | + if ($registration instanceof EE_Registration) { |
|
| 13 | 13 | $att_nmbr++; |
| 14 | 14 | ?> |
| 15 | 15 | |
| 16 | - <div id="spco-attendee-panel-dv-<?php echo $registration->reg_url_link();?>" class="spco-attendee-panel-dv spco-attendee-ticket-<?php echo $registration->ticket()->ID();?>"> |
|
| 16 | + <div id="spco-attendee-panel-dv-<?php echo $registration->reg_url_link(); ?>" class="spco-attendee-panel-dv spco-attendee-ticket-<?php echo $registration->ticket()->ID(); ?>"> |
|
| 17 | 17 | |
| 18 | - <?php if ( $registration->event()->ID() != $prev_event ) { ?> |
|
| 18 | + <?php if ($registration->event()->ID() != $prev_event) { ?> |
|
| 19 | 19 | <h4 id="event_title-<?php echo $registration->event()->ID() ?>" class="big-event-title-hdr"> |
| 20 | 20 | <?php echo $registration->event()->name(); ?> |
| 21 | 21 | </h4> |
| 22 | 22 | <?php } ?> |
| 23 | - <?php if ( $registration->ticket()->ID() != $prev_ticket ) { ?> |
|
| 24 | - <?php if ( ! $revisit ) { ?> |
|
| 23 | + <?php if ($registration->ticket()->ID() != $prev_ticket) { ?> |
|
| 24 | + <?php if ( ! $revisit) { ?> |
|
| 25 | 25 | <div class="spco-ticket-info-dv small-text"> |
| 26 | - <h5><?php _e('Details', 'event_espresso');?></h5> |
|
| 26 | + <h5><?php _e('Details', 'event_espresso'); ?></h5> |
|
| 27 | 27 | <table> |
| 28 | 28 | <thead> |
| 29 | 29 | <tr> |
| 30 | - <th scope="col" width=""><?php _e('Name and Description', 'event_espresso');?></th> |
|
| 31 | - <th scope="col" width="7.5%" class="jst-rght"><?php _e('Qty', 'event_espresso');?></th> |
|
| 32 | - <th scope="col" width="17.5%" class="jst-rght"><?php _e('Price', 'event_espresso');?></th> |
|
| 33 | - <th scope="col" width="17.5%" class="jst-rght"><?php _e('Total', 'event_espresso');?></th> |
|
| 30 | + <th scope="col" width=""><?php _e('Name and Description', 'event_espresso'); ?></th> |
|
| 31 | + <th scope="col" width="7.5%" class="jst-rght"><?php _e('Qty', 'event_espresso'); ?></th> |
|
| 32 | + <th scope="col" width="17.5%" class="jst-rght"><?php _e('Price', 'event_espresso'); ?></th> |
|
| 33 | + <th scope="col" width="17.5%" class="jst-rght"><?php _e('Total', 'event_espresso'); ?></th> |
|
| 34 | 34 | </tr> |
| 35 | 35 | </thead> |
| 36 | 36 | <tbody> |
| 37 | - <?php echo $ticket_line_item[ $registration->ticket()->ID() ]; ?> |
|
| 37 | + <?php echo $ticket_line_item[$registration->ticket()->ID()]; ?> |
|
| 38 | 38 | </tbody> |
| 39 | 39 | </table> |
| 40 | 40 | </div> |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | <?php |
| 45 | 45 | // ATTENDEE QUESTIONS |
| 46 | - $reg_form = EE_Template_Layout::get_subform_name( $registration->reg_url_link() ); |
|
| 46 | + $reg_form = EE_Template_Layout::get_subform_name($registration->reg_url_link()); |
|
| 47 | 47 | echo ${$reg_form}; |
| 48 | 48 | ?> |
| 49 | 49 | |
@@ -13,11 +13,11 @@ discard block |
||
| 13 | 13 | * @since 4.8.30.rc.009 |
| 14 | 14 | * |
| 15 | 15 | */ |
| 16 | -if( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
| 17 | - exit( 'No direct script access allowed' ); |
|
| 16 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 17 | + exit('No direct script access allowed'); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -class EE_Registration_Custom_Questions_Form extends EE_Form_Section_Proper{ |
|
| 20 | +class EE_Registration_Custom_Questions_Form extends EE_Form_Section_Proper { |
|
| 21 | 21 | /** |
| 22 | 22 | * |
| 23 | 23 | * @var EE_Registration |
@@ -29,16 +29,16 @@ discard block |
||
| 29 | 29 | * @param EE_Registration $reg |
| 30 | 30 | * @param array $options |
| 31 | 31 | */ |
| 32 | - public function __construct( EE_Registration $reg, $options = array() ) { |
|
| 32 | + public function __construct(EE_Registration $reg, $options = array()) { |
|
| 33 | 33 | $this->_registration = $reg; |
| 34 | - if( ! isset( $options[ 'layout_strategy' ] ) ) { |
|
| 35 | - $options[ 'layout_strategy' ] = new EE_Admin_Two_Column_Layout(); |
|
| 34 | + if ( ! isset($options['layout_strategy'])) { |
|
| 35 | + $options['layout_strategy'] = new EE_Admin_Two_Column_Layout(); |
|
| 36 | 36 | } |
| 37 | - if( ! isset( $options[ 'html_id' ] ) ) { |
|
| 38 | - $options[ 'html_id' ] = 'reg-admin-attendee-questions-frm'; |
|
| 37 | + if ( ! isset($options['html_id'])) { |
|
| 38 | + $options['html_id'] = 'reg-admin-attendee-questions-frm'; |
|
| 39 | 39 | } |
| 40 | 40 | $this->build_form_from_registration(); |
| 41 | - parent::__construct( $options ); |
|
| 41 | + parent::__construct($options); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | public function build_form_from_registration() { |
| 54 | 54 | $reg = $this->get_registration(); |
| 55 | - if( ! $reg instanceof EE_Registration ) { |
|
| 56 | - throw new EE_Error( __( 'We cannot build the registration custom questions form because there is no registration set on it yet', 'event_espresso') ); |
|
| 55 | + if ( ! $reg instanceof EE_Registration) { |
|
| 56 | + throw new EE_Error(__('We cannot build the registration custom questions form because there is no registration set on it yet', 'event_espresso')); |
|
| 57 | 57 | } |
| 58 | 58 | //we want to get all their question groups |
| 59 | 59 | $question_groups = EEM_Question_Group::instance()->get_all( |
@@ -63,13 +63,13 @@ discard block |
||
| 63 | 63 | 'Event_Question_Group.EQG_primary' => $reg->count() == 1 ? TRUE : FALSE, |
| 64 | 64 | 'Question.QST_system' => '' |
| 65 | 65 | ), |
| 66 | - 'order_by' => array( 'QSG_order' => 'ASC' ) |
|
| 66 | + 'order_by' => array('QSG_order' => 'ASC') |
|
| 67 | 67 | ) |
| 68 | 68 | ); |
| 69 | 69 | //get each question groups questions |
| 70 | - foreach( $question_groups as $question_group ) { |
|
| 71 | - if ( $question_group instanceof EE_Question_Group ) { |
|
| 72 | - $this->_subsections[ $question_group->ID() ] = $this->build_subform_from_question_group( |
|
| 70 | + foreach ($question_groups as $question_group) { |
|
| 71 | + if ($question_group instanceof EE_Question_Group) { |
|
| 72 | + $this->_subsections[$question_group->ID()] = $this->build_subform_from_question_group( |
|
| 73 | 73 | $question_group, |
| 74 | 74 | $reg |
| 75 | 75 | ); |
@@ -86,24 +86,24 @@ discard block |
||
| 86 | 86 | * @return \EE_Form_Section_Proper |
| 87 | 87 | * @throws \EE_Error |
| 88 | 88 | */ |
| 89 | - public function build_subform_from_question_group( $question_group, $registration ) { |
|
| 90 | - if( ! $question_group instanceof EE_Question_Group || |
|
| 89 | + public function build_subform_from_question_group($question_group, $registration) { |
|
| 90 | + if ( ! $question_group instanceof EE_Question_Group || |
|
| 91 | 91 | ! $registration instanceof EE_Registration) { |
| 92 | - throw new EE_Error( __( 'A valid question group and registration must be passed to EE_Registration_Custom_Question_Form', 'event_espresso' ) ); |
|
| 92 | + throw new EE_Error(__('A valid question group and registration must be passed to EE_Registration_Custom_Question_Form', 'event_espresso')); |
|
| 93 | 93 | } |
| 94 | 94 | $parts_of_subsection = array( |
| 95 | 95 | 'title' => new EE_Form_Section_HTML( |
| 96 | - EEH_HTML::h5( $question_group->name(), |
|
| 96 | + EEH_HTML::h5($question_group->name(), |
|
| 97 | 97 | $question_group->identifier(), |
| 98 | - 'espresso-question-group-title-h5 section-title' ) |
|
| 98 | + 'espresso-question-group-title-h5 section-title') |
|
| 99 | 99 | ) |
| 100 | 100 | ); |
| 101 | - foreach( $question_group->questions( array( array( 'QST_system' => '' ))) as $question ) { |
|
| 102 | - $parts_of_subsection[ $question->ID() ] = $question->generate_form_input( $registration ); |
|
| 101 | + foreach ($question_group->questions(array(array('QST_system' => ''))) as $question) { |
|
| 102 | + $parts_of_subsection[$question->ID()] = $question->generate_form_input($registration); |
|
| 103 | 103 | } |
| 104 | - $parts_of_subsection[ 'edit_link' ] = new EE_Form_Section_HTML( |
|
| 105 | - '<tr><th/><td class="reg-admin-edit-attendee-question-td"><a class="reg-admin-edit-attendee-question-lnk" href="#" title="' . esc_attr__( 'click to edit question', 'event_espresso' ) . '"> |
|
| 106 | - <span class="reg-admin-edit-question-group-spn lt-grey-txt">' . __( 'edit the above question group', 'event_espresso' ) . '</span> |
|
| 104 | + $parts_of_subsection['edit_link'] = new EE_Form_Section_HTML( |
|
| 105 | + '<tr><th/><td class="reg-admin-edit-attendee-question-td"><a class="reg-admin-edit-attendee-question-lnk" href="#" title="'.esc_attr__('click to edit question', 'event_espresso').'"> |
|
| 106 | + <span class="reg-admin-edit-question-group-spn lt-grey-txt">' . __('edit the above question group', 'event_espresso').'</span> |
|
| 107 | 107 | <div class="dashicons dashicons-edit"></div> |
| 108 | 108 | </a></td></tr>' |
| 109 | 109 | ); |
@@ -124,12 +124,12 @@ discard block |
||
| 124 | 124 | protected function _normalize($req_data) { |
| 125 | 125 | $this->_received_submission = TRUE; |
| 126 | 126 | $this->_validation_errors = array(); |
| 127 | - foreach($this->get_validatable_subsections() as $subsection){ |
|
| 128 | - if( $subsection->form_data_present_in( $req_data ) ) { |
|
| 129 | - try{ |
|
| 127 | + foreach ($this->get_validatable_subsections() as $subsection) { |
|
| 128 | + if ($subsection->form_data_present_in($req_data)) { |
|
| 129 | + try { |
|
| 130 | 130 | $subsection->_normalize($req_data); |
| 131 | - }catch( EE_Validation_Error $e ){ |
|
| 132 | - $subsection->add_validation_error( $e ); |
|
| 131 | + } catch (EE_Validation_Error $e) { |
|
| 132 | + $subsection->add_validation_error($e); |
|
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | } |
@@ -144,13 +144,13 @@ discard block |
||
| 144 | 144 | * calling parent::_validate() first. |
| 145 | 145 | */ |
| 146 | 146 | protected function _validate() { |
| 147 | - foreach($this->get_validatable_subsections() as $subsection_name => $subsection){ |
|
| 148 | - if( $subsection->form_data_present_in( $req_data ) ) { |
|
| 149 | - if(method_exists($this,'_validate_'.$subsection_name)){ |
|
| 150 | - call_user_func_array(array($this,'_validate_'.$subsection_name), array($subsection)); |
|
| 147 | + foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) { |
|
| 148 | + if ($subsection->form_data_present_in($req_data)) { |
|
| 149 | + if (method_exists($this, '_validate_'.$subsection_name)) { |
|
| 150 | + call_user_func_array(array($this, '_validate_'.$subsection_name), array($subsection)); |
|
| 151 | 151 | } |
| 152 | 152 | $subsection->_validate(); |
| 153 | - } elseif( $subsection instanceof EE_Form_Section_Proper ) { |
|
| 153 | + } elseif ($subsection instanceof EE_Form_Section_Proper) { |
|
| 154 | 154 | $subsection->_received_submission = true; |
| 155 | 155 | } |
| 156 | 156 | } |
@@ -128,7 +128,7 @@ |
||
| 128 | 128 | if( $subsection->form_data_present_in( $req_data ) ) { |
| 129 | 129 | try{ |
| 130 | 130 | $subsection->_normalize($req_data); |
| 131 | - }catch( EE_Validation_Error $e ){ |
|
| 131 | + } catch( EE_Validation_Error $e ){ |
|
| 132 | 132 | $subsection->add_validation_error( $e ); |
| 133 | 133 | } |
| 134 | 134 | } |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | |
| 17 | 17 | |
| 18 | -if ( ! function_exists( 'espresso_get_template_part' )) { |
|
| 18 | +if ( ! function_exists('espresso_get_template_part')) { |
|
| 19 | 19 | /** |
| 20 | 20 | * espresso_get_template_part |
| 21 | 21 | * basically a copy of the WordPress get_template_part() function but uses EEH_Template::locate_template() instead, and doesn't add base versions of files |
@@ -25,14 +25,14 @@ discard block |
||
| 25 | 25 | * @param string $name The name of the specialised template. |
| 26 | 26 | * @return string the html output for the formatted money value |
| 27 | 27 | */ |
| 28 | - function espresso_get_template_part( $slug = NULL, $name = NULL ) { |
|
| 29 | - EEH_Template::get_template_part( $slug, $name ); |
|
| 28 | + function espresso_get_template_part($slug = NULL, $name = NULL) { |
|
| 29 | + EEH_Template::get_template_part($slug, $name); |
|
| 30 | 30 | } |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | |
| 34 | 34 | |
| 35 | -if ( ! function_exists( 'espresso_get_object_css_class' )) { |
|
| 35 | +if ( ! function_exists('espresso_get_object_css_class')) { |
|
| 36 | 36 | /** |
| 37 | 37 | * espresso_get_object_css_class - attempts to generate a css class based on the type of EE object passed |
| 38 | 38 | * |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | * @param string $suffix added to the end of the generated class |
| 43 | 43 | * @return string |
| 44 | 44 | */ |
| 45 | - function espresso_get_object_css_class( $object = NULL, $prefix = '', $suffix = '' ) { |
|
| 46 | - return EEH_Template::get_object_css_class( $object, $prefix, $suffix ); |
|
| 45 | + function espresso_get_object_css_class($object = NULL, $prefix = '', $suffix = '') { |
|
| 46 | + return EEH_Template::get_object_css_class($object, $prefix, $suffix); |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * @return boolean |
| 71 | 71 | */ |
| 72 | 72 | public static function is_espresso_theme() { |
| 73 | - return wp_get_theme()->get( 'TextDomain' ) == 'event_espresso' ? TRUE : FALSE; |
|
| 73 | + return wp_get_theme()->get('TextDomain') == 'event_espresso' ? TRUE : FALSE; |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | /** |
@@ -79,9 +79,9 @@ discard block |
||
| 79 | 79 | * @return void |
| 80 | 80 | */ |
| 81 | 81 | public static function load_espresso_theme_functions() { |
| 82 | - if ( ! defined( 'EE_THEME_FUNCTIONS_LOADED' )) { |
|
| 83 | - if ( is_readable( EE_PUBLIC . EE_Config::get_current_theme() . DS . 'functions.php' )) { |
|
| 84 | - require_once( EE_PUBLIC . EE_Config::get_current_theme() . DS . 'functions.php' ); |
|
| 82 | + if ( ! defined('EE_THEME_FUNCTIONS_LOADED')) { |
|
| 83 | + if (is_readable(EE_PUBLIC.EE_Config::get_current_theme().DS.'functions.php')) { |
|
| 84 | + require_once(EE_PUBLIC.EE_Config::get_current_theme().DS.'functions.php'); |
|
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | } |
@@ -93,17 +93,17 @@ discard block |
||
| 93 | 93 | * @return array |
| 94 | 94 | */ |
| 95 | 95 | public static function get_espresso_themes() { |
| 96 | - if ( empty( EEH_Template::$_espresso_themes )) { |
|
| 97 | - $espresso_themes = glob( EE_PUBLIC . '*', GLOB_ONLYDIR ); |
|
| 98 | - if ( empty( $espresso_themes ) ) { |
|
| 96 | + if (empty(EEH_Template::$_espresso_themes)) { |
|
| 97 | + $espresso_themes = glob(EE_PUBLIC.'*', GLOB_ONLYDIR); |
|
| 98 | + if (empty($espresso_themes)) { |
|
| 99 | 99 | return array(); |
| 100 | 100 | } |
| 101 | - if (( $key = array_search( 'global_assets', $espresso_themes )) !== FALSE ) { |
|
| 102 | - unset( $espresso_themes[ $key ] ); |
|
| 101 | + if (($key = array_search('global_assets', $espresso_themes)) !== FALSE) { |
|
| 102 | + unset($espresso_themes[$key]); |
|
| 103 | 103 | } |
| 104 | 104 | EEH_Template::$_espresso_themes = array(); |
| 105 | - foreach ( $espresso_themes as $espresso_theme ) { |
|
| 106 | - EEH_Template::$_espresso_themes[ basename( $espresso_theme ) ] = $espresso_theme; |
|
| 105 | + foreach ($espresso_themes as $espresso_theme) { |
|
| 106 | + EEH_Template::$_espresso_themes[basename($espresso_theme)] = $espresso_theme; |
|
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | return EEH_Template::$_espresso_themes; |
@@ -122,16 +122,16 @@ discard block |
||
| 122 | 122 | * @param bool $return_string |
| 123 | 123 | * @return string the html output for the formatted money value |
| 124 | 124 | */ |
| 125 | - public static function get_template_part( $slug = NULL, $name = NULL, $template_args = array(), $return_string = FALSE ) { |
|
| 126 | - do_action( "get_template_part_{$slug}-{$name}", $slug, $name ); |
|
| 125 | + public static function get_template_part($slug = NULL, $name = NULL, $template_args = array(), $return_string = FALSE) { |
|
| 126 | + do_action("get_template_part_{$slug}-{$name}", $slug, $name); |
|
| 127 | 127 | $templates = array(); |
| 128 | 128 | $name = (string) $name; |
| 129 | - if ( $name != '' ) { |
|
| 129 | + if ($name != '') { |
|
| 130 | 130 | $templates[] = "{$slug}-{$name}.php"; |
| 131 | 131 | } |
| 132 | 132 | // allow template parts to be turned off via something like: add_filter( 'FHEE__content_espresso_events_tickets_template__display_datetimes', '__return_false' ); |
| 133 | - if ( apply_filters( "FHEE__EEH_Template__get_template_part__display__{$slug}_{$name}", TRUE )) { |
|
| 134 | - EEH_Template::locate_template( $templates, $template_args, TRUE, $return_string ); |
|
| 133 | + if (apply_filters("FHEE__EEH_Template__get_template_part__display__{$slug}_{$name}", TRUE)) { |
|
| 134 | + EEH_Template::locate_template($templates, $template_args, TRUE, $return_string); |
|
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
@@ -182,26 +182,26 @@ discard block |
||
| 182 | 182 | * Used in places where you don't actually load the template, you just want to know if there's a custom version of it. |
| 183 | 183 | * @return mixed |
| 184 | 184 | */ |
| 185 | - public static function locate_template( $templates = array(), $template_args = array(), $load = TRUE, $return_string = TRUE, $check_if_custom = FALSE ) { |
|
| 185 | + public static function locate_template($templates = array(), $template_args = array(), $load = TRUE, $return_string = TRUE, $check_if_custom = FALSE) { |
|
| 186 | 186 | // first use WP locate_template to check for template in the current theme folder |
| 187 | - $template_path = locate_template( $templates ); |
|
| 187 | + $template_path = locate_template($templates); |
|
| 188 | 188 | |
| 189 | - if ( $check_if_custom && !empty( $template_path ) ) |
|
| 189 | + if ($check_if_custom && ! empty($template_path)) |
|
| 190 | 190 | return TRUE; |
| 191 | 191 | |
| 192 | 192 | // not in the theme |
| 193 | - if ( empty( $template_path )) { |
|
| 193 | + if (empty($template_path)) { |
|
| 194 | 194 | // not even a template to look for ? |
| 195 | - if ( empty( $templates )) { |
|
| 195 | + if (empty($templates)) { |
|
| 196 | 196 | // get post_type |
| 197 | - $post_type = EE_Registry::instance()->REQ->get( 'post_type' ); |
|
| 197 | + $post_type = EE_Registry::instance()->REQ->get('post_type'); |
|
| 198 | 198 | // get array of EE Custom Post Types |
| 199 | 199 | $EE_CPTs = EE_Register_CPTs::get_CPTs(); |
| 200 | 200 | // build template name based on request |
| 201 | - if ( isset( $EE_CPTs[ $post_type ] )) { |
|
| 202 | - $archive_or_single = is_archive() ? 'archive' : ''; |
|
| 203 | - $archive_or_single = is_single() ? 'single' : $archive_or_single; |
|
| 204 | - $templates = $archive_or_single . '-' . $post_type . '.php'; |
|
| 201 | + if (isset($EE_CPTs[$post_type])) { |
|
| 202 | + $archive_or_single = is_archive() ? 'archive' : ''; |
|
| 203 | + $archive_or_single = is_single() ? 'single' : $archive_or_single; |
|
| 204 | + $templates = $archive_or_single.'-'.$post_type.'.php'; |
|
| 205 | 205 | } |
| 206 | 206 | } |
| 207 | 207 | // currently active EE template theme |
@@ -210,80 +210,80 @@ discard block |
||
| 210 | 210 | // array of paths to folders that may contain templates |
| 211 | 211 | $template_folder_paths = array( |
| 212 | 212 | // first check the /wp-content/uploads/espresso/templates/(current EE theme)/ folder for an EE theme template file |
| 213 | - EVENT_ESPRESSO_TEMPLATE_DIR . $current_theme, |
|
| 213 | + EVENT_ESPRESSO_TEMPLATE_DIR.$current_theme, |
|
| 214 | 214 | // then in the root of the /wp-content/uploads/espresso/templates/ folder |
| 215 | 215 | EVENT_ESPRESSO_TEMPLATE_DIR |
| 216 | 216 | ); |
| 217 | 217 | |
| 218 | 218 | //add core plugin folders for checking only if we're not $check_if_custom |
| 219 | - if ( ! $check_if_custom ) { |
|
| 219 | + if ( ! $check_if_custom) { |
|
| 220 | 220 | $core_paths = array( |
| 221 | 221 | // in the /wp-content/plugins/(EE4 folder)/public/(current EE theme)/ folder within the plugin |
| 222 | - EE_PUBLIC . $current_theme, |
|
| 222 | + EE_PUBLIC.$current_theme, |
|
| 223 | 223 | // in the /wp-content/plugins/(EE4 folder)/core/templates/(current EE theme)/ folder within the plugin |
| 224 | - EE_TEMPLATES . $current_theme, |
|
| 224 | + EE_TEMPLATES.$current_theme, |
|
| 225 | 225 | // or maybe relative from the plugin root: /wp-content/plugins/(EE4 folder)/ |
| 226 | 226 | EE_PLUGIN_DIR_PATH |
| 227 | 227 | ); |
| 228 | - $template_folder_paths = array_merge( $template_folder_paths, $core_paths ); |
|
| 228 | + $template_folder_paths = array_merge($template_folder_paths, $core_paths); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | // now filter that array |
| 232 | - $template_folder_paths = apply_filters( 'FHEE__EEH_Template__locate_template__template_folder_paths', $template_folder_paths ); |
|
| 233 | - $templates = is_array( $templates ) ? $templates : array( $templates ); |
|
| 234 | - $template_folder_paths = is_array( $template_folder_paths ) ? $template_folder_paths : array( $template_folder_paths ); |
|
| 232 | + $template_folder_paths = apply_filters('FHEE__EEH_Template__locate_template__template_folder_paths', $template_folder_paths); |
|
| 233 | + $templates = is_array($templates) ? $templates : array($templates); |
|
| 234 | + $template_folder_paths = is_array($template_folder_paths) ? $template_folder_paths : array($template_folder_paths); |
|
| 235 | 235 | // array to hold all possible template paths |
| 236 | 236 | $full_template_paths = array(); |
| 237 | 237 | |
| 238 | 238 | EE_Registry::instance()->load_helper('File'); |
| 239 | 239 | // loop through $templates |
| 240 | - foreach ( $templates as $template ) { |
|
| 240 | + foreach ($templates as $template) { |
|
| 241 | 241 | // normalize directory separators |
| 242 | - $template = EEH_File::standardise_directory_separators( $template ); |
|
| 243 | - $file_name = basename( $template ); |
|
| 244 | - $template_path_minus_file_name = substr( $template, 0, ( strlen( $file_name ) * -1 ) ); |
|
| 242 | + $template = EEH_File::standardise_directory_separators($template); |
|
| 243 | + $file_name = basename($template); |
|
| 244 | + $template_path_minus_file_name = substr($template, 0, (strlen($file_name) * -1)); |
|
| 245 | 245 | // while looping through all template folder paths |
| 246 | - foreach ( $template_folder_paths as $template_folder_path ) { |
|
| 246 | + foreach ($template_folder_paths as $template_folder_path) { |
|
| 247 | 247 | // normalize directory separators |
| 248 | - $template_folder_path = EEH_File::standardise_directory_separators( $template_folder_path ); |
|
| 248 | + $template_folder_path = EEH_File::standardise_directory_separators($template_folder_path); |
|
| 249 | 249 | // determine if any common base path exists between the two paths |
| 250 | 250 | $common_base_path = EEH_Template::_find_common_base_path( |
| 251 | - array( $template_folder_path, $template_path_minus_file_name ) |
|
| 251 | + array($template_folder_path, $template_path_minus_file_name) |
|
| 252 | 252 | ); |
| 253 | - if ( $common_base_path !== '' ) { |
|
| 253 | + if ($common_base_path !== '') { |
|
| 254 | 254 | // both paths have a common base, so just tack the filename onto our search path |
| 255 | - $resolved_path = EEH_File::end_with_directory_separator( $template_folder_path ) . $file_name; |
|
| 255 | + $resolved_path = EEH_File::end_with_directory_separator($template_folder_path).$file_name; |
|
| 256 | 256 | } else { |
| 257 | 257 | // no common base path, so let's just concatenate |
| 258 | - $resolved_path = EEH_File::end_with_directory_separator( $template_folder_path ) . $template; |
|
| 258 | + $resolved_path = EEH_File::end_with_directory_separator($template_folder_path).$template; |
|
| 259 | 259 | } |
| 260 | 260 | // build up our template locations array by adding our resolved paths |
| 261 | 261 | $full_template_paths[] = $resolved_path; |
| 262 | 262 | } |
| 263 | 263 | // if $template is an absolute path, then we'll tack it onto the start of our array so that it gets searched first |
| 264 | - array_unshift( $full_template_paths, $template ); |
|
| 264 | + array_unshift($full_template_paths, $template); |
|
| 265 | 265 | // path to the directory of the current theme: /wp-content/themes/(current WP theme)/ |
| 266 | - array_unshift( $full_template_paths, get_stylesheet_directory() . DS . $file_name ); |
|
| 266 | + array_unshift($full_template_paths, get_stylesheet_directory().DS.$file_name); |
|
| 267 | 267 | } |
| 268 | 268 | // filter final array of full template paths |
| 269 | - $full_template_paths = apply_filters( 'FHEE__EEH_Template__locate_template__full_template_paths', $full_template_paths, $file_name ); |
|
| 269 | + $full_template_paths = apply_filters('FHEE__EEH_Template__locate_template__full_template_paths', $full_template_paths, $file_name); |
|
| 270 | 270 | // now loop through our final array of template location paths and check each location |
| 271 | - foreach ( (array)$full_template_paths as $full_template_path ) { |
|
| 272 | - if ( is_readable( $full_template_path )) { |
|
| 273 | - $template_path = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $full_template_path ); |
|
| 271 | + foreach ((array) $full_template_paths as $full_template_path) { |
|
| 272 | + if (is_readable($full_template_path)) { |
|
| 273 | + $template_path = str_replace(array('\\', '/'), DIRECTORY_SEPARATOR, $full_template_path); |
|
| 274 | 274 | break; |
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | } |
| 278 | 278 | // if we got it and you want to see it... |
| 279 | - if ( $template_path && $load && ! $check_if_custom ) { |
|
| 280 | - if ( $return_string ) { |
|
| 281 | - return EEH_Template::display_template( $template_path, $template_args, TRUE ); |
|
| 279 | + if ($template_path && $load && ! $check_if_custom) { |
|
| 280 | + if ($return_string) { |
|
| 281 | + return EEH_Template::display_template($template_path, $template_args, TRUE); |
|
| 282 | 282 | } else { |
| 283 | - EEH_Template::display_template( $template_path, $template_args, FALSE ); |
|
| 283 | + EEH_Template::display_template($template_path, $template_args, FALSE); |
|
| 284 | 284 | } |
| 285 | 285 | } |
| 286 | - return $check_if_custom && ! empty( $template_path ) ? TRUE : $template_path; |
|
| 286 | + return $check_if_custom && ! empty($template_path) ? TRUE : $template_path; |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | |
@@ -296,21 +296,21 @@ discard block |
||
| 296 | 296 | * @param array $paths |
| 297 | 297 | * @return string |
| 298 | 298 | */ |
| 299 | - protected static function _find_common_base_path( $paths ) { |
|
| 299 | + protected static function _find_common_base_path($paths) { |
|
| 300 | 300 | $last_offset = 0; |
| 301 | 301 | $common_base_path = ''; |
| 302 | - while ( ( $index = strpos( $paths[ 0 ], DS, $last_offset ) ) !== false ) { |
|
| 302 | + while (($index = strpos($paths[0], DS, $last_offset)) !== false) { |
|
| 303 | 303 | $dir_length = $index - $last_offset + 1; |
| 304 | - $directory = substr( $paths[ 0 ], $last_offset, $dir_length ); |
|
| 305 | - foreach ( $paths as $path ) { |
|
| 306 | - if ( substr( $path, $last_offset, $dir_length ) != $directory ) { |
|
| 304 | + $directory = substr($paths[0], $last_offset, $dir_length); |
|
| 305 | + foreach ($paths as $path) { |
|
| 306 | + if (substr($path, $last_offset, $dir_length) != $directory) { |
|
| 307 | 307 | return $common_base_path; |
| 308 | 308 | } |
| 309 | 309 | } |
| 310 | 310 | $common_base_path .= $directory; |
| 311 | 311 | $last_offset = $index + 1; |
| 312 | 312 | } |
| 313 | - return substr( $common_base_path, 0, -1 ); |
|
| 313 | + return substr($common_base_path, 0, -1); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | |
@@ -322,9 +322,9 @@ discard block |
||
| 322 | 322 | * @param boolean $return_string whether to send output immediately to screen, or capture and return as a string |
| 323 | 323 | * @return mixed string |
| 324 | 324 | */ |
| 325 | - public static function display_template( $template_path = FALSE, $template_args = array(), $return_string = FALSE ) { |
|
| 325 | + public static function display_template($template_path = FALSE, $template_args = array(), $return_string = FALSE) { |
|
| 326 | 326 | //require the template validator for verifying variables are set according to how the template requires |
| 327 | - EE_Registry::instance()->load_helper( 'Template_Validator' ); |
|
| 327 | + EE_Registry::instance()->load_helper('Template_Validator'); |
|
| 328 | 328 | |
| 329 | 329 | /** |
| 330 | 330 | * These two filters are intended for last minute changes to templates being loaded and/or template arg |
@@ -335,26 +335,26 @@ discard block |
||
| 335 | 335 | * |
| 336 | 336 | * @since 4.6.0 |
| 337 | 337 | */ |
| 338 | - $template_path = apply_filters( 'FHEE__EEH_Template__display_template__template_path', $template_path ); |
|
| 339 | - $template_args = apply_filters( 'FHEE__EEH_Template__display_template__template_args', $template_args ); |
|
| 338 | + $template_path = apply_filters('FHEE__EEH_Template__display_template__template_path', $template_path); |
|
| 339 | + $template_args = apply_filters('FHEE__EEH_Template__display_template__template_args', $template_args); |
|
| 340 | 340 | |
| 341 | 341 | // you gimme nuttin - YOU GET NUTTIN !! |
| 342 | - if ( ! $template_path || ! is_readable( $template_path )) { |
|
| 342 | + if ( ! $template_path || ! is_readable($template_path)) { |
|
| 343 | 343 | return ''; |
| 344 | 344 | } |
| 345 | 345 | // if $template_args are not in an array, then make it so |
| 346 | - if ( ! is_array( $template_args ) && ! is_object( $template_args )) { |
|
| 347 | - $template_args = array( $template_args ); |
|
| 346 | + if ( ! is_array($template_args) && ! is_object($template_args)) { |
|
| 347 | + $template_args = array($template_args); |
|
| 348 | 348 | } |
| 349 | - extract( (array) $template_args); |
|
| 349 | + extract((array) $template_args); |
|
| 350 | 350 | |
| 351 | - if ( $return_string ) { |
|
| 351 | + if ($return_string) { |
|
| 352 | 352 | // because we want to return a string, we are going to capture the output |
| 353 | 353 | ob_start(); |
| 354 | - include( $template_path ); |
|
| 354 | + include($template_path); |
|
| 355 | 355 | return ob_get_clean(); |
| 356 | 356 | } else { |
| 357 | - include( $template_path ); |
|
| 357 | + include($template_path); |
|
| 358 | 358 | } |
| 359 | 359 | return ''; |
| 360 | 360 | } |
@@ -372,27 +372,27 @@ discard block |
||
| 372 | 372 | * @param string $suffix added to the end of the generated class |
| 373 | 373 | * @return string |
| 374 | 374 | */ |
| 375 | - public static function get_object_css_class( $object = NULL, $prefix = '', $suffix = '' ) { |
|
| 375 | + public static function get_object_css_class($object = NULL, $prefix = '', $suffix = '') { |
|
| 376 | 376 | // in the beginning... |
| 377 | - $prefix = ! empty( $prefix ) ? rtrim( $prefix, '-' ) . '-' : ''; |
|
| 377 | + $prefix = ! empty($prefix) ? rtrim($prefix, '-').'-' : ''; |
|
| 378 | 378 | // da muddle |
| 379 | 379 | $class = ''; |
| 380 | 380 | // the end |
| 381 | - $suffix = ! empty( $suffix ) ? '-' . ltrim( $suffix, '-' ) : ''; |
|
| 381 | + $suffix = ! empty($suffix) ? '-'.ltrim($suffix, '-') : ''; |
|
| 382 | 382 | // is the passed object an EE object ? |
| 383 | - if ( $object instanceof EE_Base_Class ) { |
|
| 383 | + if ($object instanceof EE_Base_Class) { |
|
| 384 | 384 | // grab the exact type of object |
| 385 | - $obj_class = get_class( $object ); |
|
| 385 | + $obj_class = get_class($object); |
|
| 386 | 386 | // depending on the type of object... |
| 387 | - switch ( $obj_class ) { |
|
| 387 | + switch ($obj_class) { |
|
| 388 | 388 | // no specifics just yet... |
| 389 | 389 | default : |
| 390 | - $class = strtolower( str_replace( '_', '-', $obj_class )); |
|
| 391 | - $class .= method_exists( $obj_class, 'name' ) ? '-' . sanitize_title( $object->name() ) : ''; |
|
| 390 | + $class = strtolower(str_replace('_', '-', $obj_class)); |
|
| 391 | + $class .= method_exists($obj_class, 'name') ? '-'.sanitize_title($object->name()) : ''; |
|
| 392 | 392 | |
| 393 | 393 | } |
| 394 | 394 | } |
| 395 | - return $prefix . $class . $suffix; |
|
| 395 | + return $prefix.$class.$suffix; |
|
| 396 | 396 | } |
| 397 | 397 | |
| 398 | 398 | |
@@ -408,50 +408,50 @@ discard block |
||
| 408 | 408 | * @param string $cur_code_span_class |
| 409 | 409 | * @return string the html output for the formatted money value |
| 410 | 410 | */ |
| 411 | - public static function format_currency( $amount = NULL, $return_raw = FALSE, $display_code = TRUE, $CNT_ISO = '', $cur_code_span_class = 'currency-code' ) { |
|
| 411 | + public static function format_currency($amount = NULL, $return_raw = FALSE, $display_code = TRUE, $CNT_ISO = '', $cur_code_span_class = 'currency-code') { |
|
| 412 | 412 | // ensure amount was received |
| 413 | - if ( is_null( $amount ) ) { |
|
| 414 | - $msg = __( 'In order to format currency, an amount needs to be passed.', 'event_espresso' ); |
|
| 415 | - EE_Error::add_error( $msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
| 413 | + if (is_null($amount)) { |
|
| 414 | + $msg = __('In order to format currency, an amount needs to be passed.', 'event_espresso'); |
|
| 415 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 416 | 416 | return ''; |
| 417 | 417 | } |
| 418 | 418 | //ensure amount is float |
| 419 | 419 | $amount = (float) $amount; |
| 420 | 420 | // filter raw amount (allows 0.00 to be changed to "free" for example) |
| 421 | - $amount_formatted = apply_filters( 'FHEE__EEH_Template__format_currency__amount', $amount, $return_raw ); |
|
| 421 | + $amount_formatted = apply_filters('FHEE__EEH_Template__format_currency__amount', $amount, $return_raw); |
|
| 422 | 422 | // still a number or was amount converted to a string like "free" ? |
| 423 | - if ( is_float( $amount_formatted )) { |
|
| 423 | + if (is_float($amount_formatted)) { |
|
| 424 | 424 | // was a country ISO code passed ? if so generate currency config object for that country |
| 425 | - $mny = $CNT_ISO !== '' ? new EE_Currency_Config( $CNT_ISO ) : NULL; |
|
| 425 | + $mny = $CNT_ISO !== '' ? new EE_Currency_Config($CNT_ISO) : NULL; |
|
| 426 | 426 | // verify results |
| 427 | - if ( ! $mny instanceof EE_Currency_Config ) { |
|
| 427 | + if ( ! $mny instanceof EE_Currency_Config) { |
|
| 428 | 428 | // set default config country currency settings |
| 429 | 429 | $mny = EE_Registry::instance()->CFG->currency instanceof EE_Currency_Config ? EE_Registry::instance()->CFG->currency : new EE_Currency_Config(); |
| 430 | 430 | } |
| 431 | 431 | // format float |
| 432 | - $amount_formatted = number_format( $amount, $mny->dec_plc, $mny->dec_mrk, $mny->thsnds ); |
|
| 432 | + $amount_formatted = number_format($amount, $mny->dec_plc, $mny->dec_mrk, $mny->thsnds); |
|
| 433 | 433 | // add formatting ? |
| 434 | - if ( ! $return_raw ) { |
|
| 434 | + if ( ! $return_raw) { |
|
| 435 | 435 | // add currency sign |
| 436 | - if( $mny->sign_b4 ){ |
|
| 437 | - if( $amount >= 0 ){ |
|
| 438 | - $amount_formatted = $mny->sign . $amount_formatted; |
|
| 439 | - }else{ |
|
| 440 | - $amount_formatted = '-' . $mny->sign . str_replace( '-', '', $amount_formatted ); |
|
| 436 | + if ($mny->sign_b4) { |
|
| 437 | + if ($amount >= 0) { |
|
| 438 | + $amount_formatted = $mny->sign.$amount_formatted; |
|
| 439 | + } else { |
|
| 440 | + $amount_formatted = '-'.$mny->sign.str_replace('-', '', $amount_formatted); |
|
| 441 | 441 | } |
| 442 | 442 | |
| 443 | - }else{ |
|
| 444 | - $amount_formatted = $amount_formatted . $mny->sign; |
|
| 443 | + } else { |
|
| 444 | + $amount_formatted = $amount_formatted.$mny->sign; |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | // add currency code ? |
| 448 | - $amount_formatted = $display_code ? $amount_formatted . ' <span class="' . $cur_code_span_class . '">(' . $mny->code . ')</span>' : $amount_formatted; |
|
| 448 | + $amount_formatted = $display_code ? $amount_formatted.' <span class="'.$cur_code_span_class.'">('.$mny->code.')</span>' : $amount_formatted; |
|
| 449 | 449 | } |
| 450 | 450 | // filter results |
| 451 | - $amount_formatted = apply_filters( 'FHEE__EEH_Template__format_currency__amount_formatted', $amount_formatted, $mny, $return_raw ); |
|
| 451 | + $amount_formatted = apply_filters('FHEE__EEH_Template__format_currency__amount_formatted', $amount_formatted, $mny, $return_raw); |
|
| 452 | 452 | } |
| 453 | 453 | // clean up vars |
| 454 | - unset( $mny ); |
|
| 454 | + unset($mny); |
|
| 455 | 455 | // return formatted currency amount |
| 456 | 456 | return $amount_formatted; |
| 457 | 457 | } |
@@ -466,11 +466,11 @@ discard block |
||
| 466 | 466 | * @param string $schema 'UPPER', 'lower', or 'Sentence' |
| 467 | 467 | * @return string The localized label for the status id. |
| 468 | 468 | */ |
| 469 | - public static function pretty_status( $status_id, $plural = FALSE, $schema = 'upper' ) { |
|
| 469 | + public static function pretty_status($status_id, $plural = FALSE, $schema = 'upper') { |
|
| 470 | 470 | /** @type EEM_Status $EEM_Status */ |
| 471 | - $EEM_Status = EE_Registry::instance()->load_model( 'Status' ); |
|
| 472 | - $status = $EEM_Status->localized_status( array( $status_id => __( 'unknown', 'event_espresso' )), $plural, $schema ); |
|
| 473 | - return $status[ $status_id ]; |
|
| 471 | + $EEM_Status = EE_Registry::instance()->load_model('Status'); |
|
| 472 | + $status = $EEM_Status->localized_status(array($status_id => __('unknown', 'event_espresso')), $plural, $schema); |
|
| 473 | + return $status[$status_id]; |
|
| 474 | 474 | } |
| 475 | 475 | |
| 476 | 476 | |
@@ -483,9 +483,9 @@ discard block |
||
| 483 | 483 | * @param string $icon |
| 484 | 484 | * @return string the html output for the button |
| 485 | 485 | */ |
| 486 | - public static function get_button_or_link( $url, $label, $class = 'button-primary', $icon = '' ) { |
|
| 487 | - $label = ! empty( $icon ) ? '<span class="' . $icon . '"></span>' . $label : $label; |
|
| 488 | - $button = '<a id="' . sanitize_title_with_dashes($label) . '" href="' . $url . '" class="' . $class . '">' . $label . '</a>'; |
|
| 486 | + public static function get_button_or_link($url, $label, $class = 'button-primary', $icon = '') { |
|
| 487 | + $label = ! empty($icon) ? '<span class="'.$icon.'"></span>'.$label : $label; |
|
| 488 | + $button = '<a id="'.sanitize_title_with_dashes($label).'" href="'.$url.'" class="'.$class.'">'.$label.'</a>'; |
|
| 489 | 489 | return $button; |
| 490 | 490 | } |
| 491 | 491 | |
@@ -502,21 +502,21 @@ discard block |
||
| 502 | 502 | * @param bool|string $help_text (optional) send help text you want to use for the link if default not to be used |
| 503 | 503 | * @return string generated link |
| 504 | 504 | */ |
| 505 | - public static function get_help_tab_link( $help_tab_id, $page = FALSE, $action = FALSE, $icon_style = FALSE, $help_text = FALSE ) { |
|
| 505 | + public static function get_help_tab_link($help_tab_id, $page = FALSE, $action = FALSE, $icon_style = FALSE, $help_text = FALSE) { |
|
| 506 | 506 | |
| 507 | - if ( ! $page ) |
|
| 508 | - $page = isset( $_REQUEST['page'] ) && ! empty( $_REQUEST['page'] ) ? sanitize_key( $_REQUEST['page'] ) : $page; |
|
| 507 | + if ( ! $page) |
|
| 508 | + $page = isset($_REQUEST['page']) && ! empty($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : $page; |
|
| 509 | 509 | |
| 510 | - if ( ! $action ) |
|
| 511 | - $action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? sanitize_key( $_REQUEST['action'] ) : $action; |
|
| 510 | + if ( ! $action) |
|
| 511 | + $action = isset($_REQUEST['action']) && ! empty($_REQUEST['action']) ? sanitize_key($_REQUEST['action']) : $action; |
|
| 512 | 512 | |
| 513 | 513 | $action = empty($action) ? 'default' : $action; |
| 514 | 514 | |
| 515 | 515 | |
| 516 | - $help_tab_lnk = $page . '-' . $action . '-' . $help_tab_id; |
|
| 517 | - $icon = !$icon_style ? ' dashicons-editor-help' : $icon_style; |
|
| 518 | - $help_text = !$help_text ? '' : $help_text; |
|
| 519 | - return '<a id="' . $help_tab_lnk . '" class="ee-clickable dashicons espresso-help-tab-lnk ee-icon-size-22' . $icon . '" title="' . esc_attr__('Click to open the \'Help\' tab for more information about this feature.', 'event_espresso') . '" > ' . $help_text . ' </a>'; |
|
| 516 | + $help_tab_lnk = $page.'-'.$action.'-'.$help_tab_id; |
|
| 517 | + $icon = ! $icon_style ? ' dashicons-editor-help' : $icon_style; |
|
| 518 | + $help_text = ! $help_text ? '' : $help_text; |
|
| 519 | + return '<a id="'.$help_tab_lnk.'" class="ee-clickable dashicons espresso-help-tab-lnk ee-icon-size-22'.$icon.'" title="'.esc_attr__('Click to open the \'Help\' tab for more information about this feature.', 'event_espresso').'" > '.$help_text.' </a>'; |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | 522 | |
@@ -528,31 +528,31 @@ discard block |
||
| 528 | 528 | * @param EE_Help_Tour |
| 529 | 529 | * @return string html |
| 530 | 530 | */ |
| 531 | - public static function help_tour_stops_generator( EE_Help_Tour $tour ) { |
|
| 531 | + public static function help_tour_stops_generator(EE_Help_Tour $tour) { |
|
| 532 | 532 | $id = $tour->get_slug(); |
| 533 | 533 | $stops = $tour->get_stops(); |
| 534 | 534 | |
| 535 | - $content = '<ol style="display:none" id="' . $id . '">'; |
|
| 535 | + $content = '<ol style="display:none" id="'.$id.'">'; |
|
| 536 | 536 | |
| 537 | - foreach ( $stops as $stop ) { |
|
| 538 | - $data_id = !empty( $stop['id'] ) ? ' data-id="' . $stop['id'] . '"' : ''; |
|
| 539 | - $data_class = empty( $data_id ) && !empty( $stop['class'] ) ? ' data-class="' . $stop['class'] . '"' : ''; |
|
| 537 | + foreach ($stops as $stop) { |
|
| 538 | + $data_id = ! empty($stop['id']) ? ' data-id="'.$stop['id'].'"' : ''; |
|
| 539 | + $data_class = empty($data_id) && ! empty($stop['class']) ? ' data-class="'.$stop['class'].'"' : ''; |
|
| 540 | 540 | |
| 541 | 541 | //if container is set to modal then let's make sure we set the options accordingly |
| 542 | - if ( empty( $data_id ) && empty( $data_class ) ) { |
|
| 542 | + if (empty($data_id) && empty($data_class)) { |
|
| 543 | 543 | $stop['options']['modal'] = true; |
| 544 | 544 | $stop['options']['expose'] = true; |
| 545 | 545 | } |
| 546 | 546 | |
| 547 | - $custom_class = !empty( $stop['custom_class'] ) ? ' class="' . $stop['custom_class'] . '"' : ''; |
|
| 548 | - $button_text = !empty( $stop['button_text'] ) ? ' data-button="' . $stop['button_text'] . '"' : ''; |
|
| 547 | + $custom_class = ! empty($stop['custom_class']) ? ' class="'.$stop['custom_class'].'"' : ''; |
|
| 548 | + $button_text = ! empty($stop['button_text']) ? ' data-button="'.$stop['button_text'].'"' : ''; |
|
| 549 | 549 | $inner_content = isset($stop['content']) ? $stop['content'] : ''; |
| 550 | 550 | |
| 551 | 551 | //options |
| 552 | - if ( isset( $stop['options'] ) && is_array( $stop['options'] ) ) { |
|
| 552 | + if (isset($stop['options']) && is_array($stop['options'])) { |
|
| 553 | 553 | $options = ' data-options="'; |
| 554 | - foreach ( $stop['options'] as $option => $value ) { |
|
| 555 | - $options .= $option . ':' . $value . ';'; |
|
| 554 | + foreach ($stop['options'] as $option => $value) { |
|
| 555 | + $options .= $option.':'.$value.';'; |
|
| 556 | 556 | } |
| 557 | 557 | $options .= '"'; |
| 558 | 558 | } else { |
@@ -560,7 +560,7 @@ discard block |
||
| 560 | 560 | } |
| 561 | 561 | |
| 562 | 562 | //let's put all together |
| 563 | - $content .= '<li' . $data_id . $data_class . $custom_class . $button_text . $options . '>' . $inner_content . '</li>'; |
|
| 563 | + $content .= '<li'.$data_id.$data_class.$custom_class.$button_text.$options.'>'.$inner_content.'</li>'; |
|
| 564 | 564 | } |
| 565 | 565 | |
| 566 | 566 | $content .= '</ol>'; |
@@ -581,31 +581,31 @@ discard block |
||
| 581 | 581 | * @throws EE_Error |
| 582 | 582 | * @return string html structure for status. |
| 583 | 583 | */ |
| 584 | - public static function status_legend( $status_array, $active_status = '' ) { |
|
| 585 | - if ( !is_array( $status_array ) ) |
|
| 586 | - throw new EE_Error( __('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso') ); |
|
| 584 | + public static function status_legend($status_array, $active_status = '') { |
|
| 585 | + if ( ! is_array($status_array)) |
|
| 586 | + throw new EE_Error(__('The EEH_Template::status_legend helper required the incoming status_array argument to be an array!', 'event_espresso')); |
|
| 587 | 587 | |
| 588 | 588 | $setup_array = array(); |
| 589 | - foreach ( $status_array as $item => $status ) { |
|
| 589 | + foreach ($status_array as $item => $status) { |
|
| 590 | 590 | $setup_array[$item] = array( |
| 591 | - 'class' => 'ee-status-legend ee-status-legend-' . $status, |
|
| 592 | - 'desc' => EEH_Template::pretty_status( $status, FALSE, 'sentence' ), |
|
| 591 | + 'class' => 'ee-status-legend ee-status-legend-'.$status, |
|
| 592 | + 'desc' => EEH_Template::pretty_status($status, FALSE, 'sentence'), |
|
| 593 | 593 | 'status' => $status |
| 594 | 594 | ); |
| 595 | 595 | } |
| 596 | 596 | |
| 597 | - $content = '<div class="ee-list-table-legend-container">' . "\n"; |
|
| 598 | - $content .= '<h3>' . __('Status Legend', 'event_espresso') . '</h3>' . "\n"; |
|
| 599 | - $content .= '<dl class="ee-list-table-legend">' . "\n\t"; |
|
| 600 | - foreach ( $setup_array as $item => $details ) { |
|
| 597 | + $content = '<div class="ee-list-table-legend-container">'."\n"; |
|
| 598 | + $content .= '<h3>'.__('Status Legend', 'event_espresso').'</h3>'."\n"; |
|
| 599 | + $content .= '<dl class="ee-list-table-legend">'."\n\t"; |
|
| 600 | + foreach ($setup_array as $item => $details) { |
|
| 601 | 601 | $active_class = $active_status == $details['status'] ? ' class="ee-is-active-status"' : ''; |
| 602 | - $content .= '<dt id="ee-legend-item-tooltip-' . $item . '"' . $active_class . '>' . "\n\t\t"; |
|
| 603 | - $content .= '<span class="' . $details['class'] . '"></span>' . "\n\t\t"; |
|
| 604 | - $content .= '<span class="ee-legend-description">' . $details['desc'] . '</span>' . "\n\t"; |
|
| 605 | - $content .= '</dt>' . "\n"; |
|
| 602 | + $content .= '<dt id="ee-legend-item-tooltip-'.$item.'"'.$active_class.'>'."\n\t\t"; |
|
| 603 | + $content .= '<span class="'.$details['class'].'"></span>'."\n\t\t"; |
|
| 604 | + $content .= '<span class="ee-legend-description">'.$details['desc'].'</span>'."\n\t"; |
|
| 605 | + $content .= '</dt>'."\n"; |
|
| 606 | 606 | } |
| 607 | - $content .= '</dl>' . "\n"; |
|
| 608 | - $content .= '</div>' . "\n"; |
|
| 607 | + $content .= '</dl>'."\n"; |
|
| 608 | + $content .= '</div>'."\n"; |
|
| 609 | 609 | return $content; |
| 610 | 610 | } |
| 611 | 611 | |
@@ -618,8 +618,8 @@ discard block |
||
| 618 | 618 | * @return string |
| 619 | 619 | */ |
| 620 | 620 | public static function layout_array_as_table($data) { |
| 621 | - if (is_object($data) || $data instanceof __PHP_Incomplete_Class ) { |
|
| 622 | - $data = (array)$data; |
|
| 621 | + if (is_object($data) || $data instanceof __PHP_Incomplete_Class) { |
|
| 622 | + $data = (array) $data; |
|
| 623 | 623 | } |
| 624 | 624 | EE_Registry::instance()->load_helper('Array'); |
| 625 | 625 | ob_start(); |
@@ -633,10 +633,10 @@ discard block |
||
| 633 | 633 | ?> |
| 634 | 634 | <tr> |
| 635 | 635 | <td> |
| 636 | - <?php echo $data_key;?> |
|
| 636 | + <?php echo $data_key; ?> |
|
| 637 | 637 | </td> |
| 638 | 638 | <td> |
| 639 | - <?php echo self::layout_array_as_table($data_values);?> |
|
| 639 | + <?php echo self::layout_array_as_table($data_values); ?> |
|
| 640 | 640 | </td> |
| 641 | 641 | </tr> |
| 642 | 642 | <?php |
@@ -650,7 +650,7 @@ discard block |
||
| 650 | 650 | <ul> |
| 651 | 651 | <?php |
| 652 | 652 | foreach ($data as $datum) { |
| 653 | - echo "<li>"; echo self::layout_array_as_table($datum);echo "</li>"; |
|
| 653 | + echo "<li>"; echo self::layout_array_as_table($datum); echo "</li>"; |
|
| 654 | 654 | }?> |
| 655 | 655 | </ul> |
| 656 | 656 | <?php |
@@ -680,8 +680,8 @@ discard block |
||
| 680 | 680 | * |
| 681 | 681 | * @return string |
| 682 | 682 | */ |
| 683 | - public static function paging_html( $total_items, $current, $per_page, $url, $show_num_field = TRUE, $paged_arg_name = 'paged', $items_label = array() ) { |
|
| 684 | - echo self::get_paging_html( $total_items, $current, $per_page, $url, $show_num_field, $paged_arg_name, $items_label ); |
|
| 683 | + public static function paging_html($total_items, $current, $per_page, $url, $show_num_field = TRUE, $paged_arg_name = 'paged', $items_label = array()) { |
|
| 684 | + echo self::get_paging_html($total_items, $current, $per_page, $url, $show_num_field, $paged_arg_name, $items_label); |
|
| 685 | 685 | } |
| 686 | 686 | |
| 687 | 687 | |
@@ -705,13 +705,13 @@ discard block |
||
| 705 | 705 | * ) |
| 706 | 706 | * @return string |
| 707 | 707 | */ |
| 708 | - public static function get_paging_html( $total_items, $current, $per_page, $url, $show_num_field = TRUE, $paged_arg_name = 'paged', $items_label = array() ) { |
|
| 708 | + public static function get_paging_html($total_items, $current, $per_page, $url, $show_num_field = TRUE, $paged_arg_name = 'paged', $items_label = array()) { |
|
| 709 | 709 | $page_links = array(); |
| 710 | 710 | $disable_first = $disable_last = ''; |
| 711 | 711 | $total_items = (int) $total_items; |
| 712 | 712 | $per_page = (int) $per_page; |
| 713 | 713 | $current = (int) $current; |
| 714 | - $paged_arg_name = empty( $paged_arg_name ) ? 'paged' : sanitize_key( $paged_arg_name ); |
|
| 714 | + $paged_arg_name = empty($paged_arg_name) ? 'paged' : sanitize_key($paged_arg_name); |
|
| 715 | 715 | |
| 716 | 716 | //filter items_label |
| 717 | 717 | $items_label = apply_filters( |
@@ -719,68 +719,68 @@ discard block |
||
| 719 | 719 | $items_label |
| 720 | 720 | ); |
| 721 | 721 | |
| 722 | - if ( empty( $items_label ) |
|
| 723 | - || ! is_array( $items_label ) |
|
| 724 | - || ! isset( $items_label['single'] ) |
|
| 725 | - || ! isset( $items_label['plural'] ) ) { |
|
| 722 | + if (empty($items_label) |
|
| 723 | + || ! is_array($items_label) |
|
| 724 | + || ! isset($items_label['single']) |
|
| 725 | + || ! isset($items_label['plural'])) { |
|
| 726 | 726 | $items_label = array( |
| 727 | - 'single' => __( '1 item', 'event_espresso' ), |
|
| 728 | - 'plural' => __( '%s items', 'event_espresso' ) |
|
| 727 | + 'single' => __('1 item', 'event_espresso'), |
|
| 728 | + 'plural' => __('%s items', 'event_espresso') |
|
| 729 | 729 | ); |
| 730 | 730 | } else { |
| 731 | 731 | $items_label = array( |
| 732 | - 'single' => '1 ' . esc_html( $items_label['single'] ), |
|
| 733 | - 'plural' => '%s ' . esc_html( $items_label['plural'] ) |
|
| 732 | + 'single' => '1 '.esc_html($items_label['single']), |
|
| 733 | + 'plural' => '%s '.esc_html($items_label['plural']) |
|
| 734 | 734 | ); |
| 735 | 735 | } |
| 736 | 736 | |
| 737 | - $total_pages = ceil( $total_items / $per_page ); |
|
| 737 | + $total_pages = ceil($total_items / $per_page); |
|
| 738 | 738 | |
| 739 | - if ( $total_pages <= 1 ) |
|
| 739 | + if ($total_pages <= 1) |
|
| 740 | 740 | return ''; |
| 741 | 741 | |
| 742 | - $item_label = $total_items > 1 ? sprintf( $items_label['plural'], $total_items ) : $items_label['single']; |
|
| 742 | + $item_label = $total_items > 1 ? sprintf($items_label['plural'], $total_items) : $items_label['single']; |
|
| 743 | 743 | |
| 744 | - $output = '<span class="displaying-num">' . $item_label . '</span>'; |
|
| 744 | + $output = '<span class="displaying-num">'.$item_label.'</span>'; |
|
| 745 | 745 | |
| 746 | - if ( $current === 1 ) { |
|
| 746 | + if ($current === 1) { |
|
| 747 | 747 | $disable_first = ' disabled'; |
| 748 | 748 | } |
| 749 | - if ( $current == $total_pages ) { |
|
| 749 | + if ($current == $total_pages) { |
|
| 750 | 750 | $disable_last = ' disabled'; |
| 751 | 751 | } |
| 752 | 752 | |
| 753 | - $page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>", |
|
| 754 | - 'first-page' . $disable_first, |
|
| 755 | - esc_attr__( 'Go to the first page' ), |
|
| 756 | - esc_url( remove_query_arg( $paged_arg_name, $url ) ), |
|
| 753 | + $page_links[] = sprintf("<a class='%s' title='%s' href='%s'>%s</a>", |
|
| 754 | + 'first-page'.$disable_first, |
|
| 755 | + esc_attr__('Go to the first page'), |
|
| 756 | + esc_url(remove_query_arg($paged_arg_name, $url)), |
|
| 757 | 757 | '«' |
| 758 | 758 | ); |
| 759 | 759 | |
| 760 | 760 | $page_links[] = sprintf( |
| 761 | 761 | '<a class="%s" title="%s" href="%s">%s</a>', |
| 762 | - 'prev-page' . $disable_first, |
|
| 763 | - esc_attr__( 'Go to the previous page' ), |
|
| 764 | - esc_url( add_query_arg( $paged_arg_name, max( 1, $current-1 ), $url ) ), |
|
| 762 | + 'prev-page'.$disable_first, |
|
| 763 | + esc_attr__('Go to the previous page'), |
|
| 764 | + esc_url(add_query_arg($paged_arg_name, max(1, $current - 1), $url)), |
|
| 765 | 765 | '‹' |
| 766 | 766 | ); |
| 767 | 767 | |
| 768 | - if ( ! $show_num_field ) { |
|
| 768 | + if ( ! $show_num_field) { |
|
| 769 | 769 | $html_current_page = $current; |
| 770 | 770 | } else { |
| 771 | - $html_current_page = sprintf( "<input class='current-page' title='%s' type='text' name=$paged_arg_name value='%s' size='%d' />", |
|
| 772 | - esc_attr__( 'Current page' ), |
|
| 771 | + $html_current_page = sprintf("<input class='current-page' title='%s' type='text' name=$paged_arg_name value='%s' size='%d' />", |
|
| 772 | + esc_attr__('Current page'), |
|
| 773 | 773 | $current, |
| 774 | - strlen( $total_pages ) |
|
| 774 | + strlen($total_pages) |
|
| 775 | 775 | ); |
| 776 | 776 | } |
| 777 | 777 | |
| 778 | 778 | $html_total_pages = sprintf( |
| 779 | 779 | '<span class="total-pages">%s</span>', |
| 780 | - number_format_i18n( $total_pages ) |
|
| 780 | + number_format_i18n($total_pages) |
|
| 781 | 781 | ); |
| 782 | 782 | $page_links[] = sprintf( |
| 783 | - _x( '%3$s%1$s of %2$s%4$s', 'paging' ), |
|
| 783 | + _x('%3$s%1$s of %2$s%4$s', 'paging'), |
|
| 784 | 784 | $html_current_page, |
| 785 | 785 | $html_total_pages, |
| 786 | 786 | '<span class="paging-input">', |
@@ -789,29 +789,29 @@ discard block |
||
| 789 | 789 | |
| 790 | 790 | $page_links[] = sprintf( |
| 791 | 791 | '<a class="%s" title="%s" href="%s">%s</a>', |
| 792 | - 'next-page' . $disable_last, |
|
| 793 | - esc_attr__( 'Go to the next page' ), |
|
| 794 | - esc_url( add_query_arg( $paged_arg_name, min( $total_pages, $current+1 ), $url ) ), |
|
| 792 | + 'next-page'.$disable_last, |
|
| 793 | + esc_attr__('Go to the next page'), |
|
| 794 | + esc_url(add_query_arg($paged_arg_name, min($total_pages, $current + 1), $url)), |
|
| 795 | 795 | '›' |
| 796 | 796 | ); |
| 797 | 797 | |
| 798 | 798 | $page_links[] = sprintf( |
| 799 | 799 | '<a class="%s" title="%s" href="%s">%s</a>', |
| 800 | - 'last-page' . $disable_last, |
|
| 801 | - esc_attr__( 'Go to the last page' ), |
|
| 802 | - esc_url( add_query_arg( $paged_arg_name, $total_pages, $url ) ), |
|
| 800 | + 'last-page'.$disable_last, |
|
| 801 | + esc_attr__('Go to the last page'), |
|
| 802 | + esc_url(add_query_arg($paged_arg_name, $total_pages, $url)), |
|
| 803 | 803 | '»' |
| 804 | 804 | ); |
| 805 | 805 | |
| 806 | - $output .= "\n" . '<span class="pagination-links">' . join( "\n", $page_links ) . '</span>'; |
|
| 806 | + $output .= "\n".'<span class="pagination-links">'.join("\n", $page_links).'</span>'; |
|
| 807 | 807 | // set page class |
| 808 | - if ( $total_pages ) { |
|
| 808 | + if ($total_pages) { |
|
| 809 | 809 | $page_class = $total_pages < 2 ? ' one-page' : ''; |
| 810 | 810 | } else { |
| 811 | 811 | $page_class = ' no-pages'; |
| 812 | 812 | } |
| 813 | 813 | |
| 814 | - return '<div class="tablenav"><div class="tablenav-pages' . $page_class . '">' . $output . '</div></div>'; |
|
| 814 | + return '<div class="tablenav"><div class="tablenav-pages'.$page_class.'">'.$output.'</div></div>'; |
|
| 815 | 815 | } |
| 816 | 816 | |
| 817 | 817 | |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <div class="wrap espresso-admin"> |
| 2 | 2 | |
| 3 | - <h1><?php esc_attr_e( 'Event Espresso', 'event_espresso' ); ?> - <?php echo $admin_page_title; ?></h1> |
|
| 3 | + <h1><?php esc_attr_e('Event Espresso', 'event_espresso'); ?> - <?php echo $admin_page_title; ?></h1> |
|
| 4 | 4 | |
| 5 | 5 | <div id="ajax-notices-container"></div> |
| 6 | 6 | |
| 7 | 7 | <?php echo $nav_tabs; ?> |
| 8 | 8 | |
| 9 | 9 | <?php |
| 10 | - do_action( 'AHEE__admin_wrapper__template__before_admin_page_content' ); |
|
| 10 | + do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
| 11 | 11 | echo $before_admin_page_content; |
| 12 | 12 | echo $admin_page_content; |
| 13 | 13 | echo $after_admin_page_content; |
| 14 | - do_action( 'AHEE__admin_wrapper__template__after_admin_page_content' ); |
|
| 14 | + do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
| 15 | 15 | ?> |
| 16 | 16 | |
| 17 | 17 | </div> |
@@ -1,13 +1,13 @@ |
||
| 1 | 1 | <div class="wrap espresso-admin"> |
| 2 | - <h1><?php esc_attr_e( 'Event Espresso', 'event_espresso' ); ?> - <?php echo $admin_page_title; ?></h1> |
|
| 2 | + <h1><?php esc_attr_e('Event Espresso', 'event_espresso'); ?> - <?php echo $admin_page_title; ?></h1> |
|
| 3 | 3 | |
| 4 | - <div class="ee-notices"><?php echo isset( $ajax_notices ) ? $ajax_notices : ''; ?></div> |
|
| 4 | + <div class="ee-notices"><?php echo isset($ajax_notices) ? $ajax_notices : ''; ?></div> |
|
| 5 | 5 | <?php |
| 6 | - do_action( 'AHEE__admin_wrapper__template__before_admin_page_content' ); |
|
| 6 | + do_action('AHEE__admin_wrapper__template__before_admin_page_content'); |
|
| 7 | 7 | echo $before_admin_page_content; |
| 8 | 8 | echo $admin_page_content; |
| 9 | 9 | echo $after_admin_page_content; |
| 10 | - do_action( 'AHEE__admin_wrapper__template__after_admin_page_content' ); |
|
| 10 | + do_action('AHEE__admin_wrapper__template__after_admin_page_content'); |
|
| 11 | 11 | ?> |
| 12 | 12 | </div> |
| 13 | 13 | <!-- espresso-admin --> |
| 14 | 14 | \ No newline at end of file |