HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wptoho/wp-content/themes/themify-ultra/themify/customizer/class-customcss-control.php
<?php

defined( 'ABSPATH' ) || exit;

/**
 * Class to create a control to accept CSS rules and preview them instantly.
 *
 * @since 1.0.0
 */

class Themify_CustomCSS_Control extends Themify_Control{

    /**
     * Type of this control.
     * @access public
     * @var string
     */
    public $type = 'themify_customcss';

    /**
     * Render the control's content.
     *
     * @since 1.0.0
     */
    public function render_content(){
        $v = $this->value();
        $values = json_decode($v, true);
        wp_enqueue_script('json2');
        // Custom CSS
        if (is_array($values) && isset($values['css'])){
            $css = preg_replace('/(\{|\;)(\s*?)([a-z]+)/', '$1$3', $values['css']);
            $css = str_replace(array('{', '}', ';', '\\[', '\\]'), array("{\n  ", "}\n", ";\n", '[', ']'), $css);
        } else{
            $css = $v;
        }
        ?>
        <?php if ($this->show_label && !empty($this->label)) :?>
            <span class="customize-control-title themify-control-title"><?php echo esc_html($this->label); ?></span>
        <?php endif; ?>

        <div class="themify-customizer-brick">
            <a class="themify-expand ti-new-window"></a>
            <a class="close-custom-css-expanded tf_close"></a>
            <textarea <?php $this->link(); ?> data-value="<?php echo esc_attr(base64_encode($css)) ?>" class="customcss <?php echo esc_attr($this->type); ?>_control themify-customizer-value-field tf_scrollbar" rows="20"></textarea>
        </div>
        <?php
    }

}