customers
4 months ago
orders
5 months ago
subscriptions
4 months ago
add-edit-coupon.php
3 years ago
add-edit-plan-group.php
1 year ago
add-edit-plan.php
2 weeks ago
checkout-field-item.php
4 years ago
checkout-fields.php
4 years ago
coupons-page-sidebar.php
4 years ago
groups-page-sidebar.php
3 years ago
index.php
4 years ago
payment-method-list.php
3 years ago
plans-page-sidebar.php
4 years ago
tax-rates-setup.php
4 years ago
tax-rates-setup.php
55 lines
| 1 | <?php use ProfilePress\Core\Admin\SettingsPages\Membership\TaxSettings\SettingsPage; |
| 2 | |
| 3 | $db_tax_rates = ppress_var(get_option(PPRESS_TAXES_OPTION_NAME, []), 'tax_rates', []); |
| 4 | ?> |
| 5 | <style>#tax_rates_row .description { |
| 6 | width: 100% |
| 7 | }</style> |
| 8 | <div class="ppress-tax-rates-wrap"> |
| 9 | <input style="display:none" type="hidden" name="ppress_taxes[tax_rates]" value=""> |
| 10 | <table cellspacing="0" class="widefat"> |
| 11 | <thead> |
| 12 | <tr> |
| 13 | <th class="ppress-tax-rate-table-country"><?php esc_html_e('Country', 'wp-user-avatar') ?></th> |
| 14 | <th class="ppress-tax-rate-table-state"><?php esc_html_e('State Code', 'wp-user-avatar') ?></th> |
| 15 | <th class="ppress-tax-rate-table-country-wide"><?php esc_html_e('Country Wide', 'wp-user-avatar') ?></th> |
| 16 | <th class="ppress-tax-rate-table-rate"><?php esc_html_e('Rate', 'wp-user-avatar') ?></th> |
| 17 | <th class="ppress-tax-rate-table-actions"></th> |
| 18 | </tr> |
| 19 | </thead> |
| 20 | <tbody> |
| 21 | <?php if (empty($db_tax_rates)) : ?> |
| 22 | <tr class="ppress-tax-rate-row--is-empty"> |
| 23 | <td style="background-color:#f9f9f9;" colspan="6"> |
| 24 | <?php esc_html_e('No rates found.', 'wp-user-avatar') ?> |
| 25 | </td> |
| 26 | </tr> |
| 27 | |
| 28 | <?php else : $index = 0; |
| 29 | |
| 30 | foreach ($db_tax_rates as $tax_rate) { |
| 31 | |
| 32 | SettingsPage::tax_rate_row( |
| 33 | $index, |
| 34 | ppress_var($tax_rate, 'country', ''), |
| 35 | ppress_var($tax_rate, 'state', ''), |
| 36 | ppress_var($tax_rate, 'global', ''), |
| 37 | ppress_var($tax_rate, 'rate', '') |
| 38 | ); |
| 39 | |
| 40 | $index++; |
| 41 | } |
| 42 | |
| 43 | endif; ?> |
| 44 | </tbody> |
| 45 | <tfoot> |
| 46 | <tr> |
| 47 | <td colspan="6"> |
| 48 | <a href="#" class="button button-secondary ppress_add_tax_rate"> |
| 49 | <?php esc_html_e('Add Tax Rate', 'wp-user-avatar') ?> |
| 50 | </a> |
| 51 | </td> |
| 52 | </tr> |
| 53 | </tfoot> |
| 54 | </table> |
| 55 | </div> |