# formidable/6.16.1/classes/views/frm-fields/back-end/radio-images.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.16.1. 22 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.16.1/code/classes/views/frm-fields/back-end/radio-images.php
- Raw: https://pluginprobe.com/plugins/formidable/6.16.1/raw/classes/views/frm-fields/back-end/radio-images.php
- Modified: 2021-09-16T18:46:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/6.16.1/code/classes/views/frm-fields/back-end/radio-images.php#L10-L20`.

```php
<?php
/**
 * View file for image options of Radio or Checkbox field.
 *
 * @package Formidable
 *
 * @var array $args Arguments. Contains `field`, `display` and `values`.
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

FrmFieldsHelper::show_radio_display_format( $args['field'] );
?>
<p class="frm6 frm_form_field frm_noallow frm_show_upgrade" data-upgrade="<?php esc_attr_e( 'Separate Values', 'formidable' ); ?>" data-message="<?php esc_attr_e( 'Add a separate value to use for calculations, email routing, saving to the database, and many other uses. The option values are saved while the option labels are shown in the form.', 'formidable' ); ?>" data-medium="builder" data-content="separate-values">
	<label>
		<input type="checkbox" value="1" disabled="disabled" />
		<?php esc_html_e( 'Use separate values', 'formidable' ); ?>
	</label>
</p>

```
