N°8771 - Add Symfony form component to iTop core

- IO debug
This commit is contained in:
Benjamin Dalsass
2025-10-24 15:42:33 +02:00
parent a4fbe90579
commit 212309e938
4 changed files with 15 additions and 30 deletions

View File

@@ -10,6 +10,8 @@ use Combodo\iTop\Forms\Block\Base\ChoiceFormBlock;
use Combodo\iTop\Forms\Block\IO\Format\AttributeIOFormat;
use Combodo\iTop\Forms\Block\IO\Format\ClassIOFormat;
use Combodo\iTop\Forms\Block\IO\FormInput;
use Combodo\iTop\Forms\FormType\AttributeChoiceType;
use Combodo\iTop\Forms\FormType\AttributeValueChoiceType;
/**
* Form block for choice of class attribute values.
@@ -65,4 +67,10 @@ class AttributeValueChoiceFormBlock extends ChoiceFormBlock
return $aOptions;
}
/** @inheritdoc */
public function GetFormType(): string
{
return AttributeValueChoiceType::class;
}
}