@@ 2260-2275 (lines=16) @@ | ||
2257 | * @param string $label |
|
2258 | * @return string |
|
2259 | */ |
|
2260 | public function form_form_field_label_wrap($label) |
|
2261 | { |
|
2262 | EE_Error::doing_it_wrong( |
|
2263 | __CLASS__ . '::' . __FUNCTION__, |
|
2264 | esc_html__( |
|
2265 | 'This method would have been protected but was used on a filter callback so needed to be public. Please discontinue usage as it will be removed soon.', |
|
2266 | 'event_espresso' |
|
2267 | ), |
|
2268 | '4.8.32.rc.000' |
|
2269 | ); |
|
2270 | return ' |
|
2271 | <tr> |
|
2272 | <th> |
|
2273 | ' . $label . ' |
|
2274 | </th>'; |
|
2275 | } |
|
2276 | ||
2277 | ||
2278 | /** |
|
@@ 2286-2301 (lines=16) @@ | ||
2283 | * @param string $input |
|
2284 | * @return string |
|
2285 | */ |
|
2286 | public function form_form_field_input__wrap($input) |
|
2287 | { |
|
2288 | EE_Error::doing_it_wrong( |
|
2289 | __CLASS__ . '::' . __FUNCTION__, |
|
2290 | esc_html__( |
|
2291 | 'This method would have been protected but was used on a filter callback so needed to be public. Please discontinue usage as it will be removed soon.', |
|
2292 | 'event_espresso' |
|
2293 | ), |
|
2294 | '4.8.32.rc.000' |
|
2295 | ); |
|
2296 | return ' |
|
2297 | <td class="reg-admin-attendee-questions-input-td disabled-input"> |
|
2298 | ' . $input . ' |
|
2299 | </td> |
|
2300 | </tr>'; |
|
2301 | } |
|
2302 | ||
2303 | ||
2304 | /** |