# adminify/3.2.4.5/Libs/adminify-framework/fields/image_select/image_select.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 3.2.4.5. 75 lines.

- Page: https://pluginprobe.com/plugins/adminify/3.2.4.5/code/Libs/adminify-framework/fields/image_select/image_select.php
- Raw: https://pluginprobe.com/plugins/adminify/3.2.4.5/raw/Libs/adminify-framework/fields/image_select/image_select.php
- Modified: 2024-07-07T06:45:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/3.2.4.5/code/Libs/adminify-framework/fields/image_select/image_select.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) {
	die; } // Cannot access directly.
/**
 *
 * Field: image_select
 *
 * @since 1.0.0
 * @version 1.0.0
 */
if ( ! class_exists( 'ADMINIFY_Field_image_select' ) ) {
	class ADMINIFY_Field_image_select extends ADMINIFY_Fields {

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

		public function render() {
			$args = wp_parse_args(
				$this->field,
				[
					'multiple' => false,
					'inline'   => false,
					'options'  => [],
				]
			);

			$inline = ( $args['inline'] ) ? ' adminify--inline-list' : '';

			$value = ( is_array( $this->value ) ) ? $this->value : array_filter( (array) $this->value );

			echo wp_kses_post( $this->field_before() );

			if ( ! empty( $args['options'] ) ) {
				echo '<div class="adminify-siblings adminify--image-group' . esc_attr( $inline ) . '" data-multiple="' . esc_attr( $args['multiple'] ) . '">';

				$num = 1;

				foreach ( $args['options'] as $key => $option ) {
					$type    = ( $args['multiple'] ) ? 'checkbox' : 'radio';
					$extra   = ( $args['multiple'] ) ? '[]' : '';
					$active  = ( in_array( $key, $value ) ) ? ' adminify--active' : '';
					$checked = ( in_array( $key, $value ) ) ? ' checked' : '';

					echo '<div class="adminify--sibling adminify--image' . esc_attr( $active ) . '">';
					echo '<figure>';
					  echo '<img src="' . esc_url( $option ) . '" alt="img-' . esc_attr( $num++ ) . '" />';
					  echo '<input type="' . esc_attr( $type ) . '" name="' . esc_attr( $this->field_name( $extra ) ) . '" value="' . esc_attr( $key ) . '"' . wp_kses_post( $this->field_attributes() ) . esc_attr( $checked ) . '/>';
					echo '</figure>';
					echo '</div>';
				}

				echo '</div>';
			}

			echo wp_kses_post( $this->field_after() );
		}

		public function output() {
			$output    = '';
			$bg_image  = [];
			$important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : '';
			$elements  = ( is_array( $this->field['output'] ) ) ? join( ',', $this->field['output'] ) : $this->field['output'];

			if ( ! empty( $elements ) && isset( $this->value ) && $this->value !== '' ) {
				$output = $elements . '{background-image:url(' . $this->value . ')' . $important . ';}';
			}

			$this->parent->output_css .= $output;

			return $output;
		}

	}
}

```
