PATH:
home
/
fengshp
/
www
/
wp-content
/
themes
/
themify-ultra
/
themify
/
customizer
<?php defined( 'ABSPATH' ) || exit; /** * Class to create a control to set the color of an element or set the transparent CSS property. * * @since 1.0.0 */ class Themify_Color_Transparent_Control extends Themify_Color_Control { /** * Render the control's content. * * @since 1.0.0 */ public function render_content() { $v = $this->value(); $values = json_decode( $v ); wp_enqueue_script( 'json2' ); $label = $this->show_label && ! empty( $this->label ); ?> <?php if ( $label ) : ?> <span class="customize-control-title themify-control-title themify-suba-toggle"><?php echo esc_html( $this->label ); ?></span> <?php endif; ?> <?php if ($label) : ?> <ul class="themify-control-sub-accordeon"> <li> <?php endif;?> <?php $this->render_color( $values, array( 'transparent' => true, 'side_label' => true, 'color_label' => ( isset( $this->color_label ) && ! empty( $this->color_label ) ) ? $this->color_label : __( 'Color', 'themify' ), ) ); ?> <input <?php $this->link(); ?> value='<?php echo esc_attr( $v ); ?>' type="hidden" class="<?php echo esc_attr( $this->type ); ?>_control themify-customizer-value-field"/> <?php if ($label) : ?> </li> </ul> <?php endif;?> <?php } }
[+]
..
[-] class-sub-accordion.php
[edit]
[-] class-background-control.php
[edit]
[-] class-tools-control.php
[edit]
[-] class-margin-control.php
[edit]
[+]
css
[-] class-fonts-control.php
[edit]
[-] class-width-control.php
[edit]
[-] class-image-select-control.php
[edit]
[-] class-border-control.php
[edit]
[-] class-logo-control.php
[edit]
[-] class-image-control.php
[edit]
[+]
js
[-] class-themify-customizer.php
[edit]
[-] class-customcss-control.php
[edit]
[-] class-padding-control.php
[edit]
[-] class-height-control.php
[edit]
[-] class-tagline-control.php
[edit]
[-] class-position-control.php
[edit]
[-] class-text-decoration-control.php
[edit]
[-] class-color-control.php
[edit]
[-] class-color-transparent-control.php
[edit]
[-] class-themify-control.php
[edit]