File "image_select.php"

Full path: /home/webide/saman-clinic.ir/wp-content/plugins/codevz-plus/admin/fields/image_select/image_select.php
File size: 1.52 KB
MIME-type: text/x-php
Charset: utf-8

<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
 *
 * Field: Image Select
 *
 * @since 1.0.0
 * @version 1.0.0
 *
 */
if( ! class_exists( 'Codevz_Field_image_select' ) ) {
  class Codevz_Field_image_select extends Codevz_Fields {

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

    public function output() {

      $input_type  = ( ! empty( $this->field['radio'] ) ) ? 'radio' : 'checkbox';
      $input_attr  = ( ! empty( $this->field['multi_select'] ) ) ? '[]' : '';

      echo $this->element_before();
      echo ( empty( $input_attr ) ) ? '<div class="codevz-field-image-selector">' : '';

      if( isset( $this->field['options'] ) ) {
        $options  = $this->field['options'];

        $class = '';

        foreach ( $options as $key => $value ) {

          if ( ! $key ) {

            continue;

          } else if ( $key === 'pro' ) {

            $class = 'xtra-image-select-pro';

          } else {

            echo '<label class="' . $class . '"><input' . ( $class ? 'disabled="disabled"' : '' ) . ' type="'. $input_type .'" name="'. $this->element_name( $input_attr ) .'" value="'. $key .'"'. $this->element_class() . $this->element_attributes( $key ) . $this->checked( $this->element_value(), $key ) .'/><img src="'. $value .'" alt="'. $key .'" /></label>';

          }

        }

      }

      echo ( empty( $input_attr ) ) ? '</div>' : '';
      echo $this->element_after();

    }

  }
}