Plugin Directory

Changeset 2331436


Ignore:
Timestamp:
06/26/2020 08:28:50 PM (6 years ago)
Author:
pcis
Message:

Reworked the API endpoint settings to better handle environment specific requirements

Location:
zsquared-connector-for-zoho-inventory
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • zsquared-connector-for-zoho-inventory/tags/1.0/README.txt

    r2324589 r2331436  
    44Requires at least: 5.0
    55Tested up to: 5.4
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3838== Changelog ==
    3939
     40= 1.0.2 =
     41* Reworked the API endpoint settings to better handle environment specific requirements
     42
    4043= 1.0.1 =
    4144* Modified the API endpoint for better error reporting
  • zsquared-connector-for-zoho-inventory/tags/1.0/zsq-connector-inventory.php

    r2323339 r2331436  
    1818define('ZSQ_INV_PLUGIN_VERSION', '1.0.0');
    1919define('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/");
    2220define("ZSQ_INV_PLUGIN_ASSETS", plugin_dir_url(__FILE__));
    2321$zsq_conn_host_info = parse_url(get_site_url());
    2422define("ZSQ_INV_HOST", $zsq_conn_host_info['host']);
     23
     24require_once __DIR__ . '/include/settings.php';
    2525
    2626$zsq_inv_daily_sync_price = get_option('zsq_inv_daily_sync_price');
  • zsquared-connector-for-zoho-inventory/trunk/README.txt

    r2324589 r2331436  
    44Requires at least: 5.0
    55Tested up to: 5.4
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3838== Changelog ==
    3939
     40= 1.0.2 =
     41* Reworked the API endpoint settings to better handle environment specific requirements
     42
    4043= 1.0.1 =
    4144* Modified the API endpoint for better error reporting
  • zsquared-connector-for-zoho-inventory/trunk/zsq-connector-inventory.php

    r2323339 r2331436  
    1818define('ZSQ_INV_PLUGIN_VERSION', '1.0.0');
    1919define('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/");
    2220define("ZSQ_INV_PLUGIN_ASSETS", plugin_dir_url(__FILE__));
    2321$zsq_conn_host_info = parse_url(get_site_url());
    2422define("ZSQ_INV_HOST", $zsq_conn_host_info['host']);
     23
     24require_once __DIR__ . '/include/settings.php';
    2525
    2626$zsq_inv_daily_sync_price = get_option('zsq_inv_daily_sync_price');
Note: See TracChangeset for help on using the changeset viewer.