multiple_input_html(); } protected function include_form_builder_file() { return $this->include_front_form_file(); } /** * Get the type of field being displayed. * * @since 4.02.01 * @return array */ public function displayed_field_type( $field ) { return array( $this->type => true, ); } protected function extra_field_opts() { $form_id = $this->get_field_column( 'form_id' ); return array( 'align' => FrmStylesController::get_style_val( 'radio_align', ( empty( $form_id ) ? 'default' : $form_id ) ), ); } protected function new_field_settings() { return array( 'options' => serialize( array( __( 'Option 1', 'formidable' ), __( 'Option 2', 'formidable' ), ) ), ); } /** * @since 4.06 */ protected function show_priority_field_choices( $args = array() ) { include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/radio-images.php' ); } protected function include_front_form_file() { return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/front-end/radio-field.php'; } protected function show_readonly_hidden() { return true; } }