mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
21 lines
337 B
PHP
21 lines
337 B
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Forms\Block\DataModel;
|
|
|
|
use Combodo\iTop\Forms\Block\FormBlock;
|
|
use Combodo\iTop\Forms\Block\FormOutput;
|
|
|
|
class OqlFormBlock extends FormBlock
|
|
{
|
|
|
|
|
|
public function __construct(array $aOptions = [])
|
|
{
|
|
parent::__construct($aOptions);
|
|
|
|
$this->AddOutput(new FormOutput('selected_class', 'string'));
|
|
}
|
|
|
|
|
|
|
|
} |