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-sub-accordion.php
<?php

defined( 'ABSPATH' ) || exit;

/**
 * Class to output the beginning of a sub-accordion. Must have a Themify_Sub_Accordion_End match.
 *
 * @since 1.0.0
 */
class Themify_Sub_Accordion_Start extends WP_Customize_Control {

    /**
     * @access public
     * @var string
     */
    public $type = 'themify_subaccordion_start';

    public $accordion_id;

    /**
     * @param WP_Customize_Manager $manager
     * @param string               $id
     * @param array                $args
     * @param array                $options
     */
    function __construct( $manager, $id, $args = array(), $options = array() ) {
        parent::__construct( $manager, $id, $args );
        $this->accordion_slug = sanitize_title_with_dashes( $this->label );
    }

    /**
     * Display the font dropdown.
     */
    function render_content() {
        ?>
        <a href="#" class="themify-suba-toggle"><?php echo esc_html( $this->label ); ?></a>
        <!-- Accordion Start -->
        <ul class="themify-subaccordion" data-accordion="themify-accordion-<?php echo esc_attr( $this->accordion_id ); ?>">
        </ul>
        <!-- Accordion End -->
        <?php
    }

}

/**
 * Class to output the end of a sub-accordion. Must have a Themify_Sub_Accordion_Start match.
 *
 * @since 1.0.0
 */
class Themify_Sub_Accordion_End extends WP_Customize_Control {

    /**
     * @access public
     * @var string
     */
    public $type = 'themify_subaccordion_end';

    /**
     * @param WP_Customize_Manager $manager
     * @param string               $id
     * @param array                $args
     * @param array                $options
     */
    function __construct( $manager, $id, $args = array(), $options = array() ) {
        parent::__construct( $manager, $id, $args );
    }

    /**
     * Display the accordion closing tag.
     */
    function render_content() {
    }

}