mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
- Form SDK implementation - Basic Forms - Dynamics Forms - Basic Blocks + Data Model Block - Form Compilation - Turbo integration
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Forms\Block\Expression;
|
|
|
|
use Combodo\iTop\Forms\IO\Format\StringIOFormat;
|
|
use Combodo\iTop\Forms\Register\IORegister;
|
|
|
|
class StringExpressionFormBlock extends AbstractExpressionFormBlock
|
|
{
|
|
// Outputs
|
|
public const OUTPUT_RESULT = 'result';
|
|
|
|
/** @inheritdoc */
|
|
protected function RegisterIO(IORegister $oIORegister): void
|
|
{
|
|
parent::RegisterIO($oIORegister);
|
|
$oIORegister->AddOutput(self::OUTPUT_RESULT, StringIOFormat::class);
|
|
}
|
|
|
|
/**
|
|
* Compute the expression and set the output values.
|
|
*
|
|
* @param string $sEventType
|
|
*
|
|
* @return mixed
|
|
* @throws \Combodo\iTop\Forms\Block\FormBlockException
|
|
* @throws \Combodo\iTop\Forms\Register\RegisterException
|
|
*/
|
|
public function ComputeExpression(string $sEventType): mixed
|
|
{
|
|
$oResult = parent::ComputeExpression($sEventType);
|
|
|
|
// Update output
|
|
$this->GetOutput(self::OUTPUT_RESULT)->SetValue($sEventType, new StringIOFormat($oResult));
|
|
|
|
return $oResult;
|
|
}
|
|
}
|