| 1 |
<?php |
| 2 |
/** |
| 3 |
* Display format option |
| 4 |
* |
| 5 |
* @since 5.0.04 |
| 6 |
* @package Formidable |
| 7 |
* |
| 8 |
* @var array $field Field data. |
| 9 |
* @var array $options Options array. |
| 10 |
* @var array $args The arguments. |
| 11 |
*/ |
| 12 |
|
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
die( 'You are not allowed to call this page directly.' ); |
| 15 |
} |
| 16 |
?> |
| 17 |
<div id="frm_display_format_<?php echo intval( $field['id'] ); ?>_container" class="frm_form_field"> |
| 18 |
<label for="frm_image_options_<?php echo intval( $field['id'] ); ?>"><?php esc_html_e( 'Display format', 'formidable' ); ?></label> |
| 19 |
<?php FrmAppHelper::images_dropdown( $args ); ?> |
| 20 |
</div> |
| 21 |
|