Download the PHP package anlutro/form without Composer
On this page you can find all versions of the php package anlutro/form. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package form
PHP Form Builder

Sick of the bugs and quirks present in the default Laravel 4 form builder, I wrote my own and made it framework-agnostic. Features include:
- Each form is its own object with (optionally) its own behaviours
- Set a model for the form object to pre-fill the form inputs with
- Get old input from session
- Validate input
WARNING: Backwards compatibility is not guaranteed during version 0.x.
Installation
composer require anlutro/form
Pick the latest stable version from packagist or the GitHub tag list.
Laravel 4
Add 'anlutro\Form\ServiceProvider' to the list of providers in app/config/app.php.
Other frameworks/raw PHP
You will need to set up a shared instance of anlutro\Form\Builder
, and this should be injected into all Form instances.
In order to get input from a Form instance, you should setRequest
on the Builder instance. The request should be an instance of Symfony\Component\HttpFoundation\Request
.
For old input from session, CSRF tokens and validation to work, you need to construct and set a session and/or validation service on the Builder instance. The interfaces are located in the Adapters
namespace, and once you have an object that implements these you can set them via setSessionAdapter
and setValidationAdapter
.
If you have written an adapter for popular libraries, please consider a pull request so it can be added to the package!
Usage
For simple forms, we'll use the class anlutro\Form\DefaultForm
. Inject this into your controller...
Or just construct it, if you have an instance of the Form\Builder
available.
In your controller action you can define the behaviour of the form. All of the following are optional.
Pass the form to your view in the controller action that shows the form. In your view - using whatever templating engine you have available:
In the controller action that handles the POST request of the form:
If your form has custom behaviour - getters, setters etc., you can extend the AbstractForm
class and inject your custom class instead of the DefaultForm
.
Check the examples directory for more information.
Contact
Open an issue on GitHub if you have any problems or suggestions.
License
The contents of this repository is released under the MIT license.