PATH:
home
/
centosnipponia
/
public_html
/
lifannl
/
wp-content
/
themes
/
sydney-pro-ii
/
inc
/
customizer
/
controls
<?php /** * Text control * * @package Sydney * */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } class Sydney_Text_Control extends WP_Customize_Control { /** * The type of control being rendered */ public $type = 'sydney-text-control'; public $link_title = ''; public $link = ''; public $controls_general; public $controls_design; /** * Constructor */ public function __construct( $manager, $id, $args = array(), $options = array() ) { parent::__construct( $manager, $id, $args ); } /** * Render the control in the customizer */ public function render_content() { //return if the White Label plugin is active if ( function_exists( 'athemes_wl_get_data' ) ) { return; } ?> <?php if( !empty( $this->label ) ) { ?> <span class="customize-control-title"><?php echo wp_kses_post( $this->label ); ?></span> <?php } ?> <?php if( !empty( $this->description ) ) { ?> <span class="customize-control-description"><?php echo $this->description; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></span> <?php } ?> <?php if( !empty( $this->link_title ) && !empty( $this->link ) ) { ?> <a href="<?php echo esc_url( $this->link ); ?>" target="_blank"><?php echo $this->link_title; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></a> <?php } ?> <?php } }
[+]
..
[+]
accordion
[+]
alpha-color
[+]
custom-sidebars
[+]
display-conditions
[+]
multiple-select
[+]
quick-links
[+]
radio-buttons
[+]
radio-images
[+]
repeater
[+]
responsive-slider
[+]
toggle
[+]
typography
[+]
typography-adobe
[-] class_sydney_create_page_control.php
[edit]
[-] class_sydney_divider_control.php
[edit]
[-] class_sydney_posts_control.php
[edit]
[-] class_sydney_tab_control.php
[edit]
[-] class_sydney_text_control.php
[edit]
[-] class_sydney_tinymce_control.php
[edit]
[-] control-checkbox-multiple.php
[edit]
[-] .htaccess.disabled
[edit]