guave/conditionalformfield-bundle

Conditional Form Field for Contao 4.9+

1.1.0 2022-11-11 14:04 UTC

This package is auto-updated.

Last update: 2024-05-06 17:10:18 UTC


README

This contao module allows you to set conditional fields in a for to hide or show based on a different field

Requirements

  • Contao 4.9+ (tested up to 4.13)
  • PHP 7.4 or 8.0+

Install

$ composer require guave/conditionalformfield-bundle

Examples

only display the field when value of field 'foo' is 'bar' and 'bla' is 'yes'

$foo == 'bar' && $bla == 'yes'

You can also check the array (e.g. multiple checkboxes or select menu):

in_array('bar', $foo)

To validate a single checkbox simply compare its value:

$foo == '1'