N°8772 - dynamic form

This commit is contained in:
Benjamin Dalsass
2025-10-30 10:38:23 +01:00
parent 4c9373d034
commit 68d2038488
40 changed files with 854 additions and 328 deletions

View File

@@ -0,0 +1,21 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Forms\Block\IO\Converter;
use Combodo\iTop\Forms\Block\IO\Format\BooleanIOFormat;
/**
* OQL expression to class converter.
*/
class StringToBooleanConverter extends AbstractConverter
{
/** @inheritdoc */
public function Convert(mixed $oData): ?BooleanIOFormat
{
return new BooleanIOFormat($oData );
}
}