Changeset 2331436
- Timestamp:
- 06/26/2020 08:28:50 PM (6 years ago)
- Location:
- zsquared-connector-for-zoho-inventory
- Files:
-
- 2 added
- 4 edited
-
tags/1.0/README.txt (modified) (2 diffs)
-
tags/1.0/include/settings.php (added)
-
tags/1.0/zsq-connector-inventory.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/include/settings.php (added)
-
trunk/zsq-connector-inventory.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zsquared-connector-for-zoho-inventory/tags/1.0/README.txt
r2324589 r2331436 4 4 Requires at least: 5.0 5 5 Tested up to: 5.4 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 = 1.0.2 = 41 * Reworked the API endpoint settings to better handle environment specific requirements 42 40 43 = 1.0.1 = 41 44 * Modified the API endpoint for better error reporting -
zsquared-connector-for-zoho-inventory/tags/1.0/zsq-connector-inventory.php
r2323339 r2331436 18 18 define('ZSQ_INV_PLUGIN_VERSION', '1.0.0'); 19 19 define('ZSQ_INV_PLUGIN_PATH', dirname(__FILE__)); 20 define("ZSQ_INV_APP_HOME", "https://zsquared.ca/");21 define("ZSQ_INV_API_ENDPOINT", "https://zsquared.ca/wp/inventory/");22 20 define("ZSQ_INV_PLUGIN_ASSETS", plugin_dir_url(__FILE__)); 23 21 $zsq_conn_host_info = parse_url(get_site_url()); 24 22 define("ZSQ_INV_HOST", $zsq_conn_host_info['host']); 23 24 require_once __DIR__ . '/include/settings.php'; 25 25 26 26 $zsq_inv_daily_sync_price = get_option('zsq_inv_daily_sync_price'); -
zsquared-connector-for-zoho-inventory/trunk/README.txt
r2324589 r2331436 4 4 Requires at least: 5.0 5 5 Tested up to: 5.4 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 = 1.0.2 = 41 * Reworked the API endpoint settings to better handle environment specific requirements 42 40 43 = 1.0.1 = 41 44 * Modified the API endpoint for better error reporting -
zsquared-connector-for-zoho-inventory/trunk/zsq-connector-inventory.php
r2323339 r2331436 18 18 define('ZSQ_INV_PLUGIN_VERSION', '1.0.0'); 19 19 define('ZSQ_INV_PLUGIN_PATH', dirname(__FILE__)); 20 define("ZSQ_INV_APP_HOME", "https://zsquared.ca/");21 define("ZSQ_INV_API_ENDPOINT", "https://zsquared.ca/wp/inventory/");22 20 define("ZSQ_INV_PLUGIN_ASSETS", plugin_dir_url(__FILE__)); 23 21 $zsq_conn_host_info = parse_url(get_site_url()); 24 22 define("ZSQ_INV_HOST", $zsq_conn_host_info['host']); 23 24 require_once __DIR__ . '/include/settings.php'; 25 25 26 26 $zsq_inv_daily_sync_price = get_option('zsq_inv_daily_sync_price');
Note: See TracChangeset
for help on using the changeset viewer.