PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.32.1
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.32.1
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-fields / back-end / radio-display-format.php

radio-display-format.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.32.1, at classes/views/frm-fields/back-end/radio-display-format.php

22 lines 608 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Display format option
4 *
5 * @since 5.0.04
6 *
7 * @package Formidable
8 *
9 * @var array $field Field data.
10 * @var array $options Options array.
11 * @var array $args The arguments.
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 die( 'You are not allowed to call this page directly.' );
16 }
17 ?>
18 <div id="frm_display_format_<?php echo intval( $field['id'] ); ?>_container" class="frm_form_field frm-pt-xs frm-pb-2xs">
19 <label for="frm_image_options_<?php echo intval( $field['id'] ); ?>"><?php esc_html_e( 'Display format', 'formidable' ); ?></label>
20 <?php FrmAppHelper::images_dropdown( $args ); ?>
21 </div>
22