Changeset 2331435
- Timestamp:
- 06/26/2020 08:28:18 PM (6 years ago)
- Location:
- zsquared-connector-for-zoho-crm
- Files:
-
- 2 added
- 4 edited
-
tags/1.0/README.txt (modified) (1 diff)
-
tags/1.0/include/settings.php (added)
-
tags/1.0/zsq-connector-crm.php (modified) (1 diff)
-
trunk/README.txt (modified) (1 diff)
-
trunk/include/settings.php (added)
-
trunk/zsq-connector-crm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zsquared-connector-for-zoho-crm/tags/1.0/README.txt
r2324588 r2331435 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-crm/tags/1.0/zsq-connector-crm.php
r2323338 r2331435 18 18 define('ZSQ_CRM_PLUGIN_VERSION', '1.0.0'); 19 19 define('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/");22 20 define("ZSQ_CRM_PLUGIN_ASSETS", plugin_dir_url(__FILE__)); 23 21 $zsq_crm_host_info = parse_url(get_site_url()); 24 22 define("ZSQ_CRM_HOST", $zsq_crm_host_info['host']); 23 24 require_once __DIR__ . '/include/settings.php'; 25 25 26 26 $zsq_crm_daily_sync_price = get_option('zsq_crm_daily_sync_price'); -
zsquared-connector-for-zoho-crm/trunk/README.txt
r2324588 r2331435 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-crm/trunk/zsq-connector-crm.php
r2323338 r2331435 18 18 define('ZSQ_CRM_PLUGIN_VERSION', '1.0.0'); 19 19 define('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/");22 20 define("ZSQ_CRM_PLUGIN_ASSETS", plugin_dir_url(__FILE__)); 23 21 $zsq_crm_host_info = parse_url(get_site_url()); 24 22 define("ZSQ_CRM_HOST", $zsq_crm_host_info['host']); 23 24 require_once __DIR__ . '/include/settings.php'; 25 25 26 26 $zsq_crm_daily_sync_price = get_option('zsq_crm_daily_sync_price');
Note: See TracChangeset
for help on using the changeset viewer.