html-helper-compat.php
8 years ago
html-main.php
2 years ago
html-notice-woo-updater-not-activated.php
2 years ago
html-notice-woo-updater-not-installed.php
2 years ago
html-oauth-start.php
1 year ago
html-section-account.php
2 years ago
html-section-nav.php
5 months ago
html-section-notices.php
8 years ago
html-section-nav.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Helper admin navigation. |
| 4 | * |
| 5 | * @package WooCommerce\Helper |
| 6 | * |
| 7 | * @deprecated 5.7.0 |
| 8 | */ |
| 9 | |
| 10 | $addons_url = admin_url( 'admin.php?page=wc-admin&path=/extensions&tab=extensions' ); |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit(); ?> |
| 13 | |
| 14 | <nav class="nav-tab-wrapper woo-nav-tab-wrapper"> |
| 15 | <a href="<?php echo esc_url( $addons_url ); ?>" class="nav-tab"><?php esc_html_e( 'Browse Extensions', 'woocommerce' ); ?></a> |
| 16 | |
| 17 | <?php |
| 18 | $count_html = WC_Helper_Updater::get_updates_count_html(); |
| 19 | /* translators: %s: WooCommerce.com Subscriptions tab count HTML. */ |
| 20 | $menu_title = sprintf( __( 'My Subscriptions %s', 'woocommerce' ), $count_html ); |
| 21 | ?> |
| 22 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=wc-addons§ion=helper' ) ); ?>" class="nav-tab nav-tab-active"><?php echo wp_kses_post( $menu_title ); ?></a> |
| 23 | </nav> |
| 24 |