19 declare(strict_types=1);
38 $ui = $DIC->ui()->factory();
40 $request = $DIC->http()->request();
42 $text_input = $ui->input()->field()
43 ->text(
"Required Input",
"User needs to fill this field")
46 $section = $ui->input()->field()->section(
48 "Section with required field",
49 "The Form should show an explaining hint at the bottom" 52 $DIC->ctrl()->setParameterByClass(
53 'ilsystemstyledocumentationgui',
57 $form_action = $DIC->ctrl()->getFormActionByClass(
'ilsystemstyledocumentationgui');
59 $form = $ui->input()->container()->form()->standard($form_action, [$section]);
61 if ($request->getMethod() ==
"POST" 62 && array_key_exists(
'example_name', $request->getQueryParams())
63 && $request->getQueryParams()[
'example_name'] ==
'required') {
64 $form = $form->withRequest($request);
65 $result = $form->getData();
67 $result =
"No result yet.";
71 "<pre>" . print_r($result,
true) .
"</pre><br/>" .