Download the PHP package nepada/form-renderer without Composer

On this page you can find all versions of the php package nepada/form-renderer. 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 form-renderer

Form Renderer

Build Status Coverage Status Downloads this Month Latest stable

Installation

Via Composer:

Register the extension in config.neon:

Usage

Nette gives you two options how to render a form: 1) Render the whole form manually in Latte template using form macros. This way you have complete control over the rendering, but writing all the templates quickly gets repetitive. 2) Render it using a form renderer, e.g. DefaultFormRenderer from nette/forms. DefaultFormRenderer is very customizable, but it's hard to setup special rendering rules for only some controls of a form, or add support for rendering of new form control types.

nepada/form-renderer is built on top of Latte templates and their powerful blocks, thus combining strengths of manual rendering with DRY principle of form renderers.

TemplateRenderer

You can use TemplateRendererFactory service to create the renderer with preconfigured default template. It renders a form more or less the same way as DefaultFormRenderer.

Customizing rendering

You can customize rendering by importing blocks from a template file - blocks imported later override the previously imported ones of the same name. You can also pass custom variables to the template.

Tips:

For a complete overview of supported blocks and better understanding how the renderer works, please read the code of the template.

Creating custom TemplateRenderer setup from scratch

You don't need to use the default template, you can create one from scratch with blocks tailored to your needs. You can define factory for your custom setup like this:

Just make sure that one of your template files defines block named #form - this is used as a starting point for the rendering.

Filter safeTranslate in templates

For translations the templates may use custom safeTranslate filter. The key differences from standard translate filter are: 1) It avoids translating instances of Nette\Utils\IHtmlString and Latte\Runtime\IHtmlString. 2) It uses a translator from the form instance that is being rendered. 3) If the form has no translator set, than it simply returns the passed string untranslated.

Improved version of n:class macro

In all form templates there is also available an improved version of n:class macro that supports merging of classes from Nette\Utils\Html instances. You can do stuff like <input n:name="$control" n:class="$control->controlPrototype->class, form-control"> and don't need to worry if the class attribute is really represented as a string or array, it all just works.

Bootstrap5Renderer

Form renderer compatible with Bootstrap 5, it internally uses TemplateRenderer with custom template.

The template supports three rendering modes:

Use $renderer->setRenderValidState(true) to enable/disable rendering of "valid" form control state for filled inputs after form submission.

In inline mode the error messages are always rendered as tooltips. In the other modes you can switch between standard and tooltip rendering by calling $renderer->setUseErrorTooltips(true).

You can enable floating labels by $renderer->setUseFloatingLabels(true) (ignored in horizontal mode only). By default, all controls of text, datetime, textarea and select type are rendered with floating label, but you can manually override this on a specific control by setting $input->setOption('floatingLabel', false).

To render a checkbox as a switch, you need to set type option: $checkboxInput->setOption('type', 'switch').

To render radio or checkbox as a toggle button, add btn class (and any desired button styling class) to label prototype: $radio->getItemLabelPrototype()->addClass('btn btn-outline-primary').

Bootstrap5Renderer makes a couple of adjustments to the form before it is passed over to TemplateRenderer: 1) It adds btn btn-primary classes to the control prototype of first SubmitButton in the form, unless there already is such a control in the form. 2) It adds btn btn-secondary classes to the control prototype of every Button control, unless it already has btn class set. 3) Changes type option on all Checkbox, CheckboxList, RadioList controls setup to be rendered as toggle buttons from checkbox/radio to togglebutton/togglebuttonlist. 4) Changes type option on all CheckboxList controls from checkbox to checkboxlist. 5) When floating labels are enabled, it sets boolean floatingLabel option (unless already set) on all controls to indicate whether the floating label should be rendered.

You can change the default renderer configuration from your config.neon:

Bootstrap4Renderer

Form renderer compatible with Bootstrap 4, it internally uses TemplateRenderer with custom template.

The template supports three rendering modes:

Use $renderer->setRenderValidState(true) to enable/disable rendering of "valid" form control state for filled inputs after form submission.

In inline mode the error messages are always rendered as tooltips. In the other modes you can switch between standard and tooltip rendering by calling $renderer->setUseErrorTooltips(true).

You can enable the use of custom form controls by $renderer->setUseCustomControls(true).

To render a checkbox as a switch, you need to set type option: $checkboxInput->setOption('type', 'switch').

Bootstrap4Renderer makes a couple of adjustments to the form before it is passed over to TemplateRenderer: 1) It adds btn btn-primary classes to the control prototype of first SubmitButton in the form, unless there already is such a control in the form. 2) It adds btn btn-secondary classes to the control prototype of every Button control, unless it already has btn class set. 3) Changes type option on all CheckboxList controls from checkbox to checkboxlist.

You can change the default renderer configuration from your config.neon:

Bootstrap3Renderer

Form renderer compatible with Bootstrap 3, it internally uses TemplateRenderer with custom template.

The template supports three rendering modes:

Use $renderer->setRenderValidState(true) to enable/disable rendering of "valid" form control state for filled inputs after form submission.

Bootstrap3Renderer makes a couple of adjustments to the form before it is passed over to TemplateRenderer: 1) It adds btn btn-primary classes to the control prototype of first SubmitButton in the form, unless there already is such a control in the form. 2) It adds btn btn-default classes to the control prototype of every Button control, unless it already has btn class set. 3) Changes type option on all CheckboxList controls from checkbox to checkboxlist.

You can change the default renderer configuration from your config.neon:


All versions of form-renderer with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1.0 <8.5
nette/utils Version ^3.2@dev || ^4.0@dev
nette/forms Version ^3.1@dev
nette/application Version ^3.1.13@dev
latte/latte Version ^3.0@dev
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 nepada/form-renderer contains the following files

Loading the files please wait ....