9 $ui = $DIC->ui()->factory();
10 $renderer = $DIC->ui()->renderer();
11 $request = $DIC->http()->request();
12 $refinery = $DIC->refinery();
14 $sum = $refinery->custom()->transformation(
function ($vs) {
17 return "$l + $r = $s";
20 $from_name = $refinery->custom()->transformation(
function ($v) {
24 case "three":
return 3;
25 case "four":
return 4;
26 case "five":
return 5;
28 case "seven":
return 7;
29 case "eight":
return 8;
30 case "nine":
return 9;
31 case "ten":
return 10;
33 throw new \LogicException(
"PANIC!");
37 $valid_number = $refinery->custom()->constraint(
function ($v) {
38 return in_array($v, [
"one",
"two",
"three",
"four",
"five",
"six",
"seven",
"eight",
"nine",
"ten"]);
39 },
"This is not a number I know...");
43 $number_input = $ui->input()->field()
44 ->text(
"number",
"Put in the name of a number from one to ten.")
45 ->withAdditionalTransformation($valid_number)
46 ->withAdditionalTransformation($from_name);
49 $DIC->ctrl()->setParameterByClass(
50 'ilsystemstyledocumentationgui',
54 $form_action = $DIC->ctrl()->getFormActionByClass(
'ilsystemstyledocumentationgui');
58 $form = $ui->input()->container()->form()->standard(
60 [ $number_input->withLabel(
"Left")
61 , $number_input->withLabel(
"Right")
64 ->withAdditionalTransformation($sum);
67 if ($request->getMethod() ==
"POST" 68 && $request->getQueryParams()[
'example_name'] ==
'data_processing') {
69 $form = $form->withRequest($request);
77 "<pre>" . print_r(
$result,
true) .
"</pre><br/>" .
78 $renderer->render($form);
data_processing()
Example showing how constraints and transformation can be attached to a form.