Current File : /home/digitaw/www/wp-content/updraft/themes-old/one-page-express/customizer/customizer-controls.php
<?php

namespace OnePageExpress;

class BaseControl extends \WP_Customize_Control
{
    protected $data = null;

    public function __construct($manager, $id, $data = array())
    {
        $this->data = $data;
        parent::__construct($manager, $id, $data);
        $this->init();
    }

    public function init()
    {
        return true;
    }
}

class Activate_Companion_Control extends BaseControl
{
    public function render_content()
    {
        $data  = $this->data;
        $label = $data['label'];
        $msg   = $data['msg'];
        $slug  = $data['slug'];
        ?>
        <div class="one-page-express-enable-companion">
            <?php
            printf('<p>%1$s</p>', $msg);
            printf('<a class="%1$s button" href="%2$s">%3$s</a>', "activate", esc_url($this->get_link($slug)), $label);
            ?>
        </div>
        <?php
    }

    public function get_link($slug = false)
    {
        $tgmpa = \TGM_Plugin_Activation::get_instance();
        $path  = $tgmpa->plugins[$slug]['file_path'];

        return add_query_arg(array(
            'action'        => 'activate',
            'plugin'        => rawurlencode($path),
            'plugin_status' => 'all',
            'paged'         => '1',
            '_wpnonce'      => wp_create_nonce('activate-plugin_' . $path),
        ), network_admin_url('plugins.php'));
    }
}

class Install_Companion_Control extends BaseControl
{
    public function render_content()
    {
        $data  = $this->data;
        $label = $data['label'];
        $msg   = $data['msg'];
        $slug  = $data['slug'];
        ?>
        <div class="one-page-express-enable-companion">
            <?php
            printf('<p>%1$s</p>', $msg);
            printf('<a class="%1$s button" href="%2$s">%3$s</a>', "install-now", esc_url($this->get_link($slug)), $label);
            ?>
        </div>
        <?php
    }

    public function get_link($slug = false)
    {
        return add_query_arg(
            array(
                'action'   => 'install-plugin',
                'plugin'   => $slug,
                '_wpnonce' => wp_create_nonce('install-plugin_' . $slug),
            ),
            network_admin_url('update.php')
        );
    }
}

class BackgroundTypesControl extends BaseControl
{

    public function init()
    {
        $this->type = 'select';
        foreach ($this->data['choices'] as $key => $value) {
            $this->choices[$key] = $value['label'];
        }
    }

    public function render_content()
    {
        parent::render_content(); ?>
        <script>
            jQuery(document).ready(function ($) {
                $('[<?php $this->link(); ?>]').data('controlBinds', <?php echo json_encode($this->data['choices']) ?>);

                function updateControlBinds() {
                    var controlBinds = $('[<?php $this->link(); ?>]').data('controlBinds');
                    var currentType = $('[<?php $this->link(); ?>]').val();

                    for (var type in controlBinds) {
                        var controls = controlBinds[type].control;
                        if (!_.isArray(controls)) {
                            controls = [controls];
                        }

                        for (var i = 0; i < controls.length; i++) {
                            var control = wp.customize.control(controls[i]);

                            if (control) {
                                var container = control.container.eq(0);
                                if (type === currentType) {
                                    container.show();
                                } else {
                                    container.hide();
                                }
                            }

                        }
                    }
                }

                wp.customize('<?php echo $this->settings['default']->id ?>').bind(updateControlBinds);
                $('[<?php $this->link(); ?>]').change(updateControlBinds);
                updateControlBinds();
            });
        </script>
        <?php
    }
}

class RowsListControl extends BaseControl
{

    public function enqueue()
    {

        $jsUrl = get_template_directory_uri() . "/customizer/js/";
        wp_enqueue_script('one-page-express-row-list-control', $jsUrl . "/row-list-control.js");
    }

    public function render_content()
    {
        ?>
        <div <?php $this->dateSelection(); ?> data-type="row-list-control" data-apply="<?php echo $this->data['type'] ?>" class="list-holder">
            <?php ($this->data['type'] === "mod_changer") ? $this->renderModChanger() : $this->renderPresetsChanger() ?>
        </div>

        <?php $proMessage = isset($this->data['pro_message']) ? $this->data['pro_message'] : false; ?>

        <?php if ($proMessage && apply_filters('show_inactive_plugin_infos', true)): ?>
        <div class="list-control-pro-message">
            <?php echo $proMessage; ?>
        </div>
    <?php endif; ?>

        <?php
    }

    public function dateSelection()
    {
        $data = 'data-selection="radio"';

        if (isset($this->data['selection'])) {
            $data = 'data-selection="' . $this->data['selection'] . '"';
        }

        echo $data;
    }

    public function renderPresetsChanger()
    {
        $items      = $this->getSourceData();
        $optionsVar = uniqid('cp_' . $this->id . '_'); ?>
        <script>
            var <?php echo $optionsVar ?> =
            {
            }
            ;
        </script>
        <ul <?php $this->dataAttrs(); ?> class="list rows-list from-theme">
            <?php foreach ($items as $item):
                ?>
                <script>
                    <?php $settingsData = $this->filterArrayDefaults($item['settings']); ?>
                        <?php echo $optionsVar ?>["<?php echo $item['id']; ?>"] = <?php echo json_encode($settingsData) ?>;
                </script>

            <?php $proOnly = isset($item['pro-only']) ? "pro-only" : ""; ?>


                <li class="item available-item  <?php echo $proOnly; ?>" data-varname="<?php echo $optionsVar ?>" data-id="<?php echo $item['id']; ?>">
                    <div class="image-holder" style="background-position:center center;background-image:url()">
                        <img src="<?php echo $item['thumb']; ?>?cloudpress-companion?v=1"/>
                    </div>

                    <?php if ($proOnly) : ?>
                        <span data-id="<?php echo $item['id']; ?>" data-pro-only="true" class="available-item-hover-button" <?php $this->getSettingAttr(); ?> >
                                    <?php _e('Available in PRO', 'one-page-express') ?>
                                </span>
                    <?php else: ?>
                        <span data-id="<?php echo $item['id']; ?>" class="available-item-hover-button" <?php $this->getSettingAttr(); ?> >
                                <?php echo $this->data['insertText']; ?>
                                </span>
                    <?php endif; ?>

                    <div title="Section is already in page" class="checked-icon"></div>
                    <div title="Pro Only" class="pro-icon"></div>
                    <span class="item-preview" data-preview="<?php echo $item['preview']; ?>">
                            <i class="icon"></i>
                        </span>
                    <?php if (isset($item['description'])): ?>
                        <span class="description"> <?php echo $item['description']; ?> </span>
                    <?php endif; ?>
                </li>
            <?php endforeach; ?>
        </ul>
        <input type="hidden" value="<?php echo esc_attr($this->value()); ?>" <?php $this->link(); ?> />

        <?php ;
    }

    public function getSourceData()
    {
        return $this->data['dataSource'];
    }

    public function dataAttrs()
    {
        $data = 'data-name="' . $this->id . '"';

        echo $data;
    }

    public function filterArrayDefaults($data)
    {
        foreach ($data as $key => $value) {
            $data[$key] = $this->filterDefault($value);
        }

        return $data;
    }

    public function filterDefault($data)
    {
        if (is_array($data)) {
            $data = $this->filterArrayDefaults($data);
        } else {
            $data = str_replace('[tag_companion_uri]', get_template_directory_uri(), $data);
            $data = str_replace('[tag_theme_uri]', get_template_directory_uri(), $data);
            $data = str_replace('[tag_style_uri]', get_stylesheet_directory_uri(), $data);
        }

        return $data;
    }

    public function getSettingAttr($setting_key = 'default')
    {
        if ( ! isset($this->settings[$setting_key])) {
            return '';
        }

        echo 'data-setting-link="' . esc_attr($this->settings[$setting_key]->id) . '"';
    }
}


class ColorBoxesControl extends BaseControl
{
    public function init()
    {
        $this->type = 'radio';
    }


    public function render()
    {
        $id    = 'customize-control-' . str_replace(array('[', ']'), array('-', ''), $this->id);
        $class = 'customize-control customize-control-' . $this->type; ?>

        <li id="<?php echo esc_attr($id); ?>" class="<?php echo esc_attr($class); ?> cp-color-boxes">
            <?php $this->render_content(); ?>
        </li>
        <?php

    }

    public function render_content()
    {
        if (empty($this->choices)) {
            return;
        }

        $name = '_customize-radio-' . $this->id;

        if ( ! empty($this->label)) : ?>
            <span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
        <?php endif;
        if ( ! empty($this->description)) : ?>
            <span class="description customize-control-description"><?php echo $this->description; ?></span>
        <?php endif;

        foreach ($this->choices as $value) : ?>
            <label>
                <div class="color-container" style="background:<?php echo $value; ?>;">
                    <input type="radio" value="<?php echo esc_attr($value); ?>"
                           name="<?php echo esc_attr($name); ?>" <?php $this->link();
                    checked($this->value(), $value); ?> />
                    <span class="check-icon"></span>
                </div>
            </label>
        <?php
        endforeach;
    }
}

class CssClassBoxesControl extends ColorBoxesControl
{
    public function init()
    {
        $this->type               = 'radio';
        $this->data['bigPreview'] = isset($this->data['bigPreview']) && $this->data['bigPreview'];
    }


    public function render()
    {
        $id    = 'customize-control-' . str_replace(array('[', ']'), array('-', ''), $this->id);
        $class = 'customize-control customize-control-' . $this->type; ?>

        <li id="<?php echo esc_attr($id); ?>" class="<?php echo esc_attr($class); ?> cp-color-boxes">
            <?php $this->render_content(); ?>
        </li>
        <?php

    }


    public function render_content()
    {
        if (empty($this->choices)) {
            return;
        }

        $name = '_customize-radio-' . $this->id;

        if ( ! empty($this->label)) : ?>
            <span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
        <?php endif;
        if ( ! empty($this->description)) : ?>
            <span class="description customize-control-description"><?php echo $this->description; ?></span>
        <?php endif;

        foreach ($this->choices as $value) : ?>
            <label title="<?php echo esc_attr($value); ?>">
                <div class="css-class-container <?php echo $value; ?>">
                    <input type="radio" class="<?php echo($this->data['bigPreview'] ? "big" : "") ?>" value="<?php echo esc_attr($value); ?>"
                           name="<?php echo esc_attr($name); ?>" <?php $this->link();
                    checked($this->value(), $value); ?> />
                </div>
            </label>
        <?php
        endforeach;
    }
}

class Kirki_Controls_Radio_HTML_Control extends \Kirki_Controls_Radio_Image_Control
{
    public $type = 'radio-html';

    protected function content_template()
    {
        ?>
        <# if ( data.tooltip ) { #>
        <a href="#" class="tooltip hint--left" data-hint="{{ data.tooltip }}"><span class='dashicons dashicons-info'></span></a>
        <# } #>
        <label class="customizer-text">
            <# if ( data.label ) { #>
            <span class="customize-control-title">{{{ data.label }}}</span>
            <# } #>
            <# if ( data.description ) { #>
            <span class="description customize-control-description">{{{ data.description }}}</span>
            <# } #>
        </label>
        <div id="input_{{ data.id }}" class="image">
            <# for ( key in data.choices ) { #>
            <input {{{ data.inputAttrs }}} class="image-select" type="radio" value="{{ key }}" name="_customize-radio-{{ data.id }}" id="{{ data.id }}{{ key }}" {{{ data.link }}}<# if ( data.value === key ) { #> checked="checked" <# } #>>
            <label for="{{ data.id }}{{ key }}">
                <div class="{{ data.choices[ key ] }} image-clickable"></div>
            </label>
            </input>
            <# } #>
        </div>
        <?php
    }
}


class Kirki_Controls_Separator_Control extends \WP_Customize_Control
{
    public $type = 'sectionseparator';

    public function content_template()
    {
        ?>
        <# if ( data.tooltip ) { #>
        <a href="#" class="tooltip hint--left" data-hint="{{ data.tooltip }}"><span class='dashicons dashicons-info'></span></a>
        <# } #>
        <div class="one-page-express-separator">
            <# if ( data.label ) { #>
            <span class="customize-control-title">{{{ data.label }}}</span>
            <# } #>
        </div>
        <?php
    }
}


class Info_Control extends \WP_Customize_Control
{
    public $type = 'ope-info';


    public function render_content()
    {

        $proLink   = "https://extendthemes.com/go/one-page-express-upgrade";
        $proText   = __('Check all PRO features', 'one-page-express');
        $proButton = "<br/><a href='$proLink' class='button button-small button-orange upgrade-to-pro' target='_blank'>$proText</a>";

        $label = str_replace("@BTN@", $proButton, $this->label);
        ?>
        <p><?php echo $label ?></p>
        <?php
    }
}

class Info_PRO_Control extends Info_Control
{
    public $type = 'ope-info-pro';


    protected function render()
    {
        if ( ! $this->active_callback()) {
            echo "";

            return;
        }
        parent::render();
    }


    public function active_callback()
    {
        $active = apply_filters('ope_show_info_pro_messages', true);

        if ($active && defined('OPE_PRO_THEME_REQUIRED_PHP_VERSION')) {
            $active = false;
        }

        return $active;
    }

}

class Info_PRO_Section extends \WP_Customize_Section
{
    public $type = "themes";

    protected function render()
    {
        if ( ! $this->active_callback()) {
            echo "";

            return;
        }

        $classes = 'try-pro accordion-section control-section control-section-' . $this->type;
        ?>
        <li id="accordion-section-<?php echo esc_attr($this->id); ?>" class="<?php echo esc_attr($classes); ?>">
            <div class="ope-pro-header accordion-section-title">
                <a href="https://extendthemes.com/go/one-page-express-upgrade" target="_blank" class="button"><?php _e("Upgrade to PRO", 'one-page-express') ?></a>
            </div>
        </li>

        <?php ;
    }

    public function active_callback()
    {
        $active = apply_filters('ope_show_info_pro_messages', true);

        if ($active && defined('OPE_PRO_THEME_REQUIRED_PHP_VERSION')) {
            $active = false;
        }

        return $active;
    }

}


class FontAwesomeIconControl extends \Kirki_Customize_Control
{
    public $type = 'font-awesome-icon-control';
    public $button_label = '';


    public function __construct($manager, $id, $args = array())
    {
        $this->button_label = __('Change Icon', 'one-page-express');

        parent::__construct($manager, $id, $args);
    }


    public function enqueue()
    {
        wp_enqueue_style('font-awesome', get_template_directory_uri() . '/assets/font-awesome/font-awesome.min.css');
        wp_enqueue_style('font-awesome-media-tab', get_template_directory_uri() . "/customizer/css/fa-tab.css", array('media-views'));
        wp_enqueue_script('font-awesome-media-tab', get_template_directory_uri() . "/customizer/js/fa-tab.js", array('media-views'));
        wp_enqueue_script('font-awesome-icon-control', get_template_directory_uri() . "/customizer/js/font-awesome-icon-control.js");
        wp_localize_script('font-awesome-icon-control', 'ficTexts', array(
            'media_title'        => __('Select FontAwesome Icon', 'one-page-express'),
            'media_button_label' => __('Choose Icon', 'one-page-express'),
        ));
    }


    public function to_json()
    {
        parent::to_json();
        $this->json['button_label'] = $this->button_label;
    }


    protected function content_template()
    {
        ?>
        <label for="{{ data.settings['default'] }}-button">
            <# if ( data.label ) { #>
            <span class="customize-control-title">{{ data.label }}</span>
            <# } #>
            <# if ( data.description ) { #>
            <span class="description customize-control-description">{{{ data.description }}}</span>
            <# } #>
        </label>

        <div class="fic-icon-container">
            <div class="fic-icon-preview">
                <i class="fa {{data.value}}"></i>
                <input type="hidden" value="{{ data.value }}" name="_customize-input-{{ data.id }}" {{{ data.link }}}/>
            </div>
            <div class="fic-controls">
                <button type="button" class="button upload-button control-focus" id="_customize-button-{{ data.id }}">{{{ data.button_label }}}</button>
            </div>
        </div>
        <?php

    }
}


class FrontPageSection extends \WP_Customize_Section
{
    protected function render()
    {
        ?>
        <li id="accordion-section-<?php echo esc_attr($this->id); ?>" class="accordion-section control-section control-section-<?php echo esc_attr($this->type); ?> companion-needed-section">
            <style>
                #accordion-section-<?php echo esc_attr($this->id); ?> {
                    display: list-item !important;
                }

            </style>
            <h3 class="accordion-section-title" tabindex="0">
                <?php echo esc_html($this->title); ?>
                <span class="screen-reader-text"><?php _e('Press return or enter to open this section', 'one-page-express'); ?></span>
            </h3>

            <div class="sections-list-reorder">
                <span class="customize-control-title"><?php _e('Manage page sections', 'one-page-express'); ?></span>
                <ul id="page_full_rows" class="list list-order">
                    <li class="empty"><?php _e('No section added', 'one-page-express') ?></li>
                </ul>
                <div class="add-section-container">
                    <a class="cp-add-section button-primary"><?php _e('Add Section', 'one-page-express'); ?></a>
                </div>
            </div>
        </li>
        
        <style>
            #accordion-section-<?php echo esc_attr($this->id);?> h3.accordion-section-title:after {
                display: none;
            }
        </style>
        <?php

    }
}