PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / trunk
Subscriptions for WooCommerce with Stripe Recurring Payments vtrunk
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / includes / Admin / views / product-form.php

product-form.php in Subscriptions for WooCommerce with Stripe Recurring Payments trunk, at includes/Admin/views/product-form.php

24 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Subscription product edit form view (classic-only panel).
4 *
5 * Used for the classic Subscription tab where no plan view is mounted. The
6 * simple-product plan view (Admin/Product/Plans) renders its own panel and
7 * reuses the shared classic fields partial for its hidden "classic settings".
8 *
9 * @package SpringDevs\Subscription\Admin
10 */
11
12 // Exit if accessed directly.
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 ?>
18 <div id="sdevs_subscription_options"
19 class="panel woocommerce_options_panel option_group sdevs-form sdevs_panel show_if_simple" style="padding: 10px;">
20 <div class="show_if_subscription">
21 <?php require __DIR__ . '/product-classic-fields.php'; ?>
22 </div>
23 </div>
24