Plugin Directory

Changeset 2331435


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

Reworked the API endpoint settings to better handle environment specific requirements

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

Legend:

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

    r2324588 r2331435  
    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-crm/tags/1.0/zsq-connector-crm.php

    r2323338 r2331435  
    1818define('ZSQ_CRM_PLUGIN_VERSION', '1.0.0');
    1919define('ZSQ_CRM_PLUGIN_PATH', dirname(__FILE__));
    20 define("ZSQ_CRM_APP_HOME", "https://zsquared.ca/");
    21 define("ZSQ_CRM_API_ENDPOINT", "https://zsquared.ca/wp/crm/");
    2220define("ZSQ_CRM_PLUGIN_ASSETS", plugin_dir_url(__FILE__));
    2321$zsq_crm_host_info = parse_url(get_site_url());
    2422define("ZSQ_CRM_HOST", $zsq_crm_host_info['host']);
     23
     24require_once __DIR__ . '/include/settings.php';
    2525
    2626$zsq_crm_daily_sync_price = get_option('zsq_crm_daily_sync_price');
  • zsquared-connector-for-zoho-crm/trunk/README.txt

    r2324588 r2331435  
    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-crm/trunk/zsq-connector-crm.php

    r2323338 r2331435  
    1818define('ZSQ_CRM_PLUGIN_VERSION', '1.0.0');
    1919define('ZSQ_CRM_PLUGIN_PATH', dirname(__FILE__));
    20 define("ZSQ_CRM_APP_HOME", "https://zsquared.ca/");
    21 define("ZSQ_CRM_API_ENDPOINT", "https://zsquared.ca/wp/crm/");
    2220define("ZSQ_CRM_PLUGIN_ASSETS", plugin_dir_url(__FILE__));
    2321$zsq_crm_host_info = parse_url(get_site_url());
    2422define("ZSQ_CRM_HOST", $zsq_crm_host_info['host']);
     23
     24require_once __DIR__ . '/include/settings.php';
    2525
    2626$zsq_crm_daily_sync_price = get_option('zsq_crm_daily_sync_price');
Note: See TracChangeset for help on using the changeset viewer.