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-account.php
16 lines
| 1 | <?php defined( 'ABSPATH' ) or exit(); ?> |
| 2 | |
| 3 | <a class="button button-update" href="<?php echo esc_url( $refresh_url ); ?>"><span class="dashicons dashicons-image-rotate"></span> <?php esc_html_e( 'Update', 'woocommerce' ); ?></a> |
| 4 | <div class="user-info"> |
| 5 | <header> |
| 6 | <p><?php esc_html_e( 'Connected to WooCommerce.com', 'woocommerce' ); ?> <span class="chevron dashicons dashicons-arrow-down-alt2"></span></p> |
| 7 | </header> |
| 8 | <section> |
| 9 | <p><?php echo get_avatar( $auth_user_data['email'], 48 ); ?> <?php echo esc_html( $auth_user_data['email'] ); ?></p> |
| 10 | <div class="actions"> |
| 11 | <a class="" href="https://woocommerce.com/my-account/my-subscriptions/" target="_blank"><span class="dashicons dashicons-admin-generic"></span> <?php esc_html_e( 'My Subscriptions', 'woocommerce' ); ?></a> |
| 12 | <a class="" href="<?php echo esc_url( $disconnect_url ); ?>"><span class="dashicons dashicons-no"></span> <?php esc_html_e( 'Disconnect', 'woocommerce' ); ?></a> |
| 13 | </div> |
| 14 | </section> |
| 15 | </div> |
| 16 |