# formidable/5.1/classes/views/frm-fields/back-end/radio-display-format.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.1/code/classes/views/frm-fields/back-end/radio-display-format.php
- Raw: https://pluginprobe.com/plugins/formidable/5.1/raw/classes/views/frm-fields/back-end/radio-display-format.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/5.1/code/classes/views/frm-fields/back-end/radio-display-format.php#L10-L20`.

```php
<?php
/**
 * Display format option
 *
 * @since 5.0.04
 * @package Formidable
 *
 * @var array $field   Field data.
 * @var array $options Options array.
 * @var array $args    The arguments.
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div id="frm_display_format_<?php echo intval( $field['id'] ); ?>_container" class="frm_form_field">
	<label for="frm_image_options_<?php echo intval( $field['id'] ); ?>"><?php esc_html_e( 'Display format', 'formidable' ); ?></label>
	<?php FrmAppHelper::images_dropdown( $args ); ?>
</div>

```
