Changeset 2175794
- Timestamp:
- 10/18/2019 06:51:44 PM (6 years ago)
- Location:
- gf-loqate-bank-verification/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (5 diffs)
-
gf-loqate-bank-verification.php (modified) (1 diff)
-
src/Plugin.php (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gf-loqate-bank-verification/trunk/README.txt
r2175780 r2175794 6 6 Tested up to: 5.3 7 7 Requires PHP: 7.2 8 Stable tag: 0.4. 08 Stable tag: 0.4.1 9 9 License: MIT 10 10 License URI: https://opensource.org/licenses/MIT … … 14 14 == Description == 15 15 16 ## Goal16 ### Goal 17 17 18 18 [GF Loqate Bank Verification](https://github.com/ItinerisLtd/gf-loqate-bank-verification) verifies [Gravity Forms](https://www.gravityforms.com/) bank details with [Loqate bank verification API](https://www.loqate.com/resources/support/apis/BankAccountValidation/Interactive/Validate/2/). 19 19 20 20 It validates the bank details (branch sort codes and bank account numbers): 21 - indicates whether the account number and sort code are valid21 - indicates whether the account number and sort code are valid 22 22 - indicates whether the account can accept direct debits. Certain accounts (e.g. savings) will not accept direct debits 23 23 24 ## Usage24 ### Usage 25 25 26 26 1. Get your service key from Loqate … … 41 41 - `gflbv-account-number-is-correct` 42 42 43 ## For Developers43 ### For Developers 44 44 45 45 Fork the plugin on [GitHub](https://github.com/ItinerisLtd/gf-loqate-bank-verification). … … 51 51 - PHP v7.2 52 52 - WordPress v4.9.10 53 - [Gravity Forms](https://www. Gravity Forms.com/) v2.4.14.453 - [Gravity Forms](https://www.gravityforms.com/) v2.4.14.4 54 54 55 55 ### Does it support checking for Direct Debit capability? … … 63 63 Yes. Loqate API responses are cached in [WordPress transients](https://codex.wordpress.org/Transients_API) for an hour. 64 64 65 To clear caches: 65 To clear caches: `wp transient delete --all` 66 66 67 ```bash 68 wp transient delete --all 69 ``` 67 Or, re-save service key on the setting page. 70 68 71 69 ### Will you add support for older PHP versions? -
gf-loqate-bank-verification/trunk/gf-loqate-bank-verification.php
r2175780 r2175794 5 5 * Plugin URI: https://github.com/ItinerisLtd/gf-loqate-bank-verification 6 6 * Description: Verify Gravity Forms bank details with Loqate bank verification API. 7 * Version: 0.4. 07 * Version: 0.4.1 8 8 * Requires at least: 4.9.10 9 9 * Requires PHP: 7.2 -
gf-loqate-bank-verification/trunk/src/Plugin.php
r2175780 r2175794 17 17 class Plugin 18 18 { 19 public const VERSION = '0.4. 0';19 public const VERSION = '0.4.1'; 20 20 21 21 public static function run(): void -
gf-loqate-bank-verification/trunk/vendor/autoload.php
r2175780 r2175794 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit b1020b717b89bcc404bc83824567eb12::getLoader();7 return ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69::getLoader(); -
gf-loqate-bank-verification/trunk/vendor/composer/autoload_real.php
r2175780 r2175794 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit b1020b717b89bcc404bc83824567eb125 class ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit b1020b717b89bcc404bc83824567eb12', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit b1020b717b89bcc404bc83824567eb12', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit94a3cb33cbe4ec51d1796e88b4657e69', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInit b1020b717b89bcc404bc83824567eb12::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
gf-loqate-bank-verification/trunk/vendor/composer/autoload_static.php
r2175780 r2175794 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit b1020b717b89bcc404bc83824567eb127 class ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 46 46 { 47 47 return \Closure::bind(function () use ($loader) { 48 $loader->prefixLengthsPsr4 = ComposerStaticInit b1020b717b89bcc404bc83824567eb12::$prefixLengthsPsr4;49 $loader->prefixDirsPsr4 = ComposerStaticInit b1020b717b89bcc404bc83824567eb12::$prefixDirsPsr4;50 $loader->classMap = ComposerStaticInit b1020b717b89bcc404bc83824567eb12::$classMap;48 $loader->prefixLengthsPsr4 = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$prefixLengthsPsr4; 49 $loader->prefixDirsPsr4 = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$prefixDirsPsr4; 50 $loader->classMap = ComposerStaticInit94a3cb33cbe4ec51d1796e88b4657e69::$classMap; 51 51 52 52 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.