PluginProbe ʕ •ᴥ•ʔ
PiWeb Delivery & Pickup Date Time for WooCommerce / 3.0.49.13
PiWeb Delivery & Pickup Date Time for WooCommerce v3.0.49.13
3.0.63 3.0.62 3.0.61 3.0.60 3.0.49.49 3.0.49.6 3.0.49.60 3.0.49.61 3.0.49.62 3.0.49.63 3.0.49.64 3.0.49.66 3.0.49.67 3.0.49.69 3.0.49.7 3.0.49.70 3.0.49.72 3.0.49.73 3.0.49.74 3.0.49.76 3.0.49.77 3.0.49.79 3.0.49.9 3.0.49.90 3.0.49.91 3.0.49.92 3.0.49.93 3.0.49.94 3.0.49.96 3.0.49.97 3.0.49.99 trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 2.9.17 3.0.47 3.0.49 3.0.49.1 3.0.49.10 3.0.49.11 3.0.49.12 3.0.49.13 3.0.49.16 3.0.49.17 3.0.49.19 3.0.49.2 3.0.49.20 3.0.49.21 3.0.49.22 3.0.49.23 3.0.49.24 3.0.49.26 3.0.49.27 3.0.49.29 3.0.49.3 3.0.49.30 3.0.49.31 3.0.49.32 3.0.49.33 3.0.49.34 3.0.49.36 3.0.49.37 3.0.49.39 3.0.49.4 3.0.49.40 3.0.49.41 3.0.49.42 3.0.49.43 3.0.49.44 3.0.49.46 3.0.49.47
pi-woocommerce-order-date-time-and-type / include / includes.php
pi-woocommerce-order-date-time-and-type / include Last commit date
background.png 1 year ago banner-sample.php 1 year ago class-get-values.php 1 year ago includes.php 1 year ago pisol.class.form.php 1 year ago pisol.class.promotion.php 1 year ago review-icon.svg 1 year ago review.php 1 year ago
includes.php
38 lines
1 <?php
2
3 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/pisol.class.form.php';
4 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/pisol.class.promotion.php';
5 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/class-get-values.php';
6 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/review.php';
7
8 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/conflict-fixer.php';
9 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/menu.php';
10 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options.php';
11 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-time.php';
12 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-date.php';
13 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-pickup.php';
14 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-time-slot.php';
15 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-limit.php';
16 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-addons.php';
17 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-pi-dtt-labels.php';
18 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-adv-order-filter.php';
19 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-pi-dtt-order-table.php';
20 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'block/block.php';
21
22 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-delivery-type.php';
23 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-main.php';
24 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-display-field.php';
25 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-css.php';
26 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-date.php';
27 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-js.php';
28 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-pickup-location.php';
29 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time.php';
30 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time-range.php';
31 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time-slot.php';
32 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-validate.php';
33 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-order.php';
34 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-shipping-method.php';
35 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-woo-app.php';
36
37
38