<?php if (!defined('ABSPATH')) exit; // Exit if accessed directly ?>
<div class="wps-wrap__top tabbed_page">
    <?php if (!empty($tabs) && is_array($tabs)) { ?>
        <ul class="wps-steps">
            <?php
            $stepBadge       = 1;
            $foundCurrent    = false;

            // Add "completed" class to all tabs until "current" class is found
            // And add "disabled" class to next tabs if the user has no licenses
            // So, for example if the second tab is the current tab, add "completed" to the first tab only, etc.
            foreach ($tabs as $key => $step) {
                // Skip the "Add-ons" tab
                if ($key !== 0) {
                    $stepClass = esc_attr($step['class']);
                    if ($foundCurrent) {
                        $stepClass   .= ' disabled';
                        $step['link'] = '#';
                    } else if (stripos($stepClass, 'current') !== false) {
                        // Current tab found, don't change the CSS class
                        $foundCurrent = true;
                    } else {
                        // Current tab is not found yet, add "completed" class
                        $stepClass .= 'completed ';
                    }
                    ?>
                    <li class="wps-step-link <?php echo $stepClass; ?>">
                        <a href="<?php echo esc_attr($step['link']); ?>" class="<?php echo esc_attr($step['class'])?>">
                            <span class="wps-step-link__badge">
                            <?php if (strpos($stepClass, 'completed') !== false): ?>
                                <svg aria-hidden="true"  width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg">
                                    <path d="M3.16727 4.32235L6.99744 0.492188L7.58669 1.08144L3.16727 5.50085L0.515625 2.84922L1.10488 2.25997L3.16727 4.32235Z" fill="white"/>
                                </svg>
                                <span class="screen-reader-text"><?php echo sprintf(__('Step %s completed', 'wp-statistics'), $stepBadge); ?></span>
                            <?php else: ?>
                                <?php echo esc_html($stepBadge); ?>
                            <?php endif; ?>
                            </span>
                            <span class="wps-step-link__title"><?php echo esc_html($step['title']); ?></span>
                        </a>
                    </li>
                    <?php
                    $stepBadge++;
                }
            }
            ?>
        </ul>
    <?php } ?>
</div>