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:
| 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
||
| 14 | class EEM_Registration extends EEM_Soft_Delete_Base { |
||
| 15 | |||
| 16 | // private instance of the Registration object |
||
| 17 | protected static $_instance = NULL; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Keys are the status IDs for registrations (eg, RAP, RCN, etc), and the values |
||
| 21 | * are status codes (eg, approved, cancelled, etc) |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | private static $_reg_status; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * The value of REG_count for a primary registrant |
||
| 28 | */ |
||
| 29 | const PRIMARY_REGISTRANT_COUNT = 1; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Status ID (STS_ID on esp_status table) to indicate an INCOMPLETE registration. |
||
| 33 | * Initial status for registrations when they are first created |
||
| 34 | * Payments are NOT allowed. |
||
| 35 | * Automatically toggled to whatever the default Event registration status is upon completion of the attendee information reg step |
||
| 36 | * NO space reserved. |
||
| 37 | * Registration is NOT active |
||
| 38 | */ |
||
| 39 | const status_id_incomplete = 'RIC'; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Status ID (STS_ID on esp_status table) to indicate an UNAPPROVED registration. |
||
| 43 | * Payments are NOT allowed. |
||
| 44 | * Event Admin must manually toggle STS_ID for it to change |
||
| 45 | * No space reserved. |
||
| 46 | * Registration is active |
||
| 47 | */ |
||
| 48 | const status_id_not_approved = 'RNA'; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Status ID (STS_ID on esp_status table) to indicate registration is PENDING_PAYMENT . |
||
| 52 | * Payments are allowed. |
||
| 53 | * STS_ID will automatically be toggled to RAP if payment is made in full by the attendee |
||
| 54 | * No space reserved. |
||
| 55 | * Registration is active |
||
| 56 | */ |
||
| 57 | const status_id_pending_payment = 'RPP'; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Status ID (STS_ID on esp_status table) to indicate an APPROVED registration. |
||
| 61 | * the TXN may or may not be completed ( paid in full ) |
||
| 62 | * Payments are allowed. |
||
| 63 | * A space IS reserved. |
||
| 64 | * Registration is active |
||
| 65 | */ |
||
| 66 | const status_id_approved = 'RAP'; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * Status ID (STS_ID on esp_status table) to indicate a registration was CANCELLED by the attendee. |
||
| 70 | * Payments are NOT allowed. |
||
| 71 | * NO space reserved. |
||
| 72 | * Registration is NOT active |
||
| 73 | */ |
||
| 74 | const status_id_cancelled = 'RCN'; |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Status ID (STS_ID on esp_status table) to indicate a registration was DECLINED by the Event Admin |
||
| 78 | * Payments are NOT allowed. |
||
| 79 | * No space reserved. |
||
| 80 | * Registration is NOT active |
||
| 81 | */ |
||
| 82 | const status_id_declined = 'RDC'; |
||
| 83 | |||
| 84 | |||
| 85 | |||
| 86 | /** |
||
| 87 | * private constructor to prevent direct creation |
||
| 88 | * |
||
| 89 | * @Constructor |
||
| 90 | * @access protected |
||
| 91 | * @param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any incoming timezone data that gets saved). |
||
| 92 | * Note this just sends the timezone info to the date time model field objects. Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option) |
||
| 93 | * @return \EEM_Registration |
||
|
|
|||
| 94 | */ |
||
| 95 | protected function __construct( $timezone ) { |
||
| 96 | $this->singular_item = __('Registration','event_espresso'); |
||
| 97 | $this->plural_item = __('Registrations','event_espresso'); |
||
| 98 | |||
| 99 | $this->_tables = array( |
||
| 100 | 'Registration'=>new EE_Primary_Table('esp_registration','REG_ID') |
||
| 101 | ); |
||
| 102 | $this->_fields = array( |
||
| 103 | 'Registration'=>array( |
||
| 104 | 'REG_ID'=>new EE_Primary_Key_Int_Field('REG_ID', __('Registration ID','event_espresso')), |
||
| 105 | 'EVT_ID'=>new EE_Foreign_Key_Int_Field('EVT_ID', __('Event ID','event_espresso'), false, 0, 'Event'), |
||
| 106 | 'ATT_ID'=>new EE_Foreign_Key_Int_Field('ATT_ID', __('Attendee ID','event_espresso'), false, 0, 'Attendee'), |
||
| 107 | 'TXN_ID'=>new EE_Foreign_Key_Int_Field('TXN_ID', __('Transaction ID','event_espresso'), false, 0, 'Transaction'), |
||
| 108 | 'TKT_ID'=>new EE_Foreign_Key_Int_Field('TKT_ID', __('Ticket ID','event_espresso'), false, 0, 'Ticket'), |
||
| 109 | 'STS_ID'=>new EE_Foreign_Key_String_Field('STS_ID', __('Status ID','event_espresso'), false, EEM_Registration::status_id_incomplete, 'Status'), |
||
| 110 | 'REG_date'=>new EE_Datetime_Field('REG_date', __('Time registration occurred','event_espresso'), false, time(), $timezone ), |
||
| 111 | 'REG_final_price'=>new EE_Money_Field('REG_final_price', __('Registration\'s share of the transaction total','event_espresso'), false, 0), |
||
| 112 | 'REG_paid'=>new EE_Money_Field('REG_paid', __('Amount paid to date towards registration','event_espresso'), false, 0), |
||
| 113 | 'REG_session'=>new EE_Plain_Text_Field('REG_session', __('Session ID of registration','event_espresso'), false, ''), |
||
| 114 | 'REG_code'=>new EE_Plain_Text_Field('REG_code', __('Unique Code for this registration','event_espresso'), false, ''), |
||
| 115 | 'REG_url_link'=>new EE_Plain_Text_Field('REG_url_link', __('String to be used in URL for identifying registration','event_espresso'), false, ''), |
||
| 116 | 'REG_count'=>new EE_Integer_Field('REG_count', __('Count of this registration in the group registration ','event_espresso'), true, 1), |
||
| 117 | 'REG_group_size'=>new EE_Integer_Field('REG_group_size', __('Number of registrations on this group','event_espresso'), false, 1), |
||
| 118 | 'REG_att_is_going'=>new EE_Boolean_Field('REG_att_is_going', __('Flag indicating the registrant plans on attending','event_espresso'), false, false), |
||
| 119 | 'REG_deleted' => new EE_Trashed_Flag_Field('REG_deleted', __('Flag indicating if registration has been archived or not.', 'event_espresso'), false, false ) |
||
| 120 | ) |
||
| 121 | ); |
||
| 122 | $this->_model_relations = array( |
||
| 123 | 'Event'=>new EE_Belongs_To_Relation(), |
||
| 124 | 'Attendee'=>new EE_Belongs_To_Relation(), |
||
| 125 | 'Transaction'=>new EE_Belongs_To_Relation(), |
||
| 126 | 'Ticket'=>new EE_Belongs_To_Relation(), |
||
| 127 | 'Status'=>new EE_Belongs_To_Relation(), |
||
| 128 | 'Answer'=>new EE_Has_Many_Relation(), |
||
| 129 | 'Checkin'=>new EE_Has_Many_Relation(), |
||
| 130 | 'Registration_Payment' => new EE_Has_Many_Relation(), |
||
| 131 | 'Payment'=>new EE_HABTM_Relation( 'Registration_Payment' ), |
||
| 132 | 'Message' => new EE_Has_Many_Any_Relation( false ) //allow deletes even if there are messages in the queue related |
||
| 133 | ); |
||
| 134 | $this->_model_chain_to_wp_user = 'Event'; |
||
| 135 | |||
| 136 | parent::__construct( $timezone ); |
||
| 137 | } |
||
| 138 | |||
| 139 | |||
| 140 | |||
| 141 | /** |
||
| 142 | * reg_statuses_that_allow_payment |
||
| 143 | * a filterable list of registration statuses that allow a registrant to make a payment |
||
| 144 | * |
||
| 145 | * @access public |
||
| 146 | * @return array |
||
| 147 | */ |
||
| 148 | public static function reg_statuses_that_allow_payment() { |
||
| 149 | return apply_filters( |
||
| 150 | 'FHEE__EEM_Registration__reg_statuses_that_allow_payment', |
||
| 151 | array( |
||
| 152 | EEM_Registration::status_id_approved, |
||
| 153 | EEM_Registration::status_id_pending_payment, |
||
| 154 | ) |
||
| 155 | ); |
||
| 156 | } |
||
| 157 | |||
| 158 | |||
| 159 | |||
| 160 | /** |
||
| 161 | * get list of registration statuses |
||
| 162 | * |
||
| 163 | * |
||
| 164 | * @access public |
||
| 165 | * @param array $exclude The status ids to exclude from the returned results |
||
| 166 | * @param bool $translated If true will return the values as singular localized strings |
||
| 167 | * @return array |
||
| 168 | */ |
||
| 169 | public static function reg_status_array( $exclude = array(), $translated = FALSE ) { |
||
| 173 | |||
| 174 | |||
| 175 | |||
| 176 | /** |
||
| 177 | * get list of registration statuses |
||
| 178 | * @access private |
||
| 179 | * @param array $exclude |
||
| 180 | * @return array |
||
| 181 | */ |
||
| 182 | private function _get_registration_status_array( $exclude = array() ) { |
||
| 183 | //in the very rare circumstance that we are deleting a model's table's data |
||
| 184 | //and the table hasn't actually been created, this could have an error |
||
| 185 | /** @type WPDB $wpdb */ |
||
| 186 | global $wpdb; |
||
| 187 | if( EEH_Activation::table_exists( $wpdb->prefix . 'esp_status' ) ){ |
||
| 188 | $SQL = 'SELECT STS_ID, STS_code FROM '. $wpdb->prefix . 'esp_status WHERE STS_type = "registration"'; |
||
| 189 | $results = $wpdb->get_results( $SQL ); |
||
| 190 | self::$_reg_status = array(); |
||
| 191 | foreach ( $results as $status ) { |
||
| 192 | if ( ! in_array( $status->STS_ID, $exclude )) { |
||
| 193 | self::$_reg_status[ $status->STS_ID ] = $status->STS_code; |
||
| 194 | } |
||
| 195 | } |
||
| 196 | } |
||
| 197 | |||
| 198 | } |
||
| 199 | |||
| 200 | |||
| 201 | |||
| 202 | |||
| 203 | /** |
||
| 204 | * This returns a wpdb->results array of all registration date month and years matching the incoming query params and grouped by month and year. |
||
| 205 | * @param array $where_params Array of query_params as described in the comments for EEM_Base::get_all() |
||
| 206 | * @return wpdb results array |
||
| 207 | */ |
||
| 208 | public function get_reg_months_and_years( $where_params ) { |
||
| 218 | |||
| 219 | |||
| 220 | |||
| 221 | |||
| 222 | /** |
||
| 223 | * retrieve ALL registrations for a particular Attendee from db |
||
| 224 | * @access public |
||
| 225 | * @param int $ATT_ID |
||
| 226 | * @return EE_Registration[] |
||
| 227 | */ |
||
| 228 | public function get_all_registrations_for_attendee( $ATT_ID = 0 ) { |
||
| 234 | |||
| 235 | |||
| 236 | |||
| 237 | /** |
||
| 238 | * Gets a registration given their REG_url_link. Yes, this should usually |
||
| 239 | * be passed via a GET parameter. |
||
| 240 | * @param string $REG_url_link |
||
| 241 | * @return EE_Registration |
||
| 242 | */ |
||
| 243 | public function get_registration_for_reg_url_link($REG_url_link){ |
||
| 249 | |||
| 250 | |||
| 251 | |||
| 252 | |||
| 253 | /** |
||
| 254 | * retrieve registration for a specific transaction attendee from db |
||
| 255 | * |
||
| 256 | * @access public |
||
| 257 | * @param int $TXN_ID |
||
| 258 | * @param int $ATT_ID |
||
| 259 | * @param int $att_nmbr in case the ATT_ID is the same for multiple registrations (same details used) then the attendee number is required |
||
| 260 | * @return mixed array on success, FALSE on fail |
||
| 261 | */ |
||
| 262 | public function get_registration_for_transaction_attendee( $TXN_ID = 0, $ATT_ID = 0, $att_nmbr = 0 ) { |
||
| 271 | |||
| 272 | |||
| 273 | /** |
||
| 274 | * get the number of registrations per day for the Registration Admin page Reports Tab. |
||
| 275 | * (doesn't utilize models because it's a fairly specialized query) |
||
| 276 | * @access public |
||
| 277 | * @param $period string which can be passed to php's strtotime function (eg "-1 month") |
||
| 278 | * @return stdClass[] with properties regDate and total |
||
| 279 | */ |
||
| 280 | public function get_registrations_per_day_report( $period = '-1 month' ) { |
||
| 304 | |||
| 305 | |||
| 306 | /** |
||
| 307 | * Get the number of registrations per day including the count of registrations for each Registration Status. |
||
| 308 | * Note: EEM_Registration::status_id_incomplete registrations are excluded from the results. |
||
| 309 | * |
||
| 310 | * @param string $period |
||
| 311 | * |
||
| 312 | * @return stdClass[] with properties Registration_REG_date and a column for each registration status as the STS_ID |
||
| 313 | * (i.e. RAP) |
||
| 314 | */ |
||
| 315 | View Code Duplication | public function get_registrations_per_day_and_per_status_report( $period = '-1 month' ) { |
|
| 367 | |||
| 368 | |||
| 369 | |||
| 370 | |||
| 371 | |||
| 372 | |||
| 373 | /** |
||
| 374 | * get the number of registrations per event for the Registration Admin page Reports Tab |
||
| 375 | * @access public |
||
| 376 | * @param $period string which can be passed to php's strtotime function (eg "-1 month") |
||
| 377 | * @return stdClass[] each with properties event_name, reg_limit, and total |
||
| 378 | */ |
||
| 379 | public function get_registrations_per_event_report( $period = '-1 month' ) { |
||
| 402 | |||
| 403 | |||
| 404 | /** |
||
| 405 | * Get the number of registrations per event grouped by registration status. |
||
| 406 | * Note: EEM_Registration::status_id_incomplete registrations are excluded from the results. |
||
| 407 | * |
||
| 408 | * @param string $period |
||
| 409 | * |
||
| 410 | * @return stdClass[] with properties `Registration_Event` and a column for each registration status as the STS_ID |
||
| 411 | * (i.e. RAP) |
||
| 412 | */ |
||
| 413 | View Code Duplication | public function get_registrations_per_event_and_per_status_report( $period = '-1 month' ) { |
|
| 462 | |||
| 463 | |||
| 464 | /** |
||
| 465 | * Returns the EE_Registration of the primary attendee on the transaction id provided |
||
| 466 | * @param int $TXN_ID |
||
| 467 | * @return EE_Registration |
||
| 468 | */ |
||
| 469 | public function get_primary_registration_for_transaction_ID( $TXN_ID = 0){ |
||
| 475 | |||
| 476 | |||
| 477 | /** |
||
| 478 | * get_event_registration_count |
||
| 479 | * |
||
| 480 | * @access public |
||
| 481 | * @param int $EVT_ID |
||
| 482 | * @param boolean $for_incomplete_payments |
||
| 483 | * @return int |
||
| 484 | */ |
||
| 485 | public function get_event_registration_count ( $EVT_ID, $for_incomplete_payments = FALSE ) { |
||
| 494 | |||
| 495 | /** |
||
| 496 | * Deletes all registrations with no transactions. Note that this needs to be very efficient |
||
| 497 | * and so it uses wpdb directly |
||
| 498 | * @global WPDB $wpdb |
||
| 499 | * @return int number deleted |
||
| 500 | */ |
||
| 501 | public function delete_registrations_with_no_transaction() { |
||
| 507 | |||
| 508 | /** |
||
| 509 | * Count registrations checked into (or out of) a datetime |
||
| 510 | * |
||
| 511 | * @param int $DTT_ID datetime ID |
||
| 512 | * @param boolean $checked_in whether to count registrations checked IN or OUT |
||
| 513 | * @return int |
||
| 514 | */ |
||
| 515 | public function count_registrations_checked_into_datetime( $DTT_ID, $checked_in = true) { |
||
| 538 | |||
| 539 | /** |
||
| 540 | * Count registrations checked into (or out of) an event. |
||
| 541 | * |
||
| 542 | * @param int $EVT_ID event ID |
||
| 543 | * @param boolean $checked_in whether to count registrations checked IN or OUT |
||
| 544 | * @return int |
||
| 545 | */ |
||
| 546 | public function count_registrations_checked_into_event( $EVT_ID, $checked_in = true ) { |
||
| 571 | |||
| 572 | |||
| 573 | |||
| 574 | |||
| 575 | |||
| 576 | /** |
||
| 577 | * The purpose of this method is to retrieve an array of |
||
| 578 | * EE_Registration objects that represent the latest registration |
||
| 579 | * for each ATT_ID given in the function argument. |
||
| 580 | * |
||
| 581 | * @param array $attendee_ids |
||
| 582 | * @return EE_Registration[] |
||
| 583 | */ |
||
| 584 | public function get_latest_registration_for_each_of_given_contacts( $attendee_ids = array() ) { |
||
| 636 | |||
| 637 | |||
| 638 | |||
| 639 | } |
||
| 640 | // End of file EEM_Registration.model.php |
||
| 642 |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.