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/wpkoopkj/wp-content/plugins/ohio-extra/elementor/widgets/tabs/tabs-view.php
<div class="ohio-widget tabs <?php echo $this->getWrapperClasses(); ?>" data-ohio-tabs="true" data-options="[]">
    <ul class="tabs-nav -unlist titles-typo title" role="tablist">
        <li class="tabs-nav-line"></li>
    </ul>
    <div class="tabs-content" role="tabpanel">
        <?php foreach ($settings['tabs'] as $item) : ?>
        <div class="tabs-content-item <?php echo $item['custom_class']; ?>" data-title="<?php echo esc_attr( $item['list_title'] ); ?>" <?php if ( !empty($item['use_icon']) && !empty($item['icon_icon']) ) { echo ' data-icon="' . implode( ' ', $item['icon_icon'] ) . '"'; } ?> id="<?php echo esc_attr( $item['_id'] ); ?>">
            <?php
                if ($item['list_content_type'] == 'editor') {
                    echo do_shortcode( $item['list_content_editor'] );
                } else {
                    if (!empty($item['list_content_template']) && $item['list_content_template'] != 0) {
                        // Template
                        echo \Elementor\Plugin::$instance->frontend->get_builder_content_for_display( $item['list_content_template'] );
                    } else {
                        // No template message
                        $link = add_query_arg(
                            array(
                                'post_type'     => 'elementor_library',
                                'action'        => 'elementor_new_post',
                                '_wpnonce'      => wp_create_nonce( 'elementor_action_new_post' ),
                                'template_type' => 'section',
                            ),
                            esc_url( admin_url( '/edit.php' ) )
                        );

                        echo '<div style="text-align:center;">';
                        echo __( 'Template is not defined. Select an existing template or create a', 'ohio-extra' );
                        echo ' <a class="new-template-link elementor-clickable brand-color" target="_blank" href="' . $link . '">' . esc_html__( 'new one', 'ohio-extra' ) . '</a>.';
                        echo '</div>';
                    }
                }
            ?>
        </div>
        <?php endforeach; ?>
    </div>
</div>