21 lines
1.5 KiB
PHP
21 lines
1.5 KiB
PHP
<?php if (!defined('ABSPATH')) exit; // Exit if accessed directly ?>
|
|
<?php
|
|
$proText = $purchase->getProText();
|
|
$isPro = $purchase->isPro();
|
|
?>
|
|
<i><h2><?php esc_html_e('Woo Discount Rules', 'woo-discount-rules'); ?> <?php echo $proText; ?> <span class="woo-discount-version">v<?php echo WOO_DISCOUNT_VERSION; ?></span></h2></i><hr>
|
|
<h3 class="nav-tab-wrapper">
|
|
<a class="nav-tab <?php if ($active == 'pricing-rules') { echo 'nav-tab-active'; } ?>" href="?page=woo_discount_rules&tab=pricing-rules">
|
|
<i class="fa fa-tags" style="font-size: 0.8em;"></i> <?php esc_html_e('Price Discount Rules', 'woo-discount-rules'); ?> </a>
|
|
<a class="nav-tab <?php if ($active == 'cart-rules') { echo 'nav-tab-active'; } ?>" href="?page=woo_discount_rules&tab=cart-rules">
|
|
<i class="fa fa-shopping-cart" style="font-size: 0.8em;"></i> <?php esc_html_e('Cart Discount Rules', 'woo-discount-rules'); ?> </a>
|
|
<a class="nav-tab <?php if ($active == 'settings') { echo 'nav-tab-active'; } ?>" href="?page=woo_discount_rules&tab=settings">
|
|
<i class="fa fa-cogs" style="font-size: 0.8em;"></i> <?php esc_html_e('Settings', 'woo-discount-rules'); ?> </a>
|
|
<?php if($isPro){
|
|
?>
|
|
<a class="nav-tab <?php if ($active == 'settings') { echo 'nav-tab-active'; } ?> btn-success" href="?page=woo_discount_rules&tab=documentation">
|
|
<?php esc_html_e('Documentation', 'woo-discount-rules'); ?> </a>
|
|
<?php
|
|
} ?>
|
|
</h3>
|