N°8772 - Form dependencies manager implementation - WIP

This commit is contained in:
Eric Espie
2025-10-23 15:11:14 +02:00
parent 98c0b11db7
commit fd449d195d
13 changed files with 133 additions and 55 deletions

View File

@@ -7,11 +7,11 @@ use Combodo\iTop\Forms\Block\FormInput;
class AttributeChoiceFormBlock extends ChoiceFormBlock
{
public const INPUT_CLASS_NAME = 'class_name';
public function InitInputs(): void
{
$this->AddInput(new FormInput('class_name', 'string'));
$this->AddInput(new FormInput(self::INPUT_CLASS_NAME, 'string'));
}