| @@ -21,23 +21,17 @@ | ||
| 21 | 21 | protected $has_input = false; |
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * @since 4.0 |
| 25 | - * | |
| 26 | 25 | * @param array $args - Includes 'field', 'display', and 'values' |
| 27 | - * | |
| 28 | - * @return void | |
| 29 | 26 | */ |
| 30 | 27 | public function show_primary_options( $args ) { |
| 31 | 28 | $field = $args['field']; |
| 32 | - include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/html-content.php'; | |
| 29 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/html-content.php' ); | |
| 33 | 30 | |
| 34 | 31 | parent::show_primary_options( $args ); |
| 35 | 32 | } |
| 36 | 33 | |
| 37 | - /** | |
| 38 | - * @return string | |
| 39 | - */ | |
| 40 | 34 | public function default_html() { |
| 41 | 35 | return '<div id="frm_field_[id]_container" class="frm_form_field form-field">[description]</div>'; |
| 42 | 36 | } |
| 43 | 37 | |
| @@ -54,18 +48,12 @@ | ||
| 54 | 48 | |
| 55 | 49 | return $html; |
| 56 | 50 | } |
| 57 | 51 | |
| 58 | - /** | |
| 59 | - * @return string | |
| 60 | - */ | |
| 61 | 52 | public function get_container_class() { |
| 62 | 53 | return ' frm_html_container'; |
| 63 | 54 | } |
| 64 | 55 | |
| 65 | - /** | |
| 66 | - * @return string | |
| 67 | - */ | |
| 68 | 56 | protected function include_form_builder_file() { |
| 69 | 57 | return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-html.php'; |
| 70 | 58 | } |
| 71 | 59 | } |