ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
with_limits.php File Reference

Go to the source code of this file.

Functions

 with_limits ()
 This example shows how to create and render a basic textarea field with minimum and maximum number of characters limit. More...
 

Function Documentation

◆ with_limits()

with_limits ( )

This example shows how to create and render a basic textarea field with minimum and maximum number of characters limit.

the input is attached to a form.

Definition at line 6 of file with_limits.php.

References $DIC, and $result.

7 {
8  //Step 0: Declare dependencies
9  global $DIC;
10  $ui = $DIC->ui()->factory();
11  $renderer = $DIC->ui()->renderer();
12  $ctrl = $DIC->ctrl();
13  $request = $DIC->http()->request();
14 
15  $min_limit = 3;
16  $max_limit = 20;
17 
18  //Step 1: Define the textarea input field
19  $textarea_input = $ui->input()->field()->textarea("Textarea Input", "Just a textarea input.")->withMinLimit($min_limit)->withMaxLimit($max_limit);
20 
21  //Step 2: Define the form action to target the input processing
22  $DIC->ctrl()->setParameterByClass(
23  'ilsystemstyledocumentationgui',
24  'example_name',
25  'with_limits'
26  );
27  $form_action = $DIC->ctrl()->getFormActionByClass('ilsystemstyledocumentationgui');
28 
29  //Step 3: Define the form and form actions.
30  $form = $ui->input()->container()->form()->standard($form_action, [$textarea_input]);
31 
32  //Step 4: implement some form data processing.
33  if ($request->getMethod() == "POST" && $request->getQueryParams()['example_name'] == 'with_limits') {
34  $form = $form->withRequest($request);
35  $result = $form->getData();
36  } else {
37  $result = "No result yet.";
38  }
39 
40  //Step 5: Render the form with the text input field
41  return
42  "<pre>" . print_r($result, true) . "</pre><br/>" .
43  $renderer->render($form);
44 }
$result
global $DIC
Definition: goto.php:24