| @@ 1097-1118 (lines=22) @@ | ||
| 1094 | $input_value = $primary_registrant[ $form_input ]; |
|
| 1095 | } |
|
| 1096 | // now attempt to save the input data |
|
| 1097 | if (! $this->_save_registration_form_input( |
|
| 1098 | $registration, |
|
| 1099 | $form_input, |
|
| 1100 | $input_value |
|
| 1101 | ) |
|
| 1102 | ) { |
|
| 1103 | EE_Error::add_error( |
|
| 1104 | sprintf( |
|
| 1105 | esc_html_x( |
|
| 1106 | 'Unable to save registration form data for the form input: "%1$s" with the submitted value: "%2$s"', |
|
| 1107 | 'Unable to save registration form data for the form input: "form input name" with the submitted value: "form input value"', |
|
| 1108 | 'event_espresso' |
|
| 1109 | ), |
|
| 1110 | $form_input, |
|
| 1111 | $input_value |
|
| 1112 | ), |
|
| 1113 | __FILE__, |
|
| 1114 | __FUNCTION__, |
|
| 1115 | __LINE__ |
|
| 1116 | ); |
|
| 1117 | return false; |
|
| 1118 | } |
|
| 1119 | } |
|
| 1120 | } |
|
| 1121 | } // end of foreach ( $valid_data[ $reg_url_link ] as $form_section => $form_inputs ) |
|
| @@ 74-91 (lines=18) @@ | ||
| 71 | ||
| 72 | foreach ($props as $property => $val) { |
|
| 73 | $setter = 'set' . $property; |
|
| 74 | if (method_exists($this, $setter)) { |
|
| 75 | $this->$setter($val); |
|
| 76 | } else { |
|
| 77 | // No setter found. |
|
| 78 | EE_Error::add_error( |
|
| 79 | sprintf( |
|
| 80 | esc_html__( |
|
| 81 | 'EEH_Sideloader::%1$s not found. There is no setter for the %2$s property.', |
|
| 82 | 'event_espresso' |
|
| 83 | ), |
|
| 84 | $setter, |
|
| 85 | $property |
|
| 86 | ), |
|
| 87 | __FILE__, |
|
| 88 | __FUNCTION__, |
|
| 89 | __LINE__ |
|
| 90 | ); |
|
| 91 | } |
|
| 92 | } |
|
| 93 | ||
| 94 | // make sure we include the required wp file for needed functions |
|