| @@ -27,13 +27,8 @@ | ||
| 27 | 27 | * @since 3.06.01 |
| 28 | 28 | */ |
| 29 | 29 | protected $has_for_label = false; |
| 30 | 30 | |
| 31 | - /** | |
| 32 | - * @var bool | |
| 33 | - */ | |
| 34 | - protected $array_allowed = false; | |
| 35 | - | |
| 36 | 31 | protected function input_html() { |
| 37 | 32 | return $this->multiple_input_html(); |
| 38 | 33 | } |
| 39 | 34 | |
| @@ -52,11 +47,8 @@ | ||
| 52 | 47 | $this->type => true, |
| 53 | 48 | ); |
| 54 | 49 | } |
| 55 | 50 | |
| 56 | - /** | |
| 57 | - * @return array | |
| 58 | - */ | |
| 59 | 51 | protected function extra_field_opts() { |
| 60 | 52 | $form_id = $this->get_field_column( 'form_id' ); |
| 61 | 53 | |
| 62 | 54 | return array( |
| @@ -63,11 +55,8 @@ | ||
| 63 | 55 | 'align' => FrmStylesController::get_style_val( 'radio_align', ( empty( $form_id ) ? 'default' : $form_id ) ), |
| 64 | 56 | ); |
| 65 | 57 | } |
| 66 | 58 | |
| 67 | - /** | |
| 68 | - * @return string[] | |
| 69 | - */ | |
| 70 | 59 | protected function new_field_settings() { |
| 71 | 60 | return array( |
| 72 | 61 | 'options' => serialize( |
| 73 | 62 | array( |
| @@ -79,25 +68,17 @@ | ||
| 79 | 68 | } |
| 80 | 69 | |
| 81 | 70 | /** |
| 82 | 71 | * @since 4.06 |
| 83 | - * | |
| 84 | - * @return void | |
| 85 | 72 | */ |
| 86 | 73 | protected function show_priority_field_choices( $args = array() ) { |
| 87 | - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/radio-images.php'; | |
| 74 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/radio-images.php' ); | |
| 88 | 75 | } |
| 89 | 76 | |
| 90 | - /** | |
| 91 | - * @return string | |
| 92 | - */ | |
| 93 | 77 | protected function include_front_form_file() { |
| 94 | 78 | return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/radio-field.php'; |
| 95 | 79 | } |
| 96 | 80 | |
| 97 | - /** | |
| 98 | - * @return bool | |
| 99 | - */ | |
| 100 | 81 | protected function show_readonly_hidden() { |
| 101 | 82 | return true; |
| 102 | 83 | } |
| 103 | 84 | } |