File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/image_select.php.tar
httpdocs/wp-content/themes/vadimarketv4/inc/temapanel/fields/image_select/image_select.php 0000644 00000002277 15156347341 0034401 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
*
* Field: Image Select
*
* @since 1.0.0
* @version 1.0.0
*
*/
class CSFramework_Option_image_select extends CSFramework_Options {
public function __construct( $field, $value = '', $unique = '' ) {
parent::__construct( $field, $value, $unique );
}
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="cs-field-image-select">' : '';
if( isset( $this->field['options'] ) ) {
$options = $this->field['options'];
foreach ( $options as $key => $value ) {
echo '<label><input 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();
}
}