| @@ -35,11 +35,8 @@ | ||
| 35 | 35 | protected function include_form_builder_file() { |
| 36 | 36 | return $this->include_front_form_file(); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - /** | |
| 40 | - * @return string[] | |
| 41 | - */ | |
| 42 | 39 | protected function new_field_settings() { |
| 43 | 40 | return array( |
| 44 | 41 | 'options' => serialize( |
| 45 | 42 | array( |
| @@ -61,11 +58,8 @@ | ||
| 61 | 58 | $this->type => true, |
| 62 | 59 | ); |
| 63 | 60 | } |
| 64 | 61 | |
| 65 | - /** | |
| 66 | - * @return array | |
| 67 | - */ | |
| 68 | 62 | protected function extra_field_opts() { |
| 69 | 63 | $form_id = $this->get_field_column( 'form_id' ); |
| 70 | 64 | |
| 71 | 65 | return array( |
| @@ -74,25 +68,17 @@ | ||
| 74 | 68 | } |
| 75 | 69 | |
| 76 | 70 | /** |
| 77 | 71 | * @since 4.06 |
| 78 | - * | |
| 79 | - * @return void | |
| 80 | 72 | */ |
| 81 | 73 | protected function show_priority_field_choices( $args = array() ) { |
| 82 | - 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' ); | |
| 83 | 75 | } |
| 84 | 76 | |
| 85 | - /** | |
| 86 | - * @return string | |
| 87 | - */ | |
| 88 | 77 | protected function include_front_form_file() { |
| 89 | 78 | return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/checkbox-field.php'; |
| 90 | 79 | } |
| 91 | 80 | |
| 92 | - /** | |
| 93 | - * @return bool | |
| 94 | - */ | |
| 95 | 81 | protected function show_readonly_hidden() { |
| 96 | 82 | return true; |
| 97 | 83 | } |
| 98 | 84 | |