Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
back-end-20251126093315
:
image-selector.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } ?> <div class="frm_image_preview_wrapper frm_option_key field_<?php echo esc_attr( $field['id'] ); ?>_image_id <?php echo esc_attr( $field['image_options'] ? '' : ' frm_hidden ' ); ?>"> <input type="hidden" class="frm_image_id" data-frmchange="trim" name="field_options[options_<?php echo esc_attr( $field['id'] ); ?>][<?php echo esc_attr( $opt_key ); ?>][image]" id="field_image_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>" value="<?php echo esc_attr( empty( $image['id'] ) ? '0' : $image['id'] ); ?>" placeholder="<?php esc_attr_e( 'Image ID', 'formidable-pro' ); ?>" /> <div class="frm_image_preview_frame <?php echo ( empty( $image['url'] ) ? 'frm_hidden' : '' ); ?>"> <div class="frm_image_styling_frame"> <img id="frm_image_preview_<?php echo esc_attr( $field['id'] . '-' . $opt_key ); ?>" src="<?php echo esc_attr( empty( $image['url'] ) ? '' : $image['url'] ); ?>" class="frm_image_preview" alt="<?php echo esc_attr( $opt ); ?>" /> <div class="frm_image_data"> <div class="frm_image_preview_title"><?php echo esc_attr( $image['filename'] ); ?></div> <div href="javascript:void(0)" class="frm_remove_image_option" title="<?php esc_attr_e( 'Remove image', 'formidable-pro' ); ?>"> <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_delete_icon' ); ?> <?php esc_attr_e( 'Delete', 'formidable-pro'); ?> </div> </div> </div> </div> <button type="button" class="frm_choose_image_box frm_button frm_no_style_button<?php echo ( empty( $image['url'] ) ? '' : ' frm_hidden' ); ?>"> <?php FrmAppHelper::icon_by_class( 'frm_icon_font frm_upload_icon' ); ?> <?php esc_attr_e( 'Upload image', 'formidable-pro' ); ?> </button> </div>