Changeset 2835474
- Timestamp:
- 12/17/2022 04:17:09 PM (3 years ago)
- Location:
- wc-checkoutplus
- Files:
-
- 12 edited
- 1 copied
-
tags/0.1.9 (copied) (copied from wc-checkoutplus/trunk)
-
tags/0.1.9/README.txt (modified) (5 diffs)
-
tags/0.1.9/vendor/autoload.php (modified) (1 diff)
-
tags/0.1.9/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/0.1.9/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/0.1.9/vendor/composer/installed.php (modified) (2 diffs)
-
tags/0.1.9/wc-checkoutplus.php (modified) (2 diffs)
-
trunk/README.txt (modified) (5 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/wc-checkoutplus.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-checkoutplus/tags/0.1.9/README.txt
r2835446 r2835474 7 7 Requires PHP: 7.4 8 8 Tested up to: 6.1 9 Stable tag: 0.1. 89 Stable tag: 0.1.9 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 Unlimited access to **ALL** field types from text input to HTML fields, including checkboxes and radios. The following filed types are currently available and more are being added regularly 27 27 28 ``` 28 ~~~~ 29 29 * Text 30 30 * Textarea … … 37 37 * HTML 38 38 * Hidden Input 39 ``` 39 ~~~~ 40 40 41 41 #### Re-arrange woocommerce checkout fields … … 61 61 #### 45+ Validation Rules [^1] 62 62 By default WooCommerce comes with a few validation rules like `required` and `phone` but here we offer over 45+ custom validation rules. 63 ``` 63 64 ~~~~ 64 65 If you only want to accept numbers you can just use `numerical` rule. 65 66 If you want to accept only letters, you can use `alpha` rule 66 67 If you want to accept date in any format, you can use the `date` rule. 67 68 If you want regular expression (regex), you can use it too. 68 ``` 69 ~~~~ 69 70 70 71 #### Page Display [^1] … … 78 79 [youtube https://youtu.be/rn1kEI3gt3A] 79 80 80 <sub>[1]: This may be a pro feature.<sub>81 81 [^1]: This may be a pro feature. 82 82 -
wc-checkoutplus/tags/0.1.9/vendor/autoload.php
r2835446 r2835474 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c::getLoader();25 return ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d::getLoader(); -
wc-checkoutplus/tags/0.1.9/vendor/composer/autoload_real.php
r2835446 r2835474 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c5 class ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
wc-checkoutplus/tags/0.1.9/vendor/composer/autoload_static.php
r2835446 r2835474 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c7 class ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 33 33 { 34 34 return \Closure::bind(function () use ($loader) { 35 $loader->prefixLengthsPsr4 = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$prefixLengthsPsr4;36 $loader->prefixDirsPsr4 = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$prefixDirsPsr4;37 $loader->classMap = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$classMap;35 $loader->prefixLengthsPsr4 = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$prefixLengthsPsr4; 36 $loader->prefixDirsPsr4 = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$prefixDirsPsr4; 37 $loader->classMap = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$classMap; 38 38 39 39 }, null, ClassLoader::class); -
wc-checkoutplus/tags/0.1.9/vendor/composer/installed.php
r2835446 r2835474 2 2 'root' => array( 3 3 'name' => 'figarts/checkoutplus', 4 'pretty_version' => '0.1. 8',5 'version' => '0.1. 8.0',6 'reference' => ' 0e9bc4e07fa40cf1048c040f62a5f9bfb8056367',4 'pretty_version' => '0.1.9', 5 'version' => '0.1.9.0', 6 'reference' => 'e86eef6551259e078739cf71fd1326fc19375e57', 7 7 'type' => 'wordpress-plugins', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'figarts/checkoutplus' => array( 23 'pretty_version' => '0.1. 8',24 'version' => '0.1. 8.0',25 'reference' => ' 0e9bc4e07fa40cf1048c040f62a5f9bfb8056367',23 'pretty_version' => '0.1.9', 24 'version' => '0.1.9.0', 25 'reference' => 'e86eef6551259e078739cf71fd1326fc19375e57', 26 26 'type' => 'wordpress-plugins', 27 27 'install_path' => __DIR__ . '/../../', -
wc-checkoutplus/tags/0.1.9/wc-checkoutplus.php
r2835446 r2835474 11 11 * Plugin URI: https://pluginette.com 12 12 * Description: The easiest way to manage WooCommerce checkout fields 13 * Version: 0.1. 813 * Version: 0.1.9 14 14 * Requires at least: 5.2 15 15 * Requires PHP: 7.4 … … 31 31 * Rename this for your plugin and update it as you release new versions. 32 32 */ 33 define( 'CHECKOUTPLUS_VERSION', '0.1. 8' );33 define( 'CHECKOUTPLUS_VERSION', '0.1.9' ); 34 34 define( 'CHECKOUTPLUS_DIR_PATH', plugin_dir_path( __FILE__ ) ); 35 35 define( 'CHECKOUTPLUS_DIR_URL', plugin_dir_url( __FILE__ ) ); -
wc-checkoutplus/trunk/README.txt
r2835446 r2835474 7 7 Requires PHP: 7.4 8 8 Tested up to: 6.1 9 Stable tag: 0.1. 89 Stable tag: 0.1.9 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 Unlimited access to **ALL** field types from text input to HTML fields, including checkboxes and radios. The following filed types are currently available and more are being added regularly 27 27 28 ``` 28 ~~~~ 29 29 * Text 30 30 * Textarea … … 37 37 * HTML 38 38 * Hidden Input 39 ``` 39 ~~~~ 40 40 41 41 #### Re-arrange woocommerce checkout fields … … 61 61 #### 45+ Validation Rules [^1] 62 62 By default WooCommerce comes with a few validation rules like `required` and `phone` but here we offer over 45+ custom validation rules. 63 ``` 63 64 ~~~~ 64 65 If you only want to accept numbers you can just use `numerical` rule. 65 66 If you want to accept only letters, you can use `alpha` rule 66 67 If you want to accept date in any format, you can use the `date` rule. 67 68 If you want regular expression (regex), you can use it too. 68 ``` 69 ~~~~ 69 70 70 71 #### Page Display [^1] … … 78 79 [youtube https://youtu.be/rn1kEI3gt3A] 79 80 80 <sub>[1]: This may be a pro feature.<sub>81 81 [^1]: This may be a pro feature. 82 82 -
wc-checkoutplus/trunk/vendor/autoload.php
r2835446 r2835474 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c::getLoader();25 return ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d::getLoader(); -
wc-checkoutplus/trunk/vendor/composer/autoload_real.php
r2835446 r2835474 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c5 class ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit 7cfea782e25a69a20a3d210302f7393c', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb3b764242138f3d6aec4f9241ab4c76d', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
wc-checkoutplus/trunk/vendor/composer/autoload_static.php
r2835446 r2835474 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c7 class ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 33 33 { 34 34 return \Closure::bind(function () use ($loader) { 35 $loader->prefixLengthsPsr4 = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$prefixLengthsPsr4;36 $loader->prefixDirsPsr4 = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$prefixDirsPsr4;37 $loader->classMap = ComposerStaticInit 7cfea782e25a69a20a3d210302f7393c::$classMap;35 $loader->prefixLengthsPsr4 = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$prefixLengthsPsr4; 36 $loader->prefixDirsPsr4 = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$prefixDirsPsr4; 37 $loader->classMap = ComposerStaticInitb3b764242138f3d6aec4f9241ab4c76d::$classMap; 38 38 39 39 }, null, ClassLoader::class); -
wc-checkoutplus/trunk/vendor/composer/installed.php
r2835446 r2835474 2 2 'root' => array( 3 3 'name' => 'figarts/checkoutplus', 4 'pretty_version' => '0.1. 8',5 'version' => '0.1. 8.0',6 'reference' => ' 0e9bc4e07fa40cf1048c040f62a5f9bfb8056367',4 'pretty_version' => '0.1.9', 5 'version' => '0.1.9.0', 6 'reference' => 'e86eef6551259e078739cf71fd1326fc19375e57', 7 7 'type' => 'wordpress-plugins', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'figarts/checkoutplus' => array( 23 'pretty_version' => '0.1. 8',24 'version' => '0.1. 8.0',25 'reference' => ' 0e9bc4e07fa40cf1048c040f62a5f9bfb8056367',23 'pretty_version' => '0.1.9', 24 'version' => '0.1.9.0', 25 'reference' => 'e86eef6551259e078739cf71fd1326fc19375e57', 26 26 'type' => 'wordpress-plugins', 27 27 'install_path' => __DIR__ . '/../../', -
wc-checkoutplus/trunk/wc-checkoutplus.php
r2835446 r2835474 11 11 * Plugin URI: https://pluginette.com 12 12 * Description: The easiest way to manage WooCommerce checkout fields 13 * Version: 0.1. 813 * Version: 0.1.9 14 14 * Requires at least: 5.2 15 15 * Requires PHP: 7.4 … … 31 31 * Rename this for your plugin and update it as you release new versions. 32 32 */ 33 define( 'CHECKOUTPLUS_VERSION', '0.1. 8' );33 define( 'CHECKOUTPLUS_VERSION', '0.1.9' ); 34 34 define( 'CHECKOUTPLUS_DIR_PATH', plugin_dir_path( __FILE__ ) ); 35 35 define( 'CHECKOUTPLUS_DIR_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.