Merge branch '5.4' into 5.5
authorMarcel Werk <burntime@woltlab.com>
Sun, 17 Oct 2021 09:37:37 +0000 (11:37 +0200)
committerMarcel Werk <burntime@woltlab.com>
Sun, 17 Oct 2021 09:37:37 +0000 (11:37 +0200)
1  2 
docs/php/api/form_builder/dependencies.md

index cb4f49512f5907b254023032d600d1e8e8db8714,a7563725c68f77e0d88b3d9080fde844d4243190..7816d86f56e82300edc33881aaa318c39e57e8f9
@@@ -50,23 -50,12 +50,23 @@@ When the form is built, all dependencie
  
  ## Default Dependencies
  
 -WoltLab Suite Core delivers the following two default dependency classes by default:
 +WoltLab Suite Core delivers the following default dependency classes by default:
  
 -- `NonEmptyFormFieldDependency` can be used to ensure that a node is only shown if the value of the referenced form field is not empty (being empty is determined using PHP’s `empty` function).
 -- `ValueFormFieldDependency` can be used to ensure that a node is only shown if the value of the referenced form field is from a specified list of of values (see methods `values($values)` and `getValues()`).
 +### `NonEmptyFormFieldDependency`
 +
 +`NonEmptyFormFieldDependency` can be used to ensure that a node is only shown if the value of the referenced form field is not empty (being empty is determined using PHP’s `empty` function).
 +
 +### `ValueFormFieldDependency`
 +
 +`ValueFormFieldDependency` can be used to ensure that a node is only shown if the value of the referenced form field is from a specified list of of values (see methods `values($values)` and `getValues()`).
-   Additionally, via `negate($negate = true)` and `isNegated()`, the locic can also be inverted by requiring the value of the referenced form field not to be from a specified list of values.
+   Additionally, via `negate($negate = true)` and `isNegated()`, the logic can also be inverted by requiring the value of the referenced form field not to be from a specified list of values.
  
 +### `ValueIntervalFormFieldDependency`
 +
 +!!! info "Only available since version 5.5."
 +
 +`ValueIntervalFormFieldDependency` can be used to ensure that a node is only shown if the value of the referenced form field is in a specific interval whose boundaries are set via `minimum(?float $minimum = null)` and `maximum(?float $maximum = null)`.
 +
  
  ## JavaScript Implementation