diff --git a/give.php b/give.php index 86a38027d8..3505524208 100644 --- a/give.php +++ b/give.php @@ -6,9 +6,9 @@ * Description: The most robust, flexible, and intuitive way to accept donations on WordPress. * Author: GiveWP * Author URI: https://givewp.com/ - * Version: 2.32.0 - * Requires at least: 5.0 - * Requires PHP: 7.0 + * Version: 3.0.0 + * Requires at least: 5.9 + * Requires PHP: 7.2 * Text Domain: give * Domain Path: /languages * @@ -330,7 +330,7 @@ private function setup_constants() { // Plugin version. if (!defined('GIVE_VERSION')) { - define('GIVE_VERSION', '2.32.0'); + define('GIVE_VERSION', '3.0.0'); } // Plugin Root File. diff --git a/readme.txt b/readme.txt index ed60405a67..484fec98d6 100644 --- a/readme.txt +++ b/readme.txt @@ -2,10 +2,10 @@ Contributors: givewp, dlocc, webdevmattcrom, ravinderk, mehul0810, kevinwhoffman, jason_the_adams, henryholtgeerts, kbjohnson90, alaca, benmeredithgmailcom, jonwaldstein, joshuadinh, glaubersilvawp, pauloiankoski Donate link: https://go.givewp.com/home Tags: donation, donate, recurring donations, fundraising, crowdfunding -Requires at least: 5.0 +Requires at least: 5.9 Tested up to: 6.3 -Requires PHP: 7.0 -Stable tag: 2.32.0 +Requires PHP: 7.2 +Stable tag: 3.0.0 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -258,6 +258,9 @@ The 2% fee on Stripe donations only applies to donations taken via our free Stri 8. GiveWP has a dedicated support team to help answer any questions you may have and help you through stumbling blocks. == Changelog == += 3.0.0: August 15th, 2023 = +* New: GiveWP 3.0 is here! This is a major release that includes a new visual form builder and many more. Read more about it [on our website](https://go.givewp.com/corenextgen). + = 2.32.0: August 11th, 2023 = * Feature: Scroll Stripe modal into view for Legacy + Multi-step forms * Feature: Added check for application/json in form headers accept diff --git a/src/FormBuilder/Routes/RegisterFormBuilderPageRoute.php b/src/FormBuilder/Routes/RegisterFormBuilderPageRoute.php index 1139819b55..68a0007c06 100644 --- a/src/FormBuilder/Routes/RegisterFormBuilderPageRoute.php +++ b/src/FormBuilder/Routes/RegisterFormBuilderPageRoute.php @@ -2,10 +2,11 @@ namespace Give\FormBuilder\Routes; -use Give\Addon\View; + use Give\FormBuilder\FormBuilderRouteBuilder; use Give\FormBuilder\ViewModels\FormBuilderViewModel; use Give\Framework\EnqueueScript; +use Give\Framework\Views\View; use Give\Helpers\Hooks; use Give\Log\Log; diff --git a/src/Framework/Views/View.php b/src/Framework/Views/View.php new file mode 100644 index 0000000000..5c53c2e7da --- /dev/null +++ b/src/Framework/Views/View.php @@ -0,0 +1,88 @@ +