Pro_Warning.php
2 weeks ago
background.png
2 weeks ago
banner-sample.php
2 weeks ago
class-get-values.php
2 weeks ago
includes.php
2 weeks ago
pisol.class.form.php
2 weeks ago
pisol.class.promotion.php
2 weeks ago
review-icon.svg
2 weeks ago
review.php
2 weeks ago
includes.php
48 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) exit; |
| 3 | |
| 4 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/pisol.class.form.php'; |
| 5 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/pisol.class.promotion.php'; |
| 6 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/class-get-values.php'; |
| 7 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/review.php'; |
| 8 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'include/Pro_Warning.php'; |
| 9 | |
| 10 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/conflict-fixer.php'; |
| 11 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/menu.php'; |
| 12 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options.php'; |
| 13 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-time.php'; |
| 14 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-date.php'; |
| 15 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-pickup.php'; |
| 16 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-time-slot.php'; |
| 17 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-limit.php'; |
| 18 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-addons.php'; |
| 19 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-pi-dtt-labels.php'; |
| 20 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-adv-order-filter.php'; |
| 21 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-pi-dtt-order-table.php'; |
| 22 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-order-tip-promotion.php'; |
| 23 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-analytics.php'; |
| 24 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/options-accesscontrol.php'; |
| 25 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-accesscontrol.php'; |
| 26 | |
| 27 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'block/class-date-time-location-block.php'; |
| 28 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'block/class-date-time-location-storage.php'; |
| 29 | |
| 30 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-delivery-type.php'; |
| 31 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-main.php'; |
| 32 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-display-field.php'; |
| 33 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-css.php'; |
| 34 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-date.php'; |
| 35 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-js.php'; |
| 36 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-pickup-location.php'; |
| 37 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time.php'; |
| 38 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time-range.php'; |
| 39 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-time-slot.php'; |
| 40 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-validate.php'; |
| 41 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-order.php'; |
| 42 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-shipping-method.php'; |
| 43 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-woo-app.php'; |
| 44 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-myaccount.php'; |
| 45 | require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-extra-message.php'; |
| 46 | |
| 47 | |
| 48 |