Download the PHP package on5/dynamic-form-bundle without Composer

On this page you can find all versions of the php package on5/dynamic-form-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package dynamic-form-bundle

DynamicFormBundle

Build Status codecov License

The DynamicFormBundle offers helpers for handling dynamic form fields (forms built from definitions stored in the database). This can be helpful for several applications where a site admin (not the developer) needs to configure the fields of a form, like contact forms, surveys or exams, employment applications, etc.

An example SurveyMaker application is available.

Installation

Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.

Applications that use Symfony Flex

Open a command console, enter your project directory and execute:

Applications that don't use Symfony Flex

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

Getting Started

In order to implement this bundle, the developer must create three entities:

  1. A 'container' Entity that holds both:
    1. The form specifications (OneToMany)
    2. The response data (OneToMany)
    3. This may extend AbstractSpecificationContainer
  2. A 'wrapper' Entity that defines the form specification.
    1. This must extend AbstractFormSpecification
  3. A 'response' Entity to contain the data responses to the forms.
    1. This must extend AbstractResponseData

Form Creation: the 'Building' form

The Zikula\Bundle\DynamicFormBundle\Form\Type\FormSpecificationCollectionType formType is a collection of Form Specifications in your form. You must define the entry_type to be your own 'wrapper' Entity (item 2 above). Each member of the collection provides a form type to define all the needed details of a formType (a FormSpecification). Form options are loaded using ajax and dynamically added/replaced in the form.

IMPORTANT NOTE: The Javascript for these actions is automatically loaded. However, the javascript is jQuery-based. Therefore, you must include jQuery in your front-end assets.

Form Creation: The 'Responding' form

The bundle also provides the Zikula\Bundle\DynamicFormBundle\Form\Type\DynamicFieldsType formType. This provides for inclusion of the defined dynamic fields. The formType requires the specificationContainer object. This object implements Zikula\Bundle\DynamicFormBundle\Container\SpecificationContainerInterface. This can be your 'Container' object (item 1 above) or possibly another provider like a Repository. The object must provide a list of form specifications (as defined by the 'wrapper' class). This list can be optionally sorted or filtered as required.

Example:

More information


All versions of dynamic-form-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
doctrine/orm Version ^2.11
symfony/asset Version ^5.4 || ^6.0 || ^7.0
symfony/event-dispatcher-contracts Version ^2.0 || ^3.0
symfony/form Version ^5.4 || ^6.0 || ^7.0
symfony/framework-bundle Version ^5.4 || ^6.0 || ^7.0
symfony/intl Version ^5.4 || ^6.0 || ^7.0
symfony/string Version ^5.4 || ^6.0 || ^7.0
symfony/translation Version ^5.4 || ^6.0 || ^7.0
symfony/translation-contracts Version ^2.0 || ^3.0
symfony/twig-bundle Version ^5.4 || ^6.0 || ^7.0
symfony/validator Version ^5.4 || ^6.0 || ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package on5/dynamic-form-bundle contains the following files

Loading the files please wait ....