File "image-selector.php"

Full path: /home/bud/public_html/swamp/back-end-20251126092041/image-selector.php
File size: 1.76 KB
MIME-type: text/x-php
Charset: utf-8

<?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>