# alekseon/custom-forms-builder

> N/A

`composer require alekseon/custom-forms-builder`

Canonical URL: https://packagento.com/alekseon/custom-forms-builder

## At a glance

- **Vendor**: alekseon (https://packagento.com/alekseon.md)
- **Latest version**: 102.3.20 — released 2026-04-16
- **Pricing**: Free
- **Package type**: Magento 2 module
- **Status**: active, accepting new buyers

## Installation

Packagento is licence-gated, so even free packages need a licence on a project before Composer can resolve them.

1. **Sign in or create an account** at https://packagento.com/customer/account/.

2. **Add the package to your account.** Open https://packagento.com/alekseon/custom-forms-builder and complete the free checkout. A licence is minted automatically.

3. **Create or pick a project, then activate the licence on it.**
   - Projects represent the Magento installs you deploy to. Manage them at https://packagento.com/projects/.
   - Activate the new licence on the project you'll deploy this package to. Activation is what generates the Composer credentials scoped to that project.

4. **Add the project credentials to your Magento codebase.**

   Grab the project's public + private key from https://packagento.com/projects/ (open the project, then its Credentials tab), and add them to `auth.json`:

   ```json
   {
     "http-basic": {
       "packagento.com": {
         "username": "ppk_live_...",
         "password": "psk_live_..."
       }
     }
   }
   ```

   Add the Packagento Composer repository to `composer.json`:

   ```json
   {
     "repositories": [
       { "type": "composer", "url": "https://packagento.com" }
     ]
   }
   ```

5. **Install and apply.**

   ```bash
   composer require alekseon/custom-forms-builder:*
   bin/magento setup:upgrade
   bin/magento setup:di:compile
   bin/magento cache:flush
   ```

## What it does

N/A

## README

<h1 align="center">  
<br/>
  <img src="https://i.imgur.com/b2oclHA.png" alt="Custom Forms Builder" width="400">  
  <br>  
  Alekseon_CustomFormsBuilder  
  <br>  
</h1>  
  
<h4 align="center">A Custom Form Builder for Magento 2</h4>  
  
<p align="center"><i>Let you create custom forms in Admin panel</i></p>  
  
<p align="center">
  <a href="https://packagist.org/packages/alekseon/custom-forms-builder">
    <img src="https://poser.pugx.org/alekseon/custom-forms-builder/v/stable"
         alt="Latest Stable Version">
  </a>
  <a href="https://packagist.org/packages/alekseon/custom-forms-builder/stats">
    <img src="https://poser.pugx.org/alekseon/custom-forms-builder/downloads"
         alt="Total Downloads">
  </a>
  <a href="https://app.travis-ci.com/github/Alekseon/magento2-custom-forms-builder">
    <img src="https://app.travis-ci.com/Alekseon/magento2-custom-forms-builder.svg?branch=master"
         alt="Travis CI build status">
  </a>
</p>
  
### Installation  
  
In your Magento2 root directory, you may install this package via composer:  
  
```  
composer require alekseon/custom-forms-builder  
bin/magento setup:upgrade  
```  
  
### Dependencies

This extension gives you possibility to create forms in admin panel. If you want to place them on frontend by CMS content, please check this extension: [Alekseon_WidgetForms](https://github.com/Alekseon/magento2-widget-forms)

  
### Support  
  
CJM Ver. | Magento 2.0 | Magento 2.1 | Magento 2.2 | Magento 2.3 | Magento 2.4  
--- | :---: | :---: | :---: | :---: | :---:  
1.x | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark:  
  
  
### Features  
  
#### Create fully customized forms in Magento2 Admin Panel
  
  
Create as many forms as you need. Define the title and the fields. 
You can choose from field types:
* Text Field
* Text Area
* Yes/No
* Dropdown
* Multiple Select
* Date
* Image
  
<img src="https://i.imgur.com/PnzzGaj.png"/>  
  
#### Manage fields as regular attributes 
  
Thanks to the EAV structure, you can manage every field of your form similarly to how you manage regular attribute in Magento.


  
<img src="https://i.imgur.com/Wlsrx0B.png"/>  
  
  
#### Add and access your form objects easily
  
You can view and manage the form applications by regular Magento grid
  
<img src="https://i.imgur.com/5GEypQf.png"/>  
  
#### Add Forms to CMS Pages 
  
Please refer to [Alekseon_WidgetForms](https://github.com/Alekseon/magento2-widget-forms) if you want to be able to add these forms to CMS pages for your customers. 
  
#### Email notifications  
  
@Todo
 
  
### Issue Tracking / Upcoming Features  
  
For issues, please use the [issue tracker](https://github.com/Alekseon/magento2-custom-forms-builder/issues).  
  
Issues keep this project alive and strong, so let us know if you find anything!  
  
We're planning on pumping out a ton of new features, which you can follow on our [project page](https://github.com/Alekseon/magento2-custom-forms-builder/projects/1).  
  
#### Development / Contribution  
  
If you want to contribute please follow the below instructions:  
  
1. Create an issue and describe your idea  
2. [Fork this repository](https://github.com/Alekseon/magento2-custom-forms-builder/fork)  
3. Create your feature branch (`git checkout -b my-new-feature`)  
4. Commit your changes  
5. Publish the branch (`git push origin my-new-feature`)  
6. Submit a new Pull Request for review  
  
### Maintainers  
  
Current maintainers:  

* [Linek](https://github.com/Linek)
* [marcinfr](https://github.com/marcinfr)
  
See also our [contributors](https://github.com/Alekseon/magento2-custom-forms-builder/graphs/contributors)  
  
  
### License  
  
[The Open Software License 3.0 (OSL-3.0)](https://opensource.org/licenses/OSL-3.0)

## Changelog

All notable changes to this project will be documented in this file.

### [Unreleased]
#### Changed
#### Fixed
#### Added

### [102.3.20] - 2026-04-16
- use created_from_store_id to get form from record (used for correct form data in emails notifications)

### [102.3.19] - 2026-02-19
- frontend notes for form fields

### [102.3.18] - 2025-12-02
#### Added
- check field visibility to display on grid or form
- setData and unset Data can use identifier on form record object
#### Changed
- moved fieldsIdentifierMap to from object
- removed visibility filter on fields collection (now its check during rendering field)

### [102.3.17] - 2025-12-01
#### Added
- add attribute code map to getData() 

### [102.3.16] - 2025-11-17
#### Fixed
- Php 8.4 compatibility (https://github.com/Alekseon/magento2-widget-forms/issues/29)

### [102.3.15] - 2025-07-30
#### Added
- Messages Field type (for now used by Alekseon_CustomFormsEmailNotification)

### [102.3.14] - 2024-11-17
#### Added
- postal code validator
- file uploader validations (moved from Alekseon_CustomFormBilder)

### [102.3.13] - 2024-09-25
#### Fixed
- fix getMappedAttributeCode method

### [102.3.12] - 2024-05-24
#### Fixed
- Translate labels (https://github.com/Alekseon/AlekseonEav/issues/45)

### [102.3.11] - 2024-05-09
#### Fixed
- make "Admin Note" translatable

### [102.3.10] - 2024-02-25
#### Changed
- Raplaced "Is Enabled" by "Input Visibility", it allows to set input visibility to: visible, only for admin or none

### [102.3.9] - 2023-12-03
#### Added
- Max Size param (for file input validator) 
- note for params

### [102.3.8] - 2023-05-22
#### Added
- manage form button on records view + acl permission
- Yes/No option source
- check if source model class exists 
#### Fixed 
- fix for saving fields in tabs for new forms

### [102.3.7] - 2023-05-09
#### Changed
- code quality improvements
- replaced install and upgrade scripts by patches
#### Fixed
- hide delete massaction if no permisstion set

### [102.3.6] - 2023-05-08
#### Changed
- code quality improvements

### [102.3.5] - 2023-05-01
#### Added
- github actions
- introduced strict_types
#### Fixed
- display default label instead of store label as fieldset label
- stay on same scope view after "save and continue" form
- code quality improvements

### [102.3.4] - 2023-04-22
#### Fixed
- fixed mass delete action
- remove image file during mass delete action

### [102.3.3] - 2023-04-21
#### Added
- Created From Store Id for Record entity 
- system.xml file
#### Fixed
- added missing group_fields_in column to alekseon_custom_form table

### [102.3.2] - 2023-03-12
#### Added
- small alekseon logo
- cache tags
- getRecordCollection() and getRecordById() methods in Form class
- filter,sort,select on form records collection by field identifier
- getData from form record by field identifier

### [102.3.1] - 2023-03-04
#### Fixed
- removed "Options Source" input from rating and boolean fields

### [102.3.0] - 2023-03-03
#### Added
- possibility to disable form field
- check if "is required" field is editable
- scopable records grid and record edit page
- group fields in tabs
- added "alekseon/widget-forms-statistics" in composer
#### Changed
- use ajax on grids

### [102.2.3] - 2023-02-27
#### Added
- notification with link to wiki

### [102.2.2] - 2022-11-19
#### Fixed
- fix setUp() declaration in tests
#### Added
- admin note field
- mass delete action for form records

### [102.2.1] - 2022-10-22
#### Fixed
- fix error during setup:upgrade for fresh installation

### [102.2.0] - 2022-10-22
#### Added
- form identifier
- field identifier
- form property in form record attribute
- added alekseon/custom-forms-frontend requirerment to composer
#### Changed
- max length validator modifications
- moved table definition to db_schema.xml

### [102.1.2] - 2022-10-13
#### Changed
- chenged composer requirements
- small fix in setup upgrade

_(Changelog truncated for .md surface. Full history on https://packagento.com/alekseon/custom-forms-builder.)_

## Recent Versions

| Version | Released |
|---|---|
| 102.3.20 | 2026-04-16 |
| 102.3.19 | 2026-02-19 |
| 102.3.18 | 2025-12-02 |
| 102.3.17 | 2025-12-01 |
| 102.3.16 | 2025-11-17 |
| 102.3.15 | 2025-07-31 |
| 102.3.14 | 2024-11-22 |
| 102.3.13 | 2024-09-25 |
| 102.3.12 | 2024-05-24 |
| 102.3.11 | 2024-05-09 |

Showing 10 of 38 versions. Full release history on https://packagento.com/alekseon/custom-forms-builder.

## Dependencies

### Require

| Package | Constraint |
|---|---|
| alekseon/alekseon-eav | ^101.2.15 |
| alekseon/custom-forms-email-notification | * |
| alekseon/custom-forms-frontend | * |
| alekseon/widget-forms-statistics | * |

## Quality

Latest release (102.3.20) fails the Packagento QA pipeline. Verdicts below are per-cell (Magento line × PHP version) for the matrixed tools, and run-once for the static / security tiers.


### Compatibility

Each Magento line is installed on its supported PHP versions, then the module is built (DI compile + static-content deploy). Cells show passed / failed / untested; staircase gaps render as `–`.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | Pass | Pass | – | – |
| 2.4.8 | – | Pass | Pass | – |
| 2.4.9 | – | – | Pass | Pass |


### Code Quality

Advisory checks against the module's source. Never affect the Compatibility verdict — a phpcs finding can't make a module incompatible.

#### Static Analysis

Coding standards (phpcs), mess detection (phpmd), copy-pasted code (cpd), PHP cross-version compatibility, composer.json validity. Each runs once for the whole module.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| PHPCS | Fail | 255 | 10 errors, 245 warnings (ruleset: Magento2) — 170 auto-fixable with phpcbf |
| PHPMD | Warning | 4 | 4 rule violations (IfStatementAssignment:2, MissingImport:1, EmptyCatchBlock:1) |
| Cpd | Pass | 0 |  |
| Composer validate | Warning | 4 | valid with 4 warnings (composer validate --strict) |

#### PHPStan

Type-checks the module against a real Magento install. Re-runs per Magento + PHP version because resolvable symbols differ between releases.

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | 169 | 169 | – | – |
| 2.4.8 | – | 169 | 169 | – |
| 2.4.9 | – | – | 169 | 169 |


### Tests

Unit and integration suites run per Magento + PHP cell. Test failures speak to the module's behaviour, not its compatibility with a line, so they're reported here separately.

#### Unit Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |

#### Integration Tests

| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | – | – |
| 2.4.8 | – | N/A | N/A | – |
| 2.4.9 | – | – | N/A | N/A |


### Security

Dependency-advisory audit (composer audit) plus a source malware scan. A malware detection fails the version outright.

| Tool | Status | Findings | Summary |
|---|---|---|---|
| Composer audit | Pass | 0 |  |
| Malware scan | Pass | 0 |  |

## Licence and pricing

Free. A licence is still minted on checkout and bound to your project for Composer access — no payment step.

Refundable within 14 days of first purchase via https://packagento.com/account/refunds/.

## Install via Claude Code or any MCP client

The Packagento MCP server can run the licence + project + Composer steps above in one tool call:

```
purchase_and_install_packages(
  composer_names=["alekseon/custom-forms-builder"],
  project_id="proj_xxx"
)
```

This handles cart, checkout, licence minting, project activation, and writes auth.json credentials. Connect a client with `claude mcp add packagento https://mcp.packagento.com`. Full setup at https://packagento.com/docs/mcp-setup.

## Vendor

alekseon is a Magento 2 vendor on Packagento. See https://packagento.com/alekseon.md for their full catalogue.

