ajaximple/forms

Nette form extensions from AJAXimple.

v5.0.0 2025-05-25 14:22 UTC

README

GitLab Tag GitLab Release Packagist Downloads Packagist License Gitlab Pipeline Status Packagist Dependency Version

Quickstart

This extension add more form components to Yours forms.

Instalation

Download

The best way to install AJAXimple/forms is using Composer:

$ composer require ajaximple/forms

Registering

You can enable the extension using your neon config:

extensions:
	AJAXimpleForms: AJAXimple\Forms\AJAXimpleFormsExtension

Injecting

You can simply inject factory in Your Presenters/Services:

public function __construct(AJAXimple\Forms\FormFactory $formFactory)
{
    parent::__construct();
    ....
}

or You can create your own form using:

public function createComponentMyForm()
{
    $form = new AJAXimple\Forms\Form();
    ...
    return $form;
}

Documentation

For details on how to use this package, check out our documentation.

Versions

StateVersionBranchNettePHP
stable^5.0.0Nette4.04.0>=8.4

Development

This package is currently maintaining by these authors:

TonnyJe

Conclusion

This extension requires PHP 8.4, Nette4.0, and it is property of Antonín Jehlář © 2020 - 2025