File "index.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce-products-filter/ext/meta_filter/html_types/checkbox/index.php
File size: 6.09 KB
MIME-type: text/x-php
Charset: utf-8

<?php

if (!defined('ABSPATH'))
    die('No direct access allowed');

class WOOF_META_FILTER_CHECKBOX extends WOOF_META_FILTER_TYPE {

    public $type = 'checkbox';
    protected $js_func_name = "woof_init_meta_checkbox";

    public function __construct($key, $options, $woof_settings) {
        parent::__construct($key, $options, $woof_settings);
        $this->value_type = (isset($this->woof_settings['meta_filter'][$this->meta_key]['title'])) ? $this->woof_settings['meta_filter'][$this->meta_key]['title'] : 'string';
        $this->init();
    }

    public function init() {
        if (!isset($this->woof_settings[$this->meta_key]['search_option'])) {
            $this->woof_settings[$this->meta_key]['search_option'] = 0;
        }
        if (!isset($this->woof_settings[$this->meta_key]['search_value'])) {
            $this->woof_settings[$this->meta_key]['search_value'] = "";
        }

        add_action('woof_print_html_type_options_' . $this->meta_key, array($this, 'draw_meta_filter_structure'));
        add_action('woof_print_html_type_' . $this->meta_key, array($this, 'woof_print_html_type_meta'));
        add_action('wp_footer', array($this, 'wp_footer'));
        add_action('wp_head', array($this, 'wp_head'), 9);
        add_filter('woof_extensions_type_index', array($this, 'add_type_index'));
    }

    public function wp_head() {
        WOOF_EXT::$includes['js_lang_custom'][$this->type . "_" . $this->meta_key] = WOOF_HELPER::wpml_translate(null, $this->woof_settings['meta_filter'][$this->meta_key]['title']);
    }

    public function add_type_index($indexes) {
        $indexes[] = '"' . $this->type . "_" . $this->meta_key . '"';
        return $indexes;
    }

    public function wp_footer() {
        wp_enqueue_script('meta-checkbox-js', $this->get_meta_filter_link() . 'js/checkbox.js', array('jquery'), WOOF_VERSION, true);
    }

    public function get_meta_filter_path() {
        return plugin_dir_path(__FILE__);
    }

    public function get_meta_filter_override_path() {
        return get_stylesheet_directory() . DIRECTORY_SEPARATOR . "woof" . DIRECTORY_SEPARATOR . "ext" . DIRECTORY_SEPARATOR . 'meta_filter' . DIRECTORY_SEPARATOR . "html_types" . DIRECTORY_SEPARATOR . $this->type . DIRECTORY_SEPARATOR;
    }

    public function get_meta_filter_link() {
        return plugin_dir_url(__FILE__);
    }

    public function woof_print_html_type_meta() {
        $data['meta_key'] = $this->meta_key;
        $data['options'] = $this->type_options;
        $data['type'] = (isset($this->woof_settings['meta_filter'][$this->meta_key]['type'])) ? $this->woof_settings['meta_filter'][$this->meta_key]['type'] : 'numeric';
        $data['search_option'] = (isset($this->woof_settings[$this->meta_key]['search_option'])) ? $this->woof_settings[$this->meta_key]['search_option'] : 0;
        $data['search_value'] = (isset($this->woof_settings[$this->meta_key]['search_value'])) ? $this->woof_settings[$this->meta_key]['search_value'] : "";
        $data['type'] = (isset($this->woof_settings['meta_filter'][$this->meta_key]['type'])) ? $this->woof_settings['meta_filter'][$this->meta_key]['type'] : 'numeric';

        if (isset($this->woof_settings[$this->meta_key]["show"]) AND $this->woof_settings[$this->meta_key]["show"]) {

            if (file_exists($this->get_meta_filter_override_path() . 'views' . DIRECTORY_SEPARATOR . 'woof.php')) {
                $this->render_html_e($this->get_meta_filter_override_path() . 'views' . DIRECTORY_SEPARATOR . 'woof.php', $data);
            } else {
                $this->render_html_e($this->get_meta_filter_path() . '/views/woof.php', $data);
            }
        }
    }

    protected function draw_additional_options() {
        $data = array();
        $data['key'] = $this->meta_key;
        $data['settings'] = $this->woof_settings;
        $data['type'] = (isset($this->woof_settings['meta_filter'][$this->meta_key]['type'])) ? $this->woof_settings['meta_filter'][$this->meta_key]['type'] : 'numeric';
        $data['search_option'] = (isset($this->woof_settings[$this->meta_key]['search_option'])) ? $this->woof_settings[$this->meta_key]['search_option'] : 0;
        $data['search_value'] = (isset($this->woof_settings[$this->meta_key]['search_value'])) ? $this->woof_settings[$this->meta_key]['search_value'] : "";
        $this->render_html_e($this->get_meta_filter_path() . '/views/additional_options.php', $data);
    }

    public function create_meta_query() {
        $curr_text = $this->check_current_request();
        if ($curr_text) {
            $value = 1;
            $search_option = (isset($this->woof_settings[$this->meta_key]['search_option'])) ? $this->woof_settings[$this->meta_key]['search_option'] : 0;
            if ($search_option == 0) {
                $type = (isset($this->woof_settings['meta_filter'][$this->meta_key]['type'])) ? $this->woof_settings['meta_filter'][$this->meta_key]['type'] : 'numeric';
                $search_value = (isset($this->woof_settings[$this->meta_key]['search_value'])) ? $this->woof_settings[$this->meta_key]['search_value'] : "";
                if ($type != 'numeric' AND!empty($search_value)) {
                    $value = $search_value;
                }
                $meta = array(
                    'key' => $this->meta_key,
                    'value' => $value,
                    'compare' => '=',
                    'type' => $this->value_type,
                );
            } else {
                //EXISTS
                $meta = array(
                    'key' => $this->meta_key,
                    'compare' => 'EXISTS'
                );
            }
            return $meta;
        } else {
            return false;
        }
    }

    protected function check_current_request() {

        $request = woof()->get_request_data();
        if (isset($request[$this->type . "_" . $this->meta_key]) AND $request[$this->type . "_" . $this->meta_key]) {
            return $request[$this->type . "_" . $this->meta_key];
        }
        return false;
    }

    public function get_js_func_name() {
        return $this->js_func_name;
    }

    public static function get_option_name($value, $key = NULL) {
        return false;
    }

}