From 7f72fd583255f8382b9b710c837b5e177a52597c Mon Sep 17 00:00:00 2001 From: Ross Trottier Date: Thu, 2 May 2024 14:03:46 -0600 Subject: [PATCH] moved shared functions --- federated.php | 3 ++- .../federated_woocommerce_shared_functions.php | 0 woocommerce/my_account_customizations.php | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) rename {woocommerce => shared}/federated_woocommerce_shared_functions.php (100%) diff --git a/federated.php b/federated.php index fcc0e42..bc3ddee 100644 --- a/federated.php +++ b/federated.php @@ -14,4 +14,5 @@ if( ! defined( 'ABSPATH' ) ){ include( plugin_dir_path( __FILE__ ) . 'woocommerce/thank_you_page_customizations.php'); include( plugin_dir_path( __FILE__ ) . 'woocommerce/my_account_customizations.php'); include( plugin_dir_path( __FILE__ ) . 'rest-api/provisioner_rest_api_extensions.php'); -include( plugin_dir_path( __FILE__ ) . 'woocommerce/new_subscription_set_to_needs_provision.php'); \ No newline at end of file +include( plugin_dir_path( __FILE__ ) . 'woocommerce/new_subscription_set_to_needs_provision.php'); +include( plugin_dir_path( __FILE__ ) . 'shared/federated_woocommerce_shared_functions.php'); \ No newline at end of file diff --git a/woocommerce/federated_woocommerce_shared_functions.php b/shared/federated_woocommerce_shared_functions.php similarity index 100% rename from woocommerce/federated_woocommerce_shared_functions.php rename to shared/federated_woocommerce_shared_functions.php diff --git a/woocommerce/my_account_customizations.php b/woocommerce/my_account_customizations.php index d3ae7a5..203049c 100644 --- a/woocommerce/my_account_customizations.php +++ b/woocommerce/my_account_customizations.php @@ -1,13 +1,11 @@