NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-pro
/
modules
/
breadcrumb
/
customizer
/
settings
/
Name
Size
Perms
Actions
📄 color.php
6,462 B
0644
Edit
|
Chmod
|
Delete
Editing: color.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzProBreadCrumbColor' ) ) { class TrendzProBreadCrumbColor { private static $_instance = null; private $settings = null; private $selector = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } function __construct() { add_filter( 'trendz_pro_customizer_default', array( $this, 'default' ) ); add_action( 'customize_register', array( $this, 'register' ), 15); } function default( $option ) { $option['breadcrumb_title_color'] = ''; $option['breadcrumb_text_color'] = ''; $option['breadcrumb_link_color'] = ''; $option['breadcrumb_link_hover_color'] = ''; $option['breadcrumb_background'] = array( 'background-color' => "var(--wdtTertiaryColor)", 'gradient-background-color' => "", 'background-repeat' => 'repeat', 'background-position' => 'center center', 'background-size' => 'cover', 'background-attachment' => 'inherit' ); $option['breadcrumb_overlay_bg_color'] = 0; return $option; } function register( $wp_customize ) { /** * Option : Breadcrumb Title Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_title_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_title_color]', array( 'label' => esc_html__( 'Title Color', 'trendz-pro' ), 'section' => 'site-breadcrumb-color-section', ) ) ); /** * Option : Breadcrumb Text Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_text_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_text_color]', array( 'label' => esc_html__( 'Text Color', 'trendz-pro' ), 'section' => 'site-breadcrumb-color-section', ) ) ); /** * Option : Breadcrumb Link Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_link_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_link_color]', array( 'label' => esc_html__( 'Link Color', 'trendz-pro' ), 'section' => 'site-breadcrumb-color-section', ) ) ); /** * Option : Breadcrumb Link Hover Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_link_hover_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_link_hover_color]', array( 'label' => esc_html__( 'Link Hover Color', 'trendz-pro' ), 'section' => 'site-breadcrumb-color-section', ) ) ); /** * Option : Breadcrumb Background */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_background]', array( 'type' => 'option', ) ); $wp_customize->add_control( new Trendz_Customize_Control_Background( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_background]', array( 'type' => 'wdt-background', 'section' => 'site-breadcrumb-color-section', 'label' => esc_html__( 'Background', 'trendz-pro' ), ) ) ); /** * Option : Overlay Background Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_overlay_bg_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_overlay_bg_color]', array( 'type' => 'checkbox', 'section' => 'site-breadcrumb-color-section', 'label' => esc_html__( 'Overlay Background Color', 'trendz-pro' ), ) ); /** * Option : Overlay Gradient Color */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_background_gradient_color]', array( 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_background_gradient_color]', array( 'label' => esc_html__( 'Overlay Gradient Color', 'trendz-pro' ), 'section' => 'site-breadcrumb-color-section', ) ) ); } } } TrendzProBreadCrumbColor::instance();
Cancel