HEX
Server: LiteSpeed
System: Linux sg-cp4.cloudnetwork.vn 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64
User: thu28850 (1134)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/thu28850/public_html/wp-content/plugins/wp-helper-lite/views/admin/shared/header.php
<?php
$page = isset($_GET['page']) ? sanitize_text_field($_GET['page']) : '';
$whp_list_tab = whp_get_list_tab();
?>
<div class="whp-wrap">
    <div class="whp-header">
        <h1 class="whp-title">
            <?php echo whp_show_html(__('WP Helper <span class = "title-badge">Premium</span>', 'whp')) ?>
        </h1>

    </div>
    <div class="whp-body">
        <div class="whp-tab-title">
            <ul>
                <?php
                foreach ($whp_list_tab as $item) {
                    $title = $item['title'] ?? "";
                    $slug = $item['slug'] ?? "";
                    $link = menu_page_url($slug, false);
                    $active = $page == $slug ? "active" : "";
                ?>
                    <li class="tab-title-item <?php echo esc_attr($active); ?> whp-setting-title">
                        <a href="<?php echo esc_url($link); ?>">
                            <?php echo esc_html($title) ?>
                        </a>
                    </li>
                <?php }
                ?>
            </ul>
        </div>
        <div class="whp-content">