| @@ 2384-2399 (lines=16) @@ | ||
| 2381 | * @param string $label |
|
| 2382 | * @return string |
|
| 2383 | */ |
|
| 2384 | public function form_form_field_label_wrap($label) |
|
| 2385 | { |
|
| 2386 | EE_Error::doing_it_wrong( |
|
| 2387 | __CLASS__ . '::' . __FUNCTION__, |
|
| 2388 | esc_html__( |
|
| 2389 | '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.', |
|
| 2390 | 'event_espresso' |
|
| 2391 | ), |
|
| 2392 | '4.8.32.rc.000' |
|
| 2393 | ); |
|
| 2394 | return ' |
|
| 2395 | <tr> |
|
| 2396 | <th> |
|
| 2397 | ' . $label . ' |
|
| 2398 | </th>'; |
|
| 2399 | } |
|
| 2400 | ||
| 2401 | ||
| 2402 | /** |
|
| @@ 2410-2425 (lines=16) @@ | ||
| 2407 | * @param string $input |
|
| 2408 | * @return string |
|
| 2409 | */ |
|
| 2410 | public function form_form_field_input__wrap($input) |
|
| 2411 | { |
|
| 2412 | EE_Error::doing_it_wrong( |
|
| 2413 | __CLASS__ . '::' . __FUNCTION__, |
|
| 2414 | esc_html__( |
|
| 2415 | '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.', |
|
| 2416 | 'event_espresso' |
|
| 2417 | ), |
|
| 2418 | '4.8.32.rc.000' |
|
| 2419 | ); |
|
| 2420 | return ' |
|
| 2421 | <td class="reg-admin-attendee-questions-input-td disabled-input"> |
|
| 2422 | ' . $input . ' |
|
| 2423 | </td> |
|
| 2424 | </tr>'; |
|
| 2425 | } |
|
| 2426 | ||
| 2427 | ||
| 2428 | /** |
|