File: //proc/thread-self/cwd/wp-content/plugins/codevz-plus/admin/functions/customize.php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
* WP Customize custom panel
*/
if( ! class_exists( 'WP_Customize_Panel_Codevz' ) ) {
class WP_Customize_Panel_Codevz extends WP_Customize_Panel {
public $type = 'csf';
}
}
/**
* WP Customize custom section
*/
if( ! class_exists( 'WP_Customize_Section_Codevz' ) ) {
class WP_Customize_Section_Codevz extends WP_Customize_Section {
public $type = 'csf';
}
}
/**
* WP Customize custom control
*/
if( ! class_exists( 'WP_Customize_Control_Codevz' ) ) {
class WP_Customize_Control_Codevz extends WP_Customize_Control {
public $type = 'csf';
public $field = '';
public $unique = '';
public function render_content() {
$field_id = ( ! empty( $this->field['id'] ) ) ? $this->field['id'] : '';
$complex = apply_filters( 'codevz/customize/complex', array( 'checkbox', 'sorter', 'image_select', 'background', 'typography', 'fieldset', 'group', 'repeater', 'tabbed', 'accordion' ) );
$custom = ( ! empty( $this->field['customizer'] ) ) ? true : false;
$is_complex = ( in_array( $this->field['type'], $complex ) ) ? true : false;
if( ! $is_complex && ! $custom ) {
$this->field['attributes']['data-customize-setting-link'] = $this->settings['default']->id;
}
$this->field['echo'] = true;
$this->field['name'] = $this->settings['default']->id;
if ( $this->field['type'] === 'wysiwyg' ) {
$this->field['_notice'] = true;
}
if ( $is_complex || $custom ) {
$this->field['wrap_class'] = 'codevz-customize-complex';
$this->field['wrap_attrs'] = 'data-unique-id="' . esc_attr( $this->unique ) . '" data-option-id="' . esc_attr( $field_id ) . '"';
}
codevz_add_field( $this->field, $this->value(), $this->unique, 'customize' );
}
}
}