N°8771 - Add Symfony form component to iTop core

- IO debug
This commit is contained in:
Benjamin Dalsass
2025-10-28 15:22:29 +01:00
parent c2fcf4144b
commit 5d335b39d2
36 changed files with 1348 additions and 468 deletions

View File

@@ -0,0 +1,29 @@
<?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\AbstractFormBlock;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
/**
* Form block for text area.
*
*/
class TextAreaFormBlock extends AbstractFormBlock
{
/** @inheritdoc */
public function GetFormType(): string
{
return TextareaType::class;
}
/** @inheritdoc */
public function InitOptions(): array
{
return [];
}
}