test and corrections

This commit is contained in:
Benjamin Dalsass
2025-11-27 16:49:43 +01:00
parent 8401aa1aec
commit e67fcbcfdc
5 changed files with 35 additions and 21 deletions

View File

@@ -34,7 +34,7 @@ class OqlFormBlock extends TextAreaFormBlock
protected function RegisterOptions(OptionsRegister $oOptionsRegister): void
{
parent::RegisterOptions($oOptionsRegister);
$oOptionsRegister->SetOption('with_ai_button', true);
$oOptionsRegister->SetOption('with_ai_button', false);
}
/** @inheritdoc */

View File

@@ -121,6 +121,14 @@ class IORegister
return $this;
}
/**
* @param string $sName
* @param string $sType
* @param AbstractConverter|null $oConverter
*
* @return void
* @throws RegisterException
*/
public function AddOutput(string $sName, string $sType, AbstractConverter $oConverter = null): void
{
$oFormOutput = new FormOutput($sName, $sType, $this->oFormBlock, $oConverter);