forked from FoxyCart/foxyshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
foxyshop.php
executable file
·166 lines (129 loc) · 6.78 KB
/
foxyshop.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php /*
**************************************************************************
Plugin Name: FoxyShop
Plugin URI: http://www.foxy-shop.com/
Description: FoxyShop is a full integration for FoxyCart and WordPress, providing a robust shopping cart and inventory management tool.
Author: SparkWeb Interactive, Inc.
Version: 4.7.4
Author URI: http://www.foxy-shop.com/
**************************************************************************
Copyright (C) 2015 SparkWeb Interactive, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**************************************************************************
Thanks you for using this plugin. Please see http://www.foxy-shop.com/ for
installation instructions and lots of helpful advice on how to get
the most out of FoxyShop.
**************************************************************************/
//Exit if not called in proper context
if (!defined('ABSPATH')) exit();
//Setup Plugin Variables
define('FOXYSHOP_VERSION', "4.7.4");
define('FOXYSHOP_DIR', (is_ssl() ? str_replace("http://", "https://", WP_PLUGIN_URL) : WP_PLUGIN_URL) . "/foxyshop");
define('FOXYSHOP_PATH', dirname(__FILE__));
$foxyshop_document_root = $_SERVER['DOCUMENT_ROOT'];
if ($foxyshop_document_root == "" || $foxyshop_document_root == "/") $foxyshop_document_root = str_replace("/wp-content/plugins/foxyshop", "", FOXYSHOP_PATH);
if (!defined('FOXYSHOP_DOCUMENT_ROOT')) define('FOXYSHOP_DOCUMENT_ROOT', $foxyshop_document_root);
if (!defined('FOXYSHOP_PRODUCTS_SLUG')) define('FOXYSHOP_PRODUCTS_SLUG', 'products');
if (!defined('FOXYSHOP_PRODUCT_CATEGORY_SLUG')) define('FOXYSHOP_PRODUCT_CATEGORY_SLUG', 'product-cat');
if (!defined('FOXYSHOP_PRODUCT_NAME_SINGULAR')) define('FOXYSHOP_PRODUCT_NAME_SINGULAR', __('Product', 'foxyshop'));
if (!defined('FOXYSHOP_PRODUCT_NAME_PLURAL')) define('FOXYSHOP_PRODUCT_NAME_PLURAL', __('Products', 'foxyshop'));
if (!defined('FOXYSHOP_URL_BASE')) define('FOXYSHOP_URL_BASE', '');
if (!defined('FOXYSHOP_PRODUCT_SITEMAP_SLUG')) define('FOXYSHOP_PRODUCT_SITEMAP_SLUG', 'product-sitemap');
if (!defined('FOXYSHOP_API_ENTRIES_PER_PAGE')) define('FOXYSHOP_API_ENTRIES_PER_PAGE', 50);
if (!defined('FOXYSHOP_JQUERY_VERSION')) define('FOXYSHOP_JQUERY_VERSION', '1.11.2');
if (!defined('FOXYSHOP_DECIMAL_PLACES')) define('FOXYSHOP_DECIMAL_PLACES', 2);
load_plugin_textdomain('foxyshop', 0, dirname(plugin_basename(__FILE__)).'/languages/');
$foxycart_version_array = array('2.0' => '2.0', '1.1' => '1.1', '1.0' => '1.0', '0.7.2' => '0.7.2', '0.7.1' => '0.7.1', '0.7.0' => '0.7.0');
$product_feed_field_names = array('google_product_category', 'mpn', 'gtin', 'identifier_exists', 'brand', 'condition', 'age_group', 'gender', 'color', 'size', 'material', 'pattern');
//Setup Admin Functions
require(FOXYSHOP_PATH . '/adminfunctions.php');
require(FOXYSHOP_PATH . '/adminajax.php');
//Set FoxyShop Settings Array
$foxyshop_settings = get_option("foxyshop_settings");
if (!is_array($foxyshop_settings)) {
$foxyshop_settings = foxyshop_activation(); //Runs for the first time
} elseif ($foxyshop_settings['foxyshop_version'] != FOXYSHOP_VERSION) {
$foxyshop_settings = foxyshop_activation(); //Checks for Old Plugin Version and Perform Upgrade
}
$foxyshop_category_sort = get_option('foxyshop_category_sort');
if (!is_array($foxyshop_category_sort)) $foxyshop_category_sort = array();
//Sets the Locale for Currency Internationalization
setlocale(LC_MONETARY, $foxyshop_settings['locale_code']);
$foxyshop_localsettings = localeconv();
if ($foxyshop_localsettings['int_curr_symbol'] == "") setlocale(LC_MONETARY, 'en_US');
//Flushes Rewrite Rules if Structure Has Changed
add_action('init', 'foxyshop_check_rewrite_rules', 99);
//Widgets and Shortcodes support
include(FOXYSHOP_PATH . '/widgetcode.php');
include(FOXYSHOP_PATH . '/shortcodesettings.php');
//Load Admin Scripts and Styles
if (is_admin()) {
add_action('admin_enqueue_scripts', 'foxyshop_load_admin_scripts');
//Load FoxyShop Scripts and Styles on Public Site
} else {
if ($foxyshop_settings['use_jquery']) add_action('wp_enqueue_scripts', 'foxyshop_insert_jquery', 15);
if (version_compare($foxyshop_settings['version'], '2.0', ">=")) {
add_action('wp_footer', 'foxyshop_insert_foxycart_loader');
} else {
add_action('wp_head', 'foxyshop_insert_foxycart_files');
}
add_action('init', 'foxyshop_load_site_scripts', 1);
add_action('wp', 'foxyshop_check_include_status', 11);
if ($foxyshop_settings['ga']) add_action('wp_footer', 'foxyshop_insert_google_analytics', 100);
}
//Setup Wizard
include(FOXYSHOP_PATH . '/setup-page.php');
//Custom Post Type and Taxonomy
include(FOXYSHOP_PATH . '/customposttype.php');
//Custom Field Bulk Editor Plugin Support
include(FOXYSHOP_PATH . '/bulkeditor.php');
//Custom Product Sorting
include(FOXYSHOP_PATH . '/customsorting.php');
//Custom Category Sorting
include(FOXYSHOP_PATH . '/categorysorting.php');
//FoxyCart API Feeds
if ($foxyshop_settings['domain']) {
//Orders
include(FOXYSHOP_PATH . '/orders.php');
//Customers
include(FOXYSHOP_PATH . '/customers.php');
//Subscriptions
if ($foxyshop_settings['enable_subscriptions']) {
include(FOXYSHOP_PATH . '/subscriptions.php');
}
}
//Inventory Management
if ($foxyshop_settings['manage_inventory_levels']) {
include(FOXYSHOP_PATH . '/inventory.php');
}
//Generate Product Feed
if ($foxyshop_settings['generate_product_sitemap']) {
include(FOXYSHOP_PATH . '/xmlproductfeed.php');
}
//Tools Page
include(FOXYSHOP_PATH . '/tools-page.php');
//Settings Page
include(FOXYSHOP_PATH . '/settings-page.php');
//Single Sign On
if ($foxyshop_settings['enable_sso']) {
include(FOXYSHOP_PATH . '/sso.php');
}
//Display Settings Link on Plugin Screen
add_filter('plugin_action_links', 'foxyshop_plugin_action_links', 10, 2);
//Frontend Helper Functions
include(FOXYSHOP_PATH . '/helperfunctions.php');
//Template Redirect (reference files are in /plugins/foxyshop/themefiles)
include(FOXYSHOP_PATH . '/templateredirect.php');
//Plugin Activation Functions
register_activation_hook(__FILE__, 'foxyshop_activation');
register_deactivation_hook( __FILE__, 'foxyshop_deactivation');