N°8772 - dynamic form

This commit is contained in:
Benjamin Dalsass
2025-11-07 11:00:15 +01:00
parent b6ec29c6ec
commit a448f668bc
11 changed files with 177 additions and 38 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Forms\Block\Base;
use Combodo\iTop\Forms\Block\AbstractTypeFormBlock;
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
/**
* Form block for string.
*
*/
class IntegerFormBlock extends AbstractTypeFormBlock
{
/** @inheritdoc */
public function GetFormType(): string
{
return IntegerType::class;
}
}