SetType(Input::INPUT_HIDDEN) ->SetName($sName) ->SetValue($sValue); return $oInput; } public static function MakeStandard(string $sType, string $sName, string $sValue, ?string $sId = null): Input { $oInput = new Input($sId); $oInput->SetType($sType) ->SetName($sName) ->SetValue($sValue); return $oInput; } /** * @see Field component that is better adapter when dealing with a standard iTop form * * @param string $sLabel * @param string $sInputName * @param string|null $sInputValue * @param string|null $sInputId * @param string $sInputType * * @return \Combodo\iTop\Application\UI\Base\Component\Input\InputWithLabel */ public static function MakeForInputWithLabel( string $sLabel, string $sInputName, ?string $sInputValue = null, ?string $sInputId = null, string $sInputType = 'type' ): InputWithLabel { $oInput = new Input($sInputId); $oInput->SetType($sInputType); $oInput->SetValue($sInputValue); return static::MakeInputWithLabel($sInputName, $sLabel, $oInput, $sInputId); } private static function MakeInputWithLabel(string $sName, string $sLabel, Input $oInput, ?string $sId = null) { $oInput->SetName($sName); if (is_null($sId)) { $sId = $oInput->GetId(); } return new InputWithLabel($sLabel, $oInput, $sId); } }