Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like EE_Registration often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use EE_Registration, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 16 | class EE_Registration extends EE_Soft_Delete_Base_Class implements EEI_Registration, EEI_Admin_Links |
||
| 17 | { |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * Used to reference when a registration has never been checked in. |
||
| 22 | * |
||
| 23 | * @deprecated use \EE_Checkin::status_checked_never instead |
||
| 24 | * @type int |
||
| 25 | */ |
||
| 26 | const checkin_status_never = 2; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Used to reference when a registration has been checked in. |
||
| 30 | * |
||
| 31 | * @deprecated use \EE_Checkin::status_checked_in instead |
||
| 32 | * @type int |
||
| 33 | */ |
||
| 34 | const checkin_status_in = 1; |
||
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * Used to reference when a registration has been checked out. |
||
| 39 | * |
||
| 40 | * @deprecated use \EE_Checkin::status_checked_out instead |
||
| 41 | * @type int |
||
| 42 | */ |
||
| 43 | const checkin_status_out = 0; |
||
| 44 | |||
| 45 | |||
| 46 | /** |
||
| 47 | * extra meta key for tracking reg status os trashed registrations |
||
| 48 | * |
||
| 49 | * @type string |
||
| 50 | */ |
||
| 51 | const PRE_TRASH_REG_STATUS_KEY = 'pre_trash_registration_status'; |
||
| 52 | |||
| 53 | |||
| 54 | /** |
||
| 55 | * extra meta key for tracking if registration has reserved ticket |
||
| 56 | * |
||
| 57 | * @type string |
||
| 58 | */ |
||
| 59 | const HAS_RESERVED_TICKET_KEY = 'has_reserved_ticket'; |
||
| 60 | |||
| 61 | |||
| 62 | /** |
||
| 63 | * @param array $props_n_values incoming values |
||
| 64 | * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
||
| 65 | * used.) |
||
| 66 | * @param array $date_formats incoming date_formats in an array where the first value is the |
||
| 67 | * date_format and the second value is the time format |
||
| 68 | * @return EE_Registration |
||
| 69 | * @throws EE_Error |
||
| 70 | */ |
||
| 71 | public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
||
| 76 | |||
| 77 | |||
| 78 | /** |
||
| 79 | * @param array $props_n_values incoming values from the database |
||
| 80 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
||
| 81 | * the website will be used. |
||
| 82 | * @return EE_Registration |
||
| 83 | */ |
||
| 84 | public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
||
| 88 | |||
| 89 | |||
| 90 | /** |
||
| 91 | * Set Event ID |
||
| 92 | * |
||
| 93 | * @param int $EVT_ID Event ID |
||
| 94 | * @throws EE_Error |
||
| 95 | * @throws RuntimeException |
||
| 96 | */ |
||
| 97 | public function set_event($EVT_ID = 0) |
||
| 101 | |||
| 102 | |||
| 103 | /** |
||
| 104 | * Overrides parent set() method so that all calls to set( 'REG_code', $REG_code ) OR set( 'STS_ID', $STS_ID ) can |
||
| 105 | * be routed to internal methods |
||
| 106 | * |
||
| 107 | * @param string $field_name |
||
| 108 | * @param mixed $field_value |
||
| 109 | * @param bool $use_default |
||
| 110 | * @throws EE_Error |
||
| 111 | * @throws EntityNotFoundException |
||
| 112 | * @throws InvalidArgumentException |
||
| 113 | * @throws InvalidDataTypeException |
||
| 114 | * @throws InvalidInterfaceException |
||
| 115 | * @throws ReflectionException |
||
| 116 | * @throws RuntimeException |
||
| 117 | */ |
||
| 118 | public function set($field_name, $field_value, $use_default = false) |
||
| 133 | |||
| 134 | |||
| 135 | /** |
||
| 136 | * Set Status ID |
||
| 137 | * updates the registration status and ALSO... |
||
| 138 | * calls reserve_registration_space() if the reg status changes TO approved from any other reg status |
||
| 139 | * calls release_registration_space() if the reg status changes FROM approved to any other reg status |
||
| 140 | * |
||
| 141 | * @param string $new_STS_ID |
||
| 142 | * @param boolean $use_default |
||
| 143 | * @param ContextInterface|null $context |
||
| 144 | * @return bool |
||
| 145 | * @throws DomainException |
||
| 146 | * @throws EE_Error |
||
| 147 | * @throws EntityNotFoundException |
||
| 148 | * @throws InvalidArgumentException |
||
| 149 | * @throws InvalidDataTypeException |
||
| 150 | * @throws InvalidInterfaceException |
||
| 151 | * @throws ReflectionException |
||
| 152 | * @throws RuntimeException |
||
| 153 | * @throws UnexpectedEntityException |
||
| 154 | */ |
||
| 155 | public function set_status($new_STS_ID = null, $use_default = false, ContextInterface $context = null) |
||
| 199 | |||
| 200 | |||
| 201 | /** |
||
| 202 | * update REGs and TXN when cancelled or declined registrations involved |
||
| 203 | * |
||
| 204 | * @param string $new_STS_ID |
||
| 205 | * @param string $old_STS_ID |
||
| 206 | * @param ContextInterface|null $context |
||
| 207 | * @throws EE_Error |
||
| 208 | * @throws InvalidArgumentException |
||
| 209 | * @throws InvalidDataTypeException |
||
| 210 | * @throws InvalidInterfaceException |
||
| 211 | * @throws ReflectionException |
||
| 212 | * @throws RuntimeException |
||
| 213 | */ |
||
| 214 | private function updateIfCanceledOrReinstated($new_STS_ID, $old_STS_ID, ContextInterface $context = null) |
||
| 232 | |||
| 233 | |||
| 234 | /** |
||
| 235 | * update REGs and TXN when cancelled or declined registrations involved |
||
| 236 | * |
||
| 237 | * @param array $closed_reg_statuses |
||
| 238 | * @param string $new_STS_ID |
||
| 239 | * @param string $old_STS_ID |
||
| 240 | * @param ContextInterface|null $context |
||
| 241 | * @throws EE_Error |
||
| 242 | * @throws InvalidArgumentException |
||
| 243 | * @throws InvalidDataTypeException |
||
| 244 | * @throws InvalidInterfaceException |
||
| 245 | * @throws ReflectionException |
||
| 246 | * @throws RuntimeException |
||
| 247 | */ |
||
| 248 | View Code Duplication | private function updateIfCanceled( |
|
| 282 | |||
| 283 | |||
| 284 | /** |
||
| 285 | * update REGs and TXN when cancelled or declined registrations involved |
||
| 286 | * |
||
| 287 | * @param array $closed_reg_statuses |
||
| 288 | * @param string $new_STS_ID |
||
| 289 | * @param string $old_STS_ID |
||
| 290 | * @param ContextInterface|null $context |
||
| 291 | * @throws EE_Error |
||
| 292 | * @throws InvalidArgumentException |
||
| 293 | * @throws InvalidDataTypeException |
||
| 294 | * @throws InvalidInterfaceException |
||
| 295 | * @throws ReflectionException |
||
| 296 | */ |
||
| 297 | View Code Duplication | private function updateIfReinstated( |
|
| 330 | |||
| 331 | |||
| 332 | /** |
||
| 333 | * @param ContextInterface|null $context |
||
| 334 | * @return bool |
||
| 335 | */ |
||
| 336 | private function statusChangeUpdatesTransaction(ContextInterface $context = null) |
||
| 349 | |||
| 350 | |||
| 351 | /** |
||
| 352 | * @throws EE_Error |
||
| 353 | * @throws EntityNotFoundException |
||
| 354 | * @throws InvalidArgumentException |
||
| 355 | * @throws InvalidDataTypeException |
||
| 356 | * @throws InvalidInterfaceException |
||
| 357 | * @throws ReflectionException |
||
| 358 | * @throws RuntimeException |
||
| 359 | */ |
||
| 360 | private function updateTransactionAfterStatusChange() |
||
| 367 | |||
| 368 | |||
| 369 | /** |
||
| 370 | * get Status ID |
||
| 371 | */ |
||
| 372 | public function status_ID() |
||
| 376 | |||
| 377 | |||
| 378 | /** |
||
| 379 | * Gets the ticket this registration is for |
||
| 380 | * |
||
| 381 | * @param boolean $include_archived whether to include archived tickets or not. |
||
| 382 | * |
||
| 383 | * @return EE_Ticket|EE_Base_Class |
||
| 384 | * @throws EE_Error |
||
| 385 | */ |
||
| 386 | public function ticket($include_archived = true) |
||
| 394 | |||
| 395 | |||
| 396 | /** |
||
| 397 | * Gets the event this registration is for |
||
| 398 | * |
||
| 399 | * @return EE_Event |
||
| 400 | * @throws EE_Error |
||
| 401 | * @throws EntityNotFoundException |
||
| 402 | */ |
||
| 403 | public function event() |
||
| 411 | |||
| 412 | |||
| 413 | /** |
||
| 414 | * Gets the "author" of the registration. Note that for the purposes of registrations, the author will correspond |
||
| 415 | * with the author of the event this registration is for. |
||
| 416 | * |
||
| 417 | * @since 4.5.0 |
||
| 418 | * @return int |
||
| 419 | * @throws EE_Error |
||
| 420 | * @throws EntityNotFoundException |
||
| 421 | */ |
||
| 422 | public function wp_user() |
||
| 430 | |||
| 431 | |||
| 432 | /** |
||
| 433 | * increments this registration's related ticket sold and corresponding datetime sold values |
||
| 434 | * |
||
| 435 | * @return void |
||
| 436 | * @throws DomainException |
||
| 437 | * @throws EE_Error |
||
| 438 | * @throws EntityNotFoundException |
||
| 439 | * @throws InvalidArgumentException |
||
| 440 | * @throws InvalidDataTypeException |
||
| 441 | * @throws InvalidInterfaceException |
||
| 442 | * @throws ReflectionException |
||
| 443 | * @throws UnexpectedEntityException |
||
| 444 | */ |
||
| 445 | private function reserveRegistrationSpace() |
||
| 455 | |||
| 456 | |||
| 457 | /** |
||
| 458 | * decrements (subtracts) this registration's related ticket sold and corresponding datetime sold values |
||
| 459 | * |
||
| 460 | * @return void |
||
| 461 | * @throws DomainException |
||
| 462 | * @throws EE_Error |
||
| 463 | * @throws EntityNotFoundException |
||
| 464 | * @throws InvalidArgumentException |
||
| 465 | * @throws InvalidDataTypeException |
||
| 466 | * @throws InvalidInterfaceException |
||
| 467 | * @throws ReflectionException |
||
| 468 | * @throws UnexpectedEntityException |
||
| 469 | */ |
||
| 470 | private function releaseRegistrationSpace() |
||
| 477 | |||
| 478 | |||
| 479 | /** |
||
| 480 | * tracks this registration's ticket reservation in extra meta |
||
| 481 | * and can increment related ticket reserved and corresponding datetime reserved values |
||
| 482 | * |
||
| 483 | * @param bool $update_ticket if true, will increment ticket and datetime reserved count |
||
| 484 | * @return void |
||
| 485 | * @throws EE_Error |
||
| 486 | * @throws InvalidArgumentException |
||
| 487 | * @throws InvalidDataTypeException |
||
| 488 | * @throws InvalidInterfaceException |
||
| 489 | * @throws ReflectionException |
||
| 490 | */ |
||
| 491 | View Code Duplication | public function reserve_ticket($update_ticket = false, $source = 'unknown') |
|
| 508 | |||
| 509 | |||
| 510 | /** |
||
| 511 | * stops tracking this registration's ticket reservation in extra meta |
||
| 512 | * decrements (subtracts) related ticket reserved and corresponding datetime reserved values |
||
| 513 | * |
||
| 514 | * @param bool $update_ticket if true, will decrement ticket and datetime reserved count |
||
| 515 | * @return void |
||
| 516 | * @throws EE_Error |
||
| 517 | * @throws InvalidArgumentException |
||
| 518 | * @throws InvalidDataTypeException |
||
| 519 | * @throws InvalidInterfaceException |
||
| 520 | * @throws ReflectionException |
||
| 521 | */ |
||
| 522 | View Code Duplication | public function release_reserved_ticket($update_ticket = false, $source = 'unknown') |
|
| 538 | |||
| 539 | |||
| 540 | /** |
||
| 541 | * Set Attendee ID |
||
| 542 | * |
||
| 543 | * @param int $ATT_ID Attendee ID |
||
| 544 | * @throws EE_Error |
||
| 545 | * @throws RuntimeException |
||
| 546 | */ |
||
| 547 | public function set_attendee_id($ATT_ID = 0) |
||
| 551 | |||
| 552 | |||
| 553 | /** |
||
| 554 | * Set Transaction ID |
||
| 555 | * |
||
| 556 | * @param int $TXN_ID Transaction ID |
||
| 557 | * @throws EE_Error |
||
| 558 | * @throws RuntimeException |
||
| 559 | */ |
||
| 560 | public function set_transaction_id($TXN_ID = 0) |
||
| 564 | |||
| 565 | |||
| 566 | /** |
||
| 567 | * Set Session |
||
| 568 | * |
||
| 569 | * @param string $REG_session PHP Session ID |
||
| 570 | * @throws EE_Error |
||
| 571 | * @throws RuntimeException |
||
| 572 | */ |
||
| 573 | public function set_session($REG_session = '') |
||
| 577 | |||
| 578 | |||
| 579 | /** |
||
| 580 | * Set Registration URL Link |
||
| 581 | * |
||
| 582 | * @param string $REG_url_link Registration URL Link |
||
| 583 | * @throws EE_Error |
||
| 584 | * @throws RuntimeException |
||
| 585 | */ |
||
| 586 | public function set_reg_url_link($REG_url_link = '') |
||
| 590 | |||
| 591 | |||
| 592 | /** |
||
| 593 | * Set Attendee Counter |
||
| 594 | * |
||
| 595 | * @param int $REG_count Primary Attendee |
||
| 596 | * @throws EE_Error |
||
| 597 | * @throws RuntimeException |
||
| 598 | */ |
||
| 599 | public function set_count($REG_count = 1) |
||
| 603 | |||
| 604 | |||
| 605 | /** |
||
| 606 | * Set Group Size |
||
| 607 | * |
||
| 608 | * @param boolean $REG_group_size Group Registration |
||
| 609 | * @throws EE_Error |
||
| 610 | * @throws RuntimeException |
||
| 611 | */ |
||
| 612 | public function set_group_size($REG_group_size = false) |
||
| 616 | |||
| 617 | |||
| 618 | /** |
||
| 619 | * is_not_approved - convenience method that returns TRUE if REG status ID == |
||
| 620 | * EEM_Registration::status_id_not_approved |
||
| 621 | * |
||
| 622 | * @return boolean |
||
| 623 | */ |
||
| 624 | public function is_not_approved() |
||
| 628 | |||
| 629 | |||
| 630 | /** |
||
| 631 | * is_pending_payment - convenience method that returns TRUE if REG status ID == |
||
| 632 | * EEM_Registration::status_id_pending_payment |
||
| 633 | * |
||
| 634 | * @return boolean |
||
| 635 | */ |
||
| 636 | public function is_pending_payment() |
||
| 640 | |||
| 641 | |||
| 642 | /** |
||
| 643 | * is_approved - convenience method that returns TRUE if REG status ID == EEM_Registration::status_id_approved |
||
| 644 | * |
||
| 645 | * @return boolean |
||
| 646 | */ |
||
| 647 | public function is_approved() |
||
| 651 | |||
| 652 | |||
| 653 | /** |
||
| 654 | * is_cancelled - convenience method that returns TRUE if REG status ID == EEM_Registration::status_id_cancelled |
||
| 655 | * |
||
| 656 | * @return boolean |
||
| 657 | */ |
||
| 658 | public function is_cancelled() |
||
| 662 | |||
| 663 | |||
| 664 | /** |
||
| 665 | * is_declined - convenience method that returns TRUE if REG status ID == EEM_Registration::status_id_declined |
||
| 666 | * |
||
| 667 | * @return boolean |
||
| 668 | */ |
||
| 669 | public function is_declined() |
||
| 673 | |||
| 674 | |||
| 675 | /** |
||
| 676 | * is_incomplete - convenience method that returns TRUE if REG status ID == |
||
| 677 | * EEM_Registration::status_id_incomplete |
||
| 678 | * |
||
| 679 | * @return boolean |
||
| 680 | */ |
||
| 681 | public function is_incomplete() |
||
| 685 | |||
| 686 | |||
| 687 | /** |
||
| 688 | * Set Registration Date |
||
| 689 | * |
||
| 690 | * @param mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of |
||
| 691 | * Date |
||
| 692 | * @throws EE_Error |
||
| 693 | * @throws RuntimeException |
||
| 694 | */ |
||
| 695 | public function set_reg_date($REG_date = false) |
||
| 699 | |||
| 700 | |||
| 701 | /** |
||
| 702 | * Set final price owing for this registration after all ticket/price modifications |
||
| 703 | * |
||
| 704 | * @access public |
||
| 705 | * @param float $REG_final_price |
||
| 706 | * @throws EE_Error |
||
| 707 | * @throws RuntimeException |
||
| 708 | */ |
||
| 709 | public function set_final_price($REG_final_price = 0.00) |
||
| 713 | |||
| 714 | |||
| 715 | /** |
||
| 716 | * Set amount paid towards this registration's final price |
||
| 717 | * |
||
| 718 | * @access public |
||
| 719 | * @param float $REG_paid |
||
| 720 | * @throws EE_Error |
||
| 721 | * @throws RuntimeException |
||
| 722 | */ |
||
| 723 | public function set_paid($REG_paid = 0.00) |
||
| 727 | |||
| 728 | |||
| 729 | /** |
||
| 730 | * Attendee Is Going |
||
| 731 | * |
||
| 732 | * @param boolean $REG_att_is_going Attendee Is Going |
||
| 733 | * @throws EE_Error |
||
| 734 | * @throws RuntimeException |
||
| 735 | */ |
||
| 736 | public function set_att_is_going($REG_att_is_going = false) |
||
| 740 | |||
| 741 | |||
| 742 | /** |
||
| 743 | * Gets the related attendee |
||
| 744 | * |
||
| 745 | * @return EE_Attendee |
||
| 746 | * @throws EE_Error |
||
| 747 | */ |
||
| 748 | public function attendee() |
||
| 752 | |||
| 753 | /** |
||
| 754 | * Gets the name of the attendee. |
||
| 755 | * @since $VID:$ |
||
| 756 | * @param bool $apply_html_entities set to true if you want to use HTML entities. |
||
| 757 | * @return string |
||
| 758 | * @throws EE_Error |
||
| 759 | * @throws InvalidArgumentException |
||
| 760 | * @throws InvalidDataTypeException |
||
| 761 | * @throws InvalidInterfaceException |
||
| 762 | * @throws ReflectionException |
||
| 763 | */ |
||
| 764 | public function attendeeName($apply_html_entities = false) |
||
| 774 | |||
| 775 | |||
| 776 | /** |
||
| 777 | * get Event ID |
||
| 778 | */ |
||
| 779 | public function event_ID() |
||
| 783 | |||
| 784 | |||
| 785 | /** |
||
| 786 | * get Event ID |
||
| 787 | */ |
||
| 788 | public function event_name() |
||
| 797 | |||
| 798 | |||
| 799 | /** |
||
| 800 | * Fetches the event this registration is for |
||
| 801 | * |
||
| 802 | * @return EE_Event |
||
| 803 | * @throws EE_Error |
||
| 804 | */ |
||
| 805 | public function event_obj() |
||
| 809 | |||
| 810 | |||
| 811 | /** |
||
| 812 | * get Attendee ID |
||
| 813 | */ |
||
| 814 | public function attendee_ID() |
||
| 818 | |||
| 819 | |||
| 820 | /** |
||
| 821 | * get PHP Session ID |
||
| 822 | */ |
||
| 823 | public function session_ID() |
||
| 827 | |||
| 828 | |||
| 829 | /** |
||
| 830 | * Gets the string which represents the URL trigger for the receipt template in the message template system. |
||
| 831 | * |
||
| 832 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
||
| 833 | * @return string |
||
| 834 | */ |
||
| 835 | public function receipt_url($messenger = 'html') |
||
| 858 | |||
| 859 | |||
| 860 | /** |
||
| 861 | * Gets the string which represents the URL trigger for the invoice template in the message template system. |
||
| 862 | * |
||
| 863 | * @param string $messenger 'pdf' or 'html'. Default 'html'. |
||
| 864 | * @return string |
||
| 865 | * @throws EE_Error |
||
| 866 | */ |
||
| 867 | public function invoice_url($messenger = 'html') |
||
| 898 | |||
| 899 | |||
| 900 | /** |
||
| 901 | * get Registration URL Link |
||
| 902 | * |
||
| 903 | * @access public |
||
| 904 | * @return string |
||
| 905 | * @throws EE_Error |
||
| 906 | */ |
||
| 907 | public function reg_url_link() |
||
| 911 | |||
| 912 | |||
| 913 | /** |
||
| 914 | * Echoes out invoice_url() |
||
| 915 | * |
||
| 916 | * @param string $type 'download','launch', or 'html' (default is 'launch') |
||
| 917 | * @return void |
||
| 918 | * @throws EE_Error |
||
| 919 | */ |
||
| 920 | public function e_invoice_url($type = 'launch') |
||
| 924 | |||
| 925 | |||
| 926 | /** |
||
| 927 | * Echoes out payment_overview_url |
||
| 928 | */ |
||
| 929 | public function e_payment_overview_url() |
||
| 933 | |||
| 934 | |||
| 935 | /** |
||
| 936 | * Gets the URL for the checkout payment options reg step |
||
| 937 | * with this registration's REG_url_link added as a query parameter |
||
| 938 | * |
||
| 939 | * @param bool $clear_session Set to true when you want to clear the session on revisiting the |
||
| 940 | * payment overview url. |
||
| 941 | * @return string |
||
| 942 | * @throws InvalidInterfaceException |
||
| 943 | * @throws InvalidDataTypeException |
||
| 944 | * @throws EE_Error |
||
| 945 | * @throws InvalidArgumentException |
||
| 946 | */ |
||
| 947 | View Code Duplication | public function payment_overview_url($clear_session = false) |
|
| 963 | |||
| 964 | |||
| 965 | /** |
||
| 966 | * Gets the URL for the checkout attendee information reg step |
||
| 967 | * with this registration's REG_url_link added as a query parameter |
||
| 968 | * |
||
| 969 | * @return string |
||
| 970 | * @throws InvalidInterfaceException |
||
| 971 | * @throws InvalidDataTypeException |
||
| 972 | * @throws EE_Error |
||
| 973 | * @throws InvalidArgumentException |
||
| 974 | */ |
||
| 975 | View Code Duplication | public function edit_attendee_information_url() |
|
| 990 | |||
| 991 | |||
| 992 | /** |
||
| 993 | * Simply generates and returns the appropriate admin_url link to edit this registration |
||
| 994 | * |
||
| 995 | * @return string |
||
| 996 | * @throws EE_Error |
||
| 997 | */ |
||
| 998 | public function get_admin_edit_url() |
||
| 1009 | |||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * is_primary_registrant? |
||
| 1013 | */ |
||
| 1014 | public function is_primary_registrant() |
||
| 1018 | |||
| 1019 | |||
| 1020 | /** |
||
| 1021 | * This returns the primary registration object for this registration group (which may be this object). |
||
| 1022 | * |
||
| 1023 | * @return EE_Registration |
||
| 1024 | * @throws EE_Error |
||
| 1025 | */ |
||
| 1026 | public function get_primary_registration() |
||
| 1044 | |||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * get Attendee Number |
||
| 1048 | * |
||
| 1049 | * @access public |
||
| 1050 | */ |
||
| 1051 | public function count() |
||
| 1055 | |||
| 1056 | |||
| 1057 | /** |
||
| 1058 | * get Group Size |
||
| 1059 | */ |
||
| 1060 | public function group_size() |
||
| 1064 | |||
| 1065 | |||
| 1066 | /** |
||
| 1067 | * get Registration Date |
||
| 1068 | */ |
||
| 1069 | public function date() |
||
| 1073 | |||
| 1074 | |||
| 1075 | /** |
||
| 1076 | * gets a pretty date |
||
| 1077 | * |
||
| 1078 | * @param string $date_format |
||
| 1079 | * @param string $time_format |
||
| 1080 | * @return string |
||
| 1081 | * @throws EE_Error |
||
| 1082 | */ |
||
| 1083 | public function pretty_date($date_format = null, $time_format = null) |
||
| 1087 | |||
| 1088 | |||
| 1089 | /** |
||
| 1090 | * final_price |
||
| 1091 | * the registration's share of the transaction total, so that the |
||
| 1092 | * sum of all the transaction's REG_final_prices equal the transaction's total |
||
| 1093 | * |
||
| 1094 | * @return float |
||
| 1095 | * @throws EE_Error |
||
| 1096 | */ |
||
| 1097 | public function final_price() |
||
| 1101 | |||
| 1102 | |||
| 1103 | /** |
||
| 1104 | * pretty_final_price |
||
| 1105 | * final price as formatted string, with correct decimal places and currency symbol |
||
| 1106 | * |
||
| 1107 | * @return string |
||
| 1108 | * @throws EE_Error |
||
| 1109 | */ |
||
| 1110 | public function pretty_final_price() |
||
| 1114 | |||
| 1115 | |||
| 1116 | /** |
||
| 1117 | * get paid (yeah) |
||
| 1118 | * |
||
| 1119 | * @return float |
||
| 1120 | * @throws EE_Error |
||
| 1121 | */ |
||
| 1122 | public function paid() |
||
| 1126 | |||
| 1127 | |||
| 1128 | /** |
||
| 1129 | * pretty_paid |
||
| 1130 | * |
||
| 1131 | * @return float |
||
| 1132 | * @throws EE_Error |
||
| 1133 | */ |
||
| 1134 | public function pretty_paid() |
||
| 1138 | |||
| 1139 | |||
| 1140 | /** |
||
| 1141 | * owes_monies_and_can_pay |
||
| 1142 | * whether or not this registration has monies owing and it's' status allows payment |
||
| 1143 | * |
||
| 1144 | * @param array $requires_payment |
||
| 1145 | * @return bool |
||
| 1146 | * @throws EE_Error |
||
| 1147 | */ |
||
| 1148 | public function owes_monies_and_can_pay($requires_payment = array()) |
||
| 1163 | |||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * Prints out the return value of $this->pretty_status() |
||
| 1167 | * |
||
| 1168 | * @param bool $show_icons |
||
| 1169 | * @return void |
||
| 1170 | * @throws EE_Error |
||
| 1171 | */ |
||
| 1172 | public function e_pretty_status($show_icons = false) |
||
| 1176 | |||
| 1177 | |||
| 1178 | /** |
||
| 1179 | * Returns a nice version of the status for displaying to customers |
||
| 1180 | * |
||
| 1181 | * @param bool $show_icons |
||
| 1182 | * @return string |
||
| 1183 | * @throws EE_Error |
||
| 1184 | */ |
||
| 1185 | public function pretty_status($show_icons = false) |
||
| 1232 | |||
| 1233 | |||
| 1234 | /** |
||
| 1235 | * get Attendee Is Going |
||
| 1236 | */ |
||
| 1237 | public function att_is_going() |
||
| 1241 | |||
| 1242 | |||
| 1243 | /** |
||
| 1244 | * Gets related answers |
||
| 1245 | * |
||
| 1246 | * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
||
| 1247 | * @return EE_Answer[] |
||
| 1248 | * @throws EE_Error |
||
| 1249 | */ |
||
| 1250 | public function answers($query_params = null) |
||
| 1254 | |||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Gets the registration's answer value to the specified question |
||
| 1258 | * (either the question's ID or a question object) |
||
| 1259 | * |
||
| 1260 | * @param EE_Question|int $question |
||
| 1261 | * @param bool $pretty_value |
||
| 1262 | * @return array|string if pretty_value= true, the result will always be a string |
||
| 1263 | * (because the answer might be an array of answer values, so passing pretty_value=true |
||
| 1264 | * will convert it into some kind of string) |
||
| 1265 | * @throws EE_Error |
||
| 1266 | */ |
||
| 1267 | public function answer_value_to_question($question, $pretty_value = true) |
||
| 1272 | |||
| 1273 | |||
| 1274 | /** |
||
| 1275 | * question_groups |
||
| 1276 | * returns an array of EE_Question_Group objects for this registration |
||
| 1277 | * |
||
| 1278 | * @return EE_Question_Group[] |
||
| 1279 | * @throws EE_Error |
||
| 1280 | * @throws InvalidArgumentException |
||
| 1281 | * @throws InvalidDataTypeException |
||
| 1282 | * @throws InvalidInterfaceException |
||
| 1283 | * @throws ReflectionException |
||
| 1284 | */ |
||
| 1285 | public function question_groups() |
||
| 1289 | |||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * count_question_groups |
||
| 1293 | * returns a count of the number of EE_Question_Group objects for this registration |
||
| 1294 | * |
||
| 1295 | * @return int |
||
| 1296 | * @throws EE_Error |
||
| 1297 | * @throws EntityNotFoundException |
||
| 1298 | * @throws InvalidArgumentException |
||
| 1299 | * @throws InvalidDataTypeException |
||
| 1300 | * @throws InvalidInterfaceException |
||
| 1301 | * @throws ReflectionException |
||
| 1302 | */ |
||
| 1303 | public function count_question_groups() |
||
| 1316 | |||
| 1317 | |||
| 1318 | /** |
||
| 1319 | * Returns the registration date in the 'standard' string format |
||
| 1320 | * (function may be improved in the future to allow for different formats and timezones) |
||
| 1321 | * |
||
| 1322 | * @return string |
||
| 1323 | * @throws EE_Error |
||
| 1324 | */ |
||
| 1325 | public function reg_date() |
||
| 1329 | |||
| 1330 | |||
| 1331 | /** |
||
| 1332 | * Gets the datetime-ticket for this registration (ie, it can be used to isolate |
||
| 1333 | * the ticket this registration purchased, or the datetime they have registered |
||
| 1334 | * to attend) |
||
| 1335 | * |
||
| 1336 | * @return EE_Datetime_Ticket |
||
| 1337 | * @throws EE_Error |
||
| 1338 | */ |
||
| 1339 | public function datetime_ticket() |
||
| 1343 | |||
| 1344 | |||
| 1345 | /** |
||
| 1346 | * Sets the registration's datetime_ticket. |
||
| 1347 | * |
||
| 1348 | * @param EE_Datetime_Ticket $datetime_ticket |
||
| 1349 | * @return EE_Datetime_Ticket |
||
| 1350 | * @throws EE_Error |
||
| 1351 | */ |
||
| 1352 | public function set_datetime_ticket($datetime_ticket) |
||
| 1356 | |||
| 1357 | /** |
||
| 1358 | * Gets deleted |
||
| 1359 | * |
||
| 1360 | * @return bool |
||
| 1361 | * @throws EE_Error |
||
| 1362 | */ |
||
| 1363 | public function deleted() |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Sets deleted |
||
| 1370 | * |
||
| 1371 | * @param boolean $deleted |
||
| 1372 | * @return bool |
||
| 1373 | * @throws EE_Error |
||
| 1374 | * @throws RuntimeException |
||
| 1375 | */ |
||
| 1376 | public function set_deleted($deleted) |
||
| 1384 | |||
| 1385 | |||
| 1386 | /** |
||
| 1387 | * Get the status object of this object |
||
| 1388 | * |
||
| 1389 | * @return EE_Status |
||
| 1390 | * @throws EE_Error |
||
| 1391 | */ |
||
| 1392 | public function status_obj() |
||
| 1396 | |||
| 1397 | |||
| 1398 | /** |
||
| 1399 | * Returns the number of times this registration has checked into any of the datetimes |
||
| 1400 | * its available for |
||
| 1401 | * |
||
| 1402 | * @return int |
||
| 1403 | * @throws EE_Error |
||
| 1404 | */ |
||
| 1405 | public function count_checkins() |
||
| 1409 | |||
| 1410 | |||
| 1411 | /** |
||
| 1412 | * Returns the number of current Check-ins this registration is checked into for any of the datetimes the |
||
| 1413 | * registration is for. Note, this is ONLY checked in (does not include checkedout) |
||
| 1414 | * |
||
| 1415 | * @return int |
||
| 1416 | * @throws EE_Error |
||
| 1417 | */ |
||
| 1418 | public function count_checkins_not_checkedout() |
||
| 1422 | |||
| 1423 | |||
| 1424 | /** |
||
| 1425 | * The purpose of this method is simply to check whether this registration can checkin to the given datetime. |
||
| 1426 | * |
||
| 1427 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
||
| 1428 | * @param bool $check_approved This is used to indicate whether the caller wants can_checkin to also |
||
| 1429 | * consider registration status as well as datetime access. |
||
| 1430 | * @return bool |
||
| 1431 | * @throws EE_Error |
||
| 1432 | */ |
||
| 1433 | public function can_checkin($DTT_OR_ID, $check_approved = true) |
||
| 1457 | |||
| 1458 | |||
| 1459 | /** |
||
| 1460 | * This method verifies whether the user can checkin for the given datetime considering the max uses value set on |
||
| 1461 | * the ticket. To do this, a query is done to get the count of the datetime records already checked into. If the |
||
| 1462 | * datetime given does not have a check-in record and checking in for that datetime will exceed the allowed uses, |
||
| 1463 | * then return false. Otherwise return true. |
||
| 1464 | * |
||
| 1465 | * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against |
||
| 1466 | * @return bool true means can checkin. false means cannot checkin. |
||
| 1467 | * @throws EE_Error |
||
| 1468 | */ |
||
| 1469 | public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) |
||
| 1519 | |||
| 1520 | |||
| 1521 | /** |
||
| 1522 | * toggle Check-in status for this registration |
||
| 1523 | * Check-ins are toggled in the following order: |
||
| 1524 | * never checked in -> checked in |
||
| 1525 | * checked in -> checked out |
||
| 1526 | * checked out -> checked in |
||
| 1527 | * |
||
| 1528 | * @param int $DTT_ID include specific datetime to toggle Check-in for. |
||
| 1529 | * If not included or null, then it is assumed latest datetime is being toggled. |
||
| 1530 | * @param bool $verify If true then can_checkin() is used to verify whether the person |
||
| 1531 | * can be checked in or not. Otherwise this forces change in checkin status. |
||
| 1532 | * @return bool|int the chk_in status toggled to OR false if nothing got changed. |
||
| 1533 | * @throws EE_Error |
||
| 1534 | */ |
||
| 1535 | public function toggle_checkin_status($DTT_ID = null, $verify = false) |
||
| 1602 | |||
| 1603 | |||
| 1604 | /** |
||
| 1605 | * Returns the latest datetime related to this registration (via the ticket attached to the registration). |
||
| 1606 | * "Latest" is defined by the `DTT_EVT_start` column. |
||
| 1607 | * |
||
| 1608 | * @return EE_Datetime|null |
||
| 1609 | * @throws EE_Error |
||
| 1610 | */ |
||
| 1611 | View Code Duplication | public function get_latest_related_datetime() |
|
| 1622 | |||
| 1623 | |||
| 1624 | /** |
||
| 1625 | * Returns the earliest datetime related to this registration (via the ticket attached to the registration). |
||
| 1626 | * "Earliest" is defined by the `DTT_EVT_start` column. |
||
| 1627 | * |
||
| 1628 | * @throws EE_Error |
||
| 1629 | */ |
||
| 1630 | View Code Duplication | public function get_earliest_related_datetime() |
|
| 1641 | |||
| 1642 | |||
| 1643 | /** |
||
| 1644 | * This method simply returns the check-in status for this registration and the given datetime. |
||
| 1645 | * If neither the datetime nor the checkin values are provided as arguments, |
||
| 1646 | * then this will return the LATEST check-in status for the registration across all datetimes it belongs to. |
||
| 1647 | * |
||
| 1648 | * @param int $DTT_ID The ID of the datetime we're checking against |
||
| 1649 | * (if empty we'll get the primary datetime for |
||
| 1650 | * this registration (via event) and use it's ID); |
||
| 1651 | * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id. |
||
| 1652 | * |
||
| 1653 | * @return int Integer representing Check-in status. |
||
| 1654 | * @throws EE_Error |
||
| 1655 | */ |
||
| 1656 | public function check_in_status_for_datetime($DTT_ID = 0, $checkin = null) |
||
| 1678 | |||
| 1679 | |||
| 1680 | /** |
||
| 1681 | * This method returns a localized message for the toggled Check-in message. |
||
| 1682 | * |
||
| 1683 | * @param int $DTT_ID include specific datetime to get the correct Check-in message. If not included or null, |
||
| 1684 | * then it is assumed Check-in for primary datetime was toggled. |
||
| 1685 | * @param bool $error This just flags that you want an error message returned. This is put in so that the error |
||
| 1686 | * message can be customized with the attendee name. |
||
| 1687 | * @return string internationalized message |
||
| 1688 | * @throws EE_Error |
||
| 1689 | */ |
||
| 1690 | public function get_checkin_msg($DTT_ID, $error = false) |
||
| 1717 | |||
| 1718 | |||
| 1719 | /** |
||
| 1720 | * Returns the related EE_Transaction to this registration |
||
| 1721 | * |
||
| 1722 | * @return EE_Transaction |
||
| 1723 | * @throws EE_Error |
||
| 1724 | * @throws EntityNotFoundException |
||
| 1725 | */ |
||
| 1726 | public function transaction() |
||
| 1734 | |||
| 1735 | |||
| 1736 | /** |
||
| 1737 | * get Registration Code |
||
| 1738 | */ |
||
| 1739 | public function reg_code() |
||
| 1743 | |||
| 1744 | |||
| 1745 | /** |
||
| 1746 | * get Transaction ID |
||
| 1747 | */ |
||
| 1748 | public function transaction_ID() |
||
| 1752 | |||
| 1753 | |||
| 1754 | /** |
||
| 1755 | * @return int |
||
| 1756 | * @throws EE_Error |
||
| 1757 | */ |
||
| 1758 | public function ticket_ID() |
||
| 1762 | |||
| 1763 | |||
| 1764 | /** |
||
| 1765 | * Set Registration Code |
||
| 1766 | * |
||
| 1767 | * @access public |
||
| 1768 | * @param string $REG_code Registration Code |
||
| 1769 | * @param boolean $use_default |
||
| 1770 | * @throws EE_Error |
||
| 1771 | */ |
||
| 1772 | public function set_reg_code($REG_code, $use_default = false) |
||
| 1793 | |||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * Returns all other registrations in the same group as this registrant who have the same ticket option. |
||
| 1797 | * Note, if you want to just get all registrations in the same transaction (group), use: |
||
| 1798 | * $registration->transaction()->registrations(); |
||
| 1799 | * |
||
| 1800 | * @since 4.5.0 |
||
| 1801 | * @return EE_Registration[] or empty array if this isn't a group registration. |
||
| 1802 | * @throws EE_Error |
||
| 1803 | */ |
||
| 1804 | public function get_all_other_registrations_in_group() |
||
| 1819 | |||
| 1820 | /** |
||
| 1821 | * Return the link to the admin details for the object. |
||
| 1822 | * |
||
| 1823 | * @return string |
||
| 1824 | * @throws EE_Error |
||
| 1825 | */ |
||
| 1826 | View Code Duplication | public function get_admin_details_link() |
|
| 1838 | |||
| 1839 | /** |
||
| 1840 | * Returns the link to the editor for the object. Sometimes this is the same as the details. |
||
| 1841 | * |
||
| 1842 | * @return string |
||
| 1843 | * @throws EE_Error |
||
| 1844 | */ |
||
| 1845 | public function get_admin_edit_link() |
||
| 1849 | |||
| 1850 | /** |
||
| 1851 | * Returns the link to a settings page for the object. |
||
| 1852 | * |
||
| 1853 | * @return string |
||
| 1854 | * @throws EE_Error |
||
| 1855 | */ |
||
| 1856 | public function get_admin_settings_link() |
||
| 1860 | |||
| 1861 | /** |
||
| 1862 | * Returns the link to the "overview" for the object (typically the "list table" view). |
||
| 1863 | * |
||
| 1864 | * @return string |
||
| 1865 | */ |
||
| 1866 | public function get_admin_overview_link() |
||
| 1876 | |||
| 1877 | |||
| 1878 | /** |
||
| 1879 | * @param array $query_params |
||
| 1880 | * |
||
| 1881 | * @return \EE_Registration[] |
||
| 1882 | * @throws EE_Error |
||
| 1883 | */ |
||
| 1884 | public function payments($query_params = array()) |
||
| 1888 | |||
| 1889 | |||
| 1890 | /** |
||
| 1891 | * @param array $query_params |
||
| 1892 | * |
||
| 1893 | * @return \EE_Registration_Payment[] |
||
| 1894 | * @throws EE_Error |
||
| 1895 | */ |
||
| 1896 | public function registration_payments($query_params = array()) |
||
| 1900 | |||
| 1901 | |||
| 1902 | /** |
||
| 1903 | * This grabs the payment method corresponding to the last payment made for the amount owing on the registration. |
||
| 1904 | * Note: if there are no payments on the registration there will be no payment method returned. |
||
| 1905 | * |
||
| 1906 | * @return EE_Payment_Method|null |
||
| 1907 | */ |
||
| 1908 | public function payment_method() |
||
| 1912 | |||
| 1913 | |||
| 1914 | /** |
||
| 1915 | * @return \EE_Line_Item |
||
| 1916 | * @throws EntityNotFoundException |
||
| 1917 | * @throws EE_Error |
||
| 1918 | */ |
||
| 1919 | public function ticket_line_item() |
||
| 1943 | |||
| 1944 | |||
| 1945 | /** |
||
| 1946 | * Soft Deletes this model object. |
||
| 1947 | * |
||
| 1948 | * @return boolean | int |
||
| 1949 | * @throws RuntimeException |
||
| 1950 | * @throws EE_Error |
||
| 1951 | */ |
||
| 1952 | public function delete() |
||
| 1959 | |||
| 1960 | |||
| 1961 | /** |
||
| 1962 | * Restores whatever the previous status was on a registration before it was trashed (if possible) |
||
| 1963 | * |
||
| 1964 | * @throws EE_Error |
||
| 1965 | * @throws RuntimeException |
||
| 1966 | */ |
||
| 1967 | public function restore() |
||
| 1980 | |||
| 1981 | |||
| 1982 | /** |
||
| 1983 | * possibly toggle Registration status based on comparison of REG_paid vs REG_final_price |
||
| 1984 | * |
||
| 1985 | * @param boolean $trigger_set_status_logic EE_Registration::set_status() can trigger additional logic |
||
| 1986 | * depending on whether the reg status changes to or from "Approved" |
||
| 1987 | * @return boolean whether the Registration status was updated |
||
| 1988 | * @throws EE_Error |
||
| 1989 | * @throws RuntimeException |
||
| 1990 | */ |
||
| 1991 | public function updateStatusBasedOnTotalPaid($trigger_set_status_logic = true) |
||
| 2020 | |||
| 2021 | |||
| 2022 | /*************************** DEPRECATED ***************************/ |
||
| 2023 | |||
| 2024 | |||
| 2025 | /** |
||
| 2026 | * @deprecated |
||
| 2027 | * @since 4.7.0 |
||
| 2028 | * @access public |
||
| 2029 | */ |
||
| 2030 | public function price_paid() |
||
| 2042 | |||
| 2043 | |||
| 2044 | /** |
||
| 2045 | * @deprecated |
||
| 2046 | * @since 4.7.0 |
||
| 2047 | * @access public |
||
| 2048 | * @param float $REG_final_price |
||
| 2049 | * @throws EE_Error |
||
| 2050 | * @throws RuntimeException |
||
| 2051 | */ |
||
| 2052 | public function set_price_paid($REG_final_price = 0.00) |
||
| 2064 | |||
| 2065 | |||
| 2066 | /** |
||
| 2067 | * @deprecated |
||
| 2068 | * @since 4.7.0 |
||
| 2069 | * @return string |
||
| 2070 | * @throws EE_Error |
||
| 2071 | */ |
||
| 2072 | public function pretty_price_paid() |
||
| 2084 | |||
| 2085 | |||
| 2086 | /** |
||
| 2087 | * Gets the primary datetime related to this registration via the related Event to this registration |
||
| 2088 | * |
||
| 2089 | * @deprecated 4.9.17 |
||
| 2090 | * @return EE_Datetime |
||
| 2091 | * @throws EE_Error |
||
| 2092 | * @throws EntityNotFoundException |
||
| 2093 | */ |
||
| 2094 | public function get_related_primary_datetime() |
||
| 2107 | |||
| 2108 | public function name() |
||
| 2127 | } |
||
| 2128 |
The break statement is not necessary if it is preceded for example by a return statement:
If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.