ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
FilterInput.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
35interface FilterInput extends FormInput
36{
40 public function isComplex(): bool;
41}
This interface must be implemented by all Inputs that support Filter Containers.
Definition: FilterInput.php:36
isComplex()
Is this input complex and must be rendered in a Popover when using it in a Filter?
This describes inputs that can be used in forms.
Definition: FormInput.php:33