Plugin Directory

Changeset 2773368


Ignore:
Timestamp:
08/22/2022 09:49:59 AM (4 years ago)
Author:
pcivault
Message:

PCIVault reduce required wp version

Location:
pci-vault-forms
Files:
1 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pci-vault-forms/tags/1.0.1/pcivault-forms.php

    r2772611 r2773368  
    44Plugin Name: PCI Vault Forms
    55Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment.
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: PCI Vault
    88Author URI: https://pcivault.io
     
    3030
    3131    wp_enqueue_style("pcivault_capture_style", "https://api.pcivault.io/pcd/pcd_form.css");
    32     wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js");
     32    wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js", array(), false, false);
    3333
    3434    return '
     
    3636    ' . wp_get_inline_script_tag(
    3737            '
    38             window.pcd_form(document.getElementById("pcivault_pcd_form"), {
    39             submit_secret: "' . $parsed_body["secret"] . '",
    40             submit_url: "' . $parsed_body["url"] . '"
     38            window.addEventListener("load", function(){
     39                window.pcd_form(document.getElementById("pcivault_pcd_form"), {
     40                    submit_secret: "' . $parsed_body["secret"] . '",
     41                    submit_url: "' . $parsed_body["url"] . '"
     42                })
    4143            })
    4244            ',
    4345            array(
    44                 "defer" => True,
     46                "defer" => "defer",
    4547            )
    4648        );
  • pci-vault-forms/tags/1.0.1/readme.txt

    r2772611 r2773368  
    33Donate link: https://pcivault.io/
    44Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization
    5 Requires at least: 6.0.1
     5Requires at least: 5.7.0
    66Tested up to: 6.0.1
    7 Stable tag: 1.0.0
    8 Requires PHP: 7.4
     7Stable tag: 1.0.1
    98License: MIT
    109License URI: https://opensource.org/licenses/MIT
     
    6665== Changelog ==
    6766
     67= 1.0.1 (2022-08-22) =
     68* Reduce required Wordpress version from 6.0.1 to 5.7.0
     69
    6870= 1.0.0 (2022-08-17) =
    6971* Initial version
  • pci-vault-forms/trunk/pcivault-forms.php

    r2772611 r2773368  
    44Plugin Name: PCI Vault Forms
    55Description: Securely capture card data using PCI Vault, which is a vendor neutral PCI DSS compliant environment.
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: PCI Vault
    88Author URI: https://pcivault.io
     
    3030
    3131    wp_enqueue_style("pcivault_capture_style", "https://api.pcivault.io/pcd/pcd_form.css");
    32     wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js");
     32    wp_enqueue_script("pcivault_capture_script", "https://api.pcivault.io/pcd/pcd_form.js", array(), false, false);
    3333
    3434    return '
     
    3636    ' . wp_get_inline_script_tag(
    3737            '
    38             window.pcd_form(document.getElementById("pcivault_pcd_form"), {
    39             submit_secret: "' . $parsed_body["secret"] . '",
    40             submit_url: "' . $parsed_body["url"] . '"
     38            window.addEventListener("load", function(){
     39                window.pcd_form(document.getElementById("pcivault_pcd_form"), {
     40                    submit_secret: "' . $parsed_body["secret"] . '",
     41                    submit_url: "' . $parsed_body["url"] . '"
     42                })
    4143            })
    4244            ',
    4345            array(
    44                 "defer" => True,
     46                "defer" => "defer",
    4547            )
    4648        );
  • pci-vault-forms/trunk/readme.txt

    r2772611 r2773368  
    33Donate link: https://pcivault.io/
    44Tags: pci, dss, pci-dss, credit-card, creditcard, tokenization
    5 Requires at least: 6.0.1
     5Requires at least: 5.7.0
    66Tested up to: 6.0.1
    7 Stable tag: 1.0.0
    8 Requires PHP: 7.4
     7Stable tag: 1.0.1
    98License: MIT
    109License URI: https://opensource.org/licenses/MIT
     
    6665== Changelog ==
    6766
     67= 1.0.1 (2022-08-22) =
     68* Reduce required Wordpress version from 6.0.1 to 5.7.0
     69
    6870= 1.0.0 (2022-08-17) =
    6971* Initial version
Note: See TracChangeset for help on using the changeset viewer.