Changeset 3439965
- Timestamp:
- 01/15/2026 03:34:04 AM (8 weeks ago)
- Location:
- griffinforms-form-builder/trunk
- Files:
-
- 17 added
- 4 edited
-
blocks (added)
-
blocks/gutenberg (added)
-
blocks/gutenberg/assets (added)
-
blocks/gutenberg/assets/icons (added)
-
blocks/gutenberg/assets/icons/block.svg (added)
-
blocks/gutenberg/assets/icons/builder.svg (added)
-
blocks/gutenberg/assets/icons/edit.svg (added)
-
blocks/gutenberg/block.json (added)
-
blocks/gutenberg/editor.css (added)
-
blocks/gutenberg/icons.js (added)
-
blocks/gutenberg/index.js (added)
-
blocks/gutenberg/overrides.js (added)
-
config.php (modified) (1 diff)
-
editors (added)
-
editors/gutenberg (added)
-
editors/gutenberg/previewrenderer.php (added)
-
editors/gutenberg/registrar.php (added)
-
editors/gutenberg/rest.php (added)
-
griffinforms.php (modified) (2 diffs)
-
items/field.php (modified) (1 diff)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
griffinforms-form-builder/trunk/config.php
r3433300 r3439965 5 5 class Config 6 6 { 7 public const VERSION = '2.1. 3.0';7 public const VERSION = '2.1.4.0'; 8 8 public const DB_VER = '1.0'; 9 9 public const PHP_REQUIRED = '8.2'; -
griffinforms-form-builder/trunk/griffinforms.php
r3433300 r3439965 4 4 * Plugin URI: https://griffinforms.com/ 5 5 * Description: A powerful and flexible form builder for WordPress. Create multi-page forms with drag-and-drop ease, custom validations, and full submission management. 6 * Version: 2.1. 3.06 * Version: 2.1.4.0 7 7 * Requires at least: 6.6 8 8 * Requires PHP: 8.2 … … 100 100 new Frontend\ShortCodes(); 101 101 } 102 103 // Register Block Editor integrations (Gutenberg block + REST) 104 Editors\Gutenberg\Registrar::register(); 102 105 }, 9); 103 106 -
griffinforms-form-builder/trunk/items/field.php
r3299683 r3439965 7 7 protected $field_type; 8 8 protected $label; 9 protected $ helptext;9 protected $description; 10 10 protected $is_required; 11 11 protected $is_hidden; -
griffinforms-form-builder/trunk/readme.txt
r3433315 r3439965 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.2 7 Stable tag: 2.1. 3.07 Stable tag: 2.1.4.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 20 20 1. Create a form in **GriffinForms → Forms**. 21 21 2. Add pages/rows/columns, then insert fields from the field library. 22 3. Publish the form using the shortcode: `[griffinforms_form id="123"]` .22 3. Publish the form using the shortcode: `[griffinforms_form id="123"]`, or insert the **GriffinForms** block in the WordPress block editor. 23 23 24 24 Tip: start with a single-page contact form, then expand into multi-step forms as you add conditional logic, uploads, and integrations. … … 40 40 - **Validations**: enforce required rules and common constraints so submissions stay clean. 41 41 - **File uploads**: accept files as part of a submission and manage uploads from the admin. 42 - **Gutenberg block**: embed forms in the block editor with a lightweight preview and quick edit links. 42 43 - **Payments**: collect payments through Stripe where configured (useful for donations, applications, and orders). 43 44 - **Email notifications**: send notifications and route delivery via Custom SMTP, SendGrid, or Mailgun. … … 370 371 == Changelog == 371 372 373 = 2.1.4.0 – 2026-01-15 = 374 * Feature: New Gutenberg block for embedding GriffinForms with a lightweight editor preview. 375 * Improvement: Preview respects form theme styles (labels, fields, buttons) without loading frontend runtime. 376 * Improvement: Editor toolbar shortcuts to open Edit Form and Form Builder in new tabs. 377 * Improvement: Multi-page preview navigation inside the block editor. 378 372 379 = 2.1.3.0 – 2026-01-06 = 373 380 * Feature: Admin alert emails can map each recipient to a message template with a default fallback. … … 658 665 == Upgrade Notice == 659 666 667 = 2.1.4.0 = 668 Adds a native Gutenberg block with a lightweight, theme-aware editor preview and quick links to edit forms. Recommended update for block editor users. 669 660 670 = 2.1.3.0 = 661 671 Admin alerts can now use per-recipient message templates with mail-merge placeholders, and the message editor includes a token builder. Includes new starter templates and improved mail logging. Recommended update.
Note: See TracChangeset
for help on using the changeset viewer.