customers
2 months ago
orders
4 months ago
subscriptions
3 months ago
add-edit-coupon.php
2 years ago
add-edit-plan-group.php
1 year ago
add-edit-plan.php
1 month ago
checkout-field-item.php
3 years ago
checkout-fields.php
3 years ago
coupons-page-sidebar.php
3 years ago
groups-page-sidebar.php
3 years ago
index.php
3 years ago
payment-method-list.php
3 years ago
plans-page-sidebar.php
3 years ago
tax-rates-setup.php
3 years ago
groups-page-sidebar.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | use ProfilePress\Core\Admin\SettingsPages\Membership\GroupsPage\GroupWPListTable; |
| 4 | |
| 5 | ?> |
| 6 | <div class="submitbox" id="submitpost"> |
| 7 | |
| 8 | <div id="major-publishing-actions"> |
| 9 | <div id="delete-action"> |
| 10 | <?php if (ppressGET_var('ppress_group_action') == 'edit') : ?> |
| 11 | <a class="submitdelete deletion pp-confirm-delete" href="<?= GroupWPListTable::delete_group_url(absint($_GET['id'])); ?>"> |
| 12 | <?= esc_html__('Delete', 'wp-user-avatar') ?> |
| 13 | </a> |
| 14 | <?php endif; ?> |
| 15 | </div> |
| 16 | |
| 17 | <div id="publishing-action"> |
| 18 | <input type="submit" name="ppress_save_group" class="button button-primary button-large" value="<?= esc_html__('Save Group', 'wp-user-avatar') ?>"> |
| 19 | </div> |
| 20 | <div class="clear"></div> |
| 21 | </div> |
| 22 | |
| 23 | </div> |