Sindbad~EG File Manager

Current Path : /home/xiedrke/malino/wp-content/plugins/trendz-shop/modules/category/customizer/
Upload File :
Current File : /home/xiedrke/malino/wp-content/plugins/trendz-shop/modules/category/customizer/index.php

<?php

/**
 * Listing Customizer - Category Settings
 */


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

if( !class_exists( 'Trendz_Shop_Listing_Customizer_Category' ) ) {

    class Trendz_Shop_Listing_Customizer_Category {

        private static $_instance = null;

        public static function instance() {

            if ( is_null( self::$_instance ) ) {
                self::$_instance = new self();
            }

            return self::$_instance;

        }

        function __construct() {

            add_filter( 'trendz_woo_category_page_default_settings', array( $this, 'category_page_default_settings' ), 10, 1 );
            add_action( 'customize_register', array( $this, 'register' ), 40);
            add_action( 'trendz_hook_content_before', array( $this, 'woo_handle_product_breadcrumb' ), 10);

        }

        function category_page_default_settings( $settings ) {

            $disable_breadcrumb             = trendz_customizer_settings('wdt-woo-category-page-disable-breadcrumb' );
            $settings['disable_breadcrumb'] = $disable_breadcrumb;

            $show_sorter_on_header              = trendz_customizer_settings('wdt-woo-category-page-show-sorter-on-header' );
            $settings['show_sorter_on_header']  = $show_sorter_on_header;

            $sorter_header_elements             = trendz_customizer_settings('wdt-woo-category-page-sorter-header-elements' );
            $settings['sorter_header_elements'] = (is_array($sorter_header_elements) && !empty($sorter_header_elements) ) ? $sorter_header_elements : array ();

            $show_sorter_on_footer              = trendz_customizer_settings('wdt-woo-category-page-show-sorter-on-footer' );
            $settings['show_sorter_on_footer']  = $show_sorter_on_footer;

            $sorter_footer_elements             = trendz_customizer_settings('wdt-woo-category-page-sorter-footer-elements' );
            $settings['sorter_footer_elements'] = (is_array($sorter_footer_elements) && !empty($sorter_footer_elements) ) ? $sorter_footer_elements : array ();

            return $settings;

        }

        function register( $wp_customize ) {

                /**
                * Option : Disable Breadcrumb
                */
                    $wp_customize->add_setting(
                        TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-disable-breadcrumb]', array(
                            'type' => 'option',
                        )
                    );

                    $wp_customize->add_control(
                        new Trendz_Customize_Control_Switch(
                            $wp_customize, TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-disable-breadcrumb]', array(
                                'type'    => 'wdt-switch',
                                'label'   => esc_html__( 'Disable Breadcrumb', 'trendz-shop'),
                                'section' => 'woocommerce-category-page-section',
                                'choices' => array(
                                    'on'  => esc_attr__( 'Yes', 'trendz-shop' ),
                                    'off' => esc_attr__( 'No', 'trendz-shop' )
                                )
                            )
                        )
                    );


                /**
                 * Option : Show Sorter On Header
                 */
                    $wp_customize->add_setting(
                        TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-show-sorter-on-header]', array(
                            'type' => 'option',
                        )
                    );

                    $wp_customize->add_control(
                        new Trendz_Customize_Control_Switch(
                            $wp_customize, TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-show-sorter-on-header]', array(
                                'type'    => 'wdt-switch',
                                'label'   => esc_html__( 'Show Sorter On Header', 'trendz-shop'),
                                'section' => 'woocommerce-category-page-section',
                                'choices' => array(
                                    'on'  => esc_attr__( 'Yes', 'trendz-shop' ),
                                    'off' => esc_attr__( 'No', 'trendz-shop' )
                                )
                            )
                        )
                    );

                /**
                 * Option : Sorter Header Elements
                 */
                    $wp_customize->add_setting(
                        TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-sorter-header-elements]', array(
                            'type' => 'option',
                        )
                    );

                    $wp_customize->add_control( new Trendz_Customize_Control_Sortable(
                        $wp_customize, TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-sorter-header-elements]', array(
                            'type' => 'wdt-sortable',
                            'label' => esc_html__( 'Sorter Header Elements', 'trendz-shop'),
                            'section' => 'woocommerce-category-page-section',
                            'choices' => apply_filters( 'trendz_category_header_sorter_elements', array(
                                'filter'               => esc_html__( 'Filter - OrderBy', 'trendz-shop' ),
                                'filters_widget_area'  => esc_html__( 'Filters - Widget Area', 'trendz-shop' ),
                                'result_count'         => esc_html__( 'Result Count', 'trendz-shop' ),
                                'pagination'           => esc_html__( 'Pagination', 'trendz-shop' ),
                                'display_mode'         => esc_html__( 'Display Mode', 'trendz-shop' ),
                                'display_mode_options' => esc_html__( 'Display Mode Options', 'trendz-shop' )
                            )),
                        )
                    ));

                /**
                 * Option : Show Sorter On Footer
                 */
                    $wp_customize->add_setting(
                        TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-show-sorter-on-footer]', array(
                            'type' => 'option',
                        )
                    );

                    $wp_customize->add_control(
                        new Trendz_Customize_Control_Switch(
                            $wp_customize, TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-show-sorter-on-footer]', array(
                                'type'    => 'wdt-switch',
                                'label'   => esc_html__( 'Show Sorter On Footer', 'trendz-shop'),
                                'section' => 'woocommerce-category-page-section',
                                'choices' => array(
                                    'on'  => esc_attr__( 'Yes', 'trendz-shop' ),
                                    'off' => esc_attr__( 'No', 'trendz-shop' )
                                )
                            )
                        )
                    );

                /**
                 * Option : Sorter Footer Elements
                 */
                    $wp_customize->add_setting(
                        TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-sorter-footer-elements]', array(
                            'type' => 'option',
                        )
                    );

                    $wp_customize->add_control( new Trendz_Customize_Control_Sortable(
                        $wp_customize, TRENDZ_CUSTOMISER_VAL . '[wdt-woo-category-page-sorter-footer-elements]', array(
                            'type' => 'wdt-sortable',
                            'label' => esc_html__( 'Sorter Footer Elements', 'trendz-shop'),
                            'section' => 'woocommerce-category-page-section',
                            'choices' => apply_filters( 'trendz_category_footer_sorter_elements', array(
                                'filter'               => esc_html__( 'Filter', 'trendz-shop' ),
                                'result_count'         => esc_html__( 'Result Count', 'trendz-shop' ),
                                'pagination'           => esc_html__( 'Pagination', 'trendz-shop' ),
                                'display_mode'         => esc_html__( 'Display Mode', 'trendz-shop' ),
                                'display_mode_options' => esc_html__( 'Display Mode Options', 'trendz-shop' )
                            )),
                        )
                    ));

        }

        function woo_handle_product_breadcrumb() {

            if(is_product_category() && trendz_customizer_settings('wdt-woo-category-page-disable-breadcrumb' )) {
                remove_action('trendz_breadcrumb', 'trendz_breadcrumb_template');
            }

        }

    }

}


if( !function_exists('trendz_shop_listing_customizer_category') ) {
	function trendz_shop_listing_customizer_category() {
		return Trendz_Shop_Listing_Customizer_Category::instance();
	}
}

trendz_shop_listing_customizer_category();

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists