<?php /**
 * Redux Framework is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * any later version.
 *
 * Redux Framework is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Redux Framework. If not, see <http://www.gnu.org/licenses/>.
 *
 * @package     ReduxFramework
 * @subpackage  Field_Images
 * @author      Daniel J Griffiths (Ghost1227)
 * @author      Dovy Paukstys
 * @version     3.0.0
 */

// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

// Don't duplicate me!
if( !class_exists( 'ReduxFramework_image_select' ) ) {

    /**
     * Main ReduxFramework_image_select class
     *
     * @since       1.0.0
     */
    class ReduxFramework_image_select extends ReduxFramework {
    
        /**
         * Field Constructor.
         *
         * Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
         *
         * @since       1.0.0
         * @access      public
         * @return      void
         */
        public function __construct( $field = array(), $value = '', $parent = '' ) {
        
            parent::__construct( $parent-&gt;sections, $parent-&gt;args, $parent-&gt;extra_tabs );

            $this-&gt;field = $field;
            $this-&gt;value = $value;
        
        }

        /**
         * Field Render Function.
         *
         * Takes the vars and outputs the HTML for the field in the settings
         *
         * @since       1.0.0
         * @access      public
         * @return      void
         */
        public function render() {
                
            if( !empty( $this-&gt;field['options'] ) ) {

                echo '<ul class="redux-image-select">';
            
                foreach( $this-&gt;field['options'] as $k =&gt; $v ) {

                    if( !is_array( $v ) )
                        $v = array( 'img' =&gt; $v );

                    if( !isset( $v['title'] ) )
                        $v['title'] = '';

                    if( !isset( $v['alt'] ) )
                        $v['alt'] = $v['title'];

                    $style = '';

                    if( !empty( $this-&gt;field['width'] ) ) {
                        $style .= 'width: ' . $this-&gt;field['width'];
                    
                        if( is_numeric( $this-&gt;field['width'] ) )
                            $style .= 'px';
                    
                        $style .= ';';
                    }

                    if( !empty( $this-&gt;field['height'] ) ) {
                        $style .= 'height: ' . $this-&gt;field['height'];

                        if( is_numeric( $this-&gt;field['height'] ) )
                            $style .= 'px';

                        $style .= ';';
                    }
                    $style .= " max-width: 100%; ";

                    $theValue = $k;
                    if( !empty( $this-&gt;field['tiles'] ) &amp;&amp; $this-&gt;field['tiles'] == true ) {
                        $theValue = $v['img'];
                    }

                    $selected = ( checked( $this-&gt;value, $theValue, false ) != '' ) ? ' redux-image-select-selected' : '';

                    $presets = '';
                    $this-&gt;field['class'] .= ' noUpdate ';
                    if( !empty( $this-&gt;field['presets'] ) &amp;&amp; $this-&gt;field['presets'] &amp;&amp; !empty( $v['presets'] ) ) {

                        if( !is_array( $v['presets'] ) )
                            $v['presets'] = json_decode( $v['presets'], true );

                        $v['presets']['redux-backup'] = 1;

                        $presets = ' data-presets="' . htmlspecialchars( json_encode( $v['presets'] ), ENT_QUOTES, 'UTF-8' ) . '"';
                        $selected = '';
                        $this-&gt;field['class'] .= 'redux-presets';
                    }               

                    echo '<li class="redux-image-select">';
                    echo '<label class="' . $selected . ' redux-image-select-' . $this-&gt;field['id'] . '" for="' . $this-&gt;field['id'] . '_' . (array_search( $k, array_keys( $this-&gt;field['options'] ) ) + 1) . '">';

                    echo '<input type="radio" class="' . $this-&gt;field['class'] . '" id="' . $this-&gt;field['id'] . '_' . (array_search( $k, array_keys( $this-&gt;field['options'] ) ) + 1) . '" name="' . $this-&gt;args['opt_name'] . '[' . $this-&gt;field['id'] . ']" value="' . $theValue . '" . checked>value, $theValue, false ) . $presets . '/&gt;';
                    
                    if( !empty( $this-&gt;field['tiles'] ) &amp;&amp; $this-&gt;field['tiles'] == true ) {
                        echo '<span class="tiles" style="background-image: url(' . $v['img'] . ');" rel="'.$v['img'].'">&nbsp;</span>';
                    } else {
                        echo '<img src="'%20.%20%24v%5B'img'%5D%20.%20'" alt="' . $v['alt'] . '" style="' . $style . '" .>';
                    }
                
                    if ( $v['title'] != '' )
                        echo '<br><span>' . $v['title'] . '</span>';  

                    echo '</label>';
                    echo '</li>';
                }
                
                echo '</ul>';       

            }


        }
    
        /**
         * Enqueue Function.
         *
         * If this field requires any scripts, or css define this function and register/enqueue the scripts/css
         *
         * @since       1.0.0
         * @access      public
         * @return      void
         */
        public function enqueue() {
        
            wp_enqueue_script(
                'redux-field-image-select-js', 
                ReduxFramework::$_url . 'inc/fields/image_select/field_image_select.min.js', 
                array( 'jquery' ),
                time(),
                true
            );

            wp_enqueue_script('jquery-tipsy');

            wp_enqueue_style(
                'redux-field-image-select-css', 
                ReduxFramework::$_url . 'inc/fields/image_select/field_image_select.css',
                time(),
                true
            );
        
        }
    }
}