customers.php
2 years ago
index.php
2 years ago
orders.php
2 years ago
plans.php
2 years ago
product-sales.php
2 years ago
sales-earnings.php
2 years ago
subscriptions.php
2 years ago
plans.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | use ProfilePress\Core\Membership\Models\Plan\PlanEntity; |
| 4 | |
| 5 | /** @global PlanEntity[] $membership_plans */ |
| 6 | |
| 7 | ?> |
| 8 | |
| 9 | <label for="ppress_plans_export_plan" class="screen-reader-text"><?php esc_html_e('Select Plan', 'wp-user-avatar') ?></label> |
| 10 | <select id="ppress_plans_export_plan" name="plan_id" class="ppress-select"> |
| 11 | <option value=""><?php esc_html_e('All Membership Plans', 'wp-user-avatar') ?></option> |
| 12 | <?php foreach ($membership_plans as $plan) : ?> |
| 13 | <option value="<?php echo $plan->get_id() ?>"><?php echo $plan->get_name() ?></option> |
| 14 | <?php endforeach; ?> |
| 15 | </select> |