HEX
Server: LiteSpeed
System: Linux starfruit.7ho.st 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
User: edtir (1699)
PHP: 7.4.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/edtir/public_html/metal-sanat.com/wp-content/plugins/codevz-plus/admin/fields/image/image.php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
 *
 * Field: Image
 *
 * @since 1.0.0
 * @version 1.0.0
 *
 */
if( ! class_exists( 'Codevz_Field_Image' ) ) {
  class Codevz_Field_Image extends Codevz_Fields {

    public function __construct( $field, $value = '', $unique = '', $where = '' ) {
      parent::__construct( $field, $value, $unique, $where );
    }

    public function output(){

      echo $this->element_before();

      $preview = '';
      $value   = $this->element_value();
      $add     = ( ! empty( $this->field['add_title'] ) ) ? $this->field['add_title'] : esc_html__( 'Add Image', 'codevz' );
      $hidden  = ( empty( $value ) ) ? ' hidden' : '';

      if( ! empty( $value ) ) {
        $attachment = wp_get_attachment_image_src( $value, 'thumbnail' );
        $preview    = $attachment[0];
      }

      echo '<div class="codevz-image-preview'. $hidden .'">';
      echo '<div class="codevz-image-inner"><i class="fa fa-times codevz-image-remove"></i><img src="'. $preview .'" alt="preview" /></div>';
      echo '</div>';

      echo '<a href="#" class="button button-primary codevz-button">'. $add .'</a>';
      echo '<input type="text" name="'. $this->element_name() .'" value="'. $this->element_value() .'"'. $this->element_class() . $this->element_attributes() .'/>';

      echo $this->element_after();

    }

  }
}