ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
numeric_inputs.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
44 function numeric_inputs()
45 {
46  //Step 0: Declare dependencies
47  global $DIC;
48  $ui = $DIC->ui()->factory();
49  $renderer = $DIC->ui()->renderer();
50  $request = $DIC->http()->request();
51 
52  //Step 1: Declare the numeric input
53  $number_input = $ui->input()->field()
54  ->numeric("Some Number", "Put in a number.")
55  ->withValue(133);
56 
57  $number_input2 = $number_input->withRequired(true)->withValue('');
58 
59  //Step 2, define form and form actions
60  $form = $ui->input()->container()->form()->standard('#', [
61  'n1' => $number_input,
62  'n2' => $number_input2
63  ]);
64 
65  //Step 3, implement some form data processing.
66  if ($request->getMethod() == "POST") {
67  $form = $form->withRequest($request);
68  $result = $form->getData();
69  } else {
70  $result = "No result yet.";
71  }
72 
73  //Return the rendered form
74  return
75  "<pre>" . print_r($result, true) . "</pre><br/>" .
76  $renderer->render($form);
77 }
$renderer
global $DIC
Definition: shib_login.php:22
numeric_inputs()
description: > Base example showing how to plug a numeric input into a form.