19 declare(strict_types=1);
40 $ui = $DIC->ui()->factory();
43 $request = $DIC->http()->request();
47 $text_input = $ui->input()->field()->text(
"Enter a name",
"Needs to start with an H");
48 $custom_constraint =
$refinery->custom()->constraint(
function ($value) {
49 return (substr($value, 0, 1) ===
'H') ?
true :
false;
50 },
"Name does not start with an H");
51 $text_input = $text_input->withRequired(
true, $custom_constraint);
54 $form = $ui->input()->container()->form()->standard(
'#', [ $text_input]);
57 if ($request->getMethod() ==
"POST") {
58 $form = $form->withRequest($request);
59 $result = $form->getData();
61 $result =
"No result yet.";
66 "<pre>" . print_r($result,
true) .
"</pre><br/>" .