Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function __construct() |
||
30 | { |
||
31 | $this->valid_type_options = apply_filters( |
||
32 | 'FHEE__EventEspresso_core_services_form_meta_inputs_Button__valid_type_options', |
||
33 | [ |
||
34 | Button::TYPE_BUTTON => esc_html__('Button', 'event_espresso'), |
||
35 | Button::TYPE_BUTTON_RESET => esc_html__('Reset Button', 'event_espresso'), |
||
36 | Button::TYPE_BUTTON_SUBMIT => esc_html__('Submit Button', 'event_espresso'), |
||
37 | ] |
||
38 | ); |
||
39 | } |
||
40 | |||
53 |