Changeset 3046891
- Timestamp:
- 03/07/2024 10:46:41 AM (22 months ago)
- Location:
- zoho-forms
- Files:
-
- 6 edited
- 1 copied
-
tags/4.0 (copied) (copied from zoho-forms/tags/3.0.2)
-
tags/4.0/readme.txt (modified) (2 diffs)
-
tags/4.0/tinymce/zforms_dailog.js (modified) (3 diffs)
-
tags/4.0/tinymce/zforms_dialog.php (modified) (1 diff)
-
tags/4.0/zohoForms.php (modified) (1 diff)
-
tags/4.0/zohoforms-block.js (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zoho-forms/tags/4.0/readme.txt
r2969088 r3046891 5 5 Tags: forms, form builder, form plugin, wordpress contact form, custom forms,zoho, zoho forms, online forms, mobile forms, embedding forms, embedding zoho forms, embedding web forms, web forms, web to lead form, web to contact form,embed online forms, zoho online forms,crm forms,zoho crm, crm leads,zoho crm forms. 6 6 Requires at least: 2.8 7 Tested up to: 6. 3.18 Stable tag: 3.0.27 Tested up to: 6.4.3 8 Stable tag: 4.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 145 145 * Bug fixes and tested with the latest version of wordpress. 146 146 147 = 4.0 = 148 149 * Supported Japan, Canada and Saudi Arabia data centres for Zoho Forms and bug fixes. 150 147 151 == Upgrade Notice == 148 152 149 = 3.0.2=153 = 4.0 = 150 154 151 * Bug fixes and tested with the latest version of wordpress.155 * Supported Japan, Canada and Saudi Arabia data centres for Zoho Forms and bug fixes. -
zoho-forms/tags/4.0/tinymce/zforms_dailog.js
r2268853 r3046891 276 276 $("#createFormDiv").show(); 277 277 }else{ 278 getForms();279 278 $("#formSelectionDiv").show(); 280 279 } … … 336 335 //constructing url based on domain extention 337 336 function getZohoFormsURL(domain){ 338 if(domain != undefined && domain.length != 0 && domain != "-select-" && (domain == ".com" || domain == ".eu" || domain == ".com.cn" || domain == ".com.au" || domain == ".in")){ 339 return "https://forms.zoho"+domain; 337 if(domain != undefined && domain.length != 0 && domain != "-select-"){ 338 if(domain == ".com" || domain == ".eu" || domain == ".com.cn" || domain == ".com.au" || domain == ".in" || domain == ".jp" || domain == ".sa") { 339 return "https://forms.zoho"+domain; 340 }else if(domain == ".ca") { 341 return "https://forms.zohocloud" + domain; 342 }else { 343 return ""; 344 } 340 345 }else{ 341 346 return ""; … … 344 349 function getZohoURL(domain){ 345 350 if(domain != undefined && domain.length != 0 && domain != "-select-"){ 346 return "https://zoho"+domain; 351 if(domain == ".ca") { 352 return "https://zohocloud"+domain; 353 }else { 354 return "https://zoho"+domain; 355 } 347 356 }else{ 348 357 return ""; -
zoho-forms/tags/4.0/tinymce/zforms_dialog.php
r2268853 r3046891 64 64 <option value=".in">zoho.in</option> 65 65 <option value=".com.au">zoho.com.au</option> 66 <option value=".jp">zoho.jp</option> 67 <option value=".ca">zohocloud.ca</option> 68 <option value=".sa">zoho.sa</option> 66 69 </select> 67 70 -
zoho-forms/tags/4.0/zohoForms.php
r2969088 r3046891 5 5 Plugin URI: http://wordpress.org/extend/plugins/zohoforms 6 6 Description: Embed forms just about anywhere on your WordPress website. Concentrate on just your content and let us take care of the coding for you. 7 Version: 3.0.27 Version: 4.0 8 8 Author: Zoho Forms 9 9 Author URI: https://forms.zoho.com -
zoho-forms/tags/4.0/zohoforms-block.js
r2268853 r3046891 261 261 function getZohoFormsURL(domain){ 262 262 if(domain != undefined && domain.length != 0 && domain != "-select-"){ 263 return "https://forms.zoho"+domain; 263 if(domain == ".ca") { 264 return "https://forms.zohocloud" + domain; 265 }else { 266 return "https://forms.zoho"+domain; 267 } 264 268 }else{ 265 269 return ""; … … 427 431 }, 428 432 "zoho.com.au" 433 ), 434 wpCreateElem("option", 435 { 436 value: ".jp" 437 }, 438 "zoho.jp" 439 ), 440 wpCreateElem("option", 441 { 442 value: ".ca" 443 }, 444 "zohocloud.ca" 445 ), 446 wpCreateElem("option", 447 { 448 value: ".sa" 449 }, 450 "zoho.sa" 429 451 ) 430 452 ) -
zoho-forms/trunk/readme.txt
r2969088 r3046891 6 6 Requires at least: 2.8 7 7 Tested up to: 4.9.6 8 Stable tag: 3.0.28 Stable tag: 4.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.