ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
TestSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
25 abstract class TestSettings
26 {
27  protected int $test_id;
28 
29  public function __construct(int $test_id)
30  {
31  $this->test_id = $test_id;
32  }
33 
34  public function getTestId(): int
35  {
36  return $this->test_id;
37  }
38  public function withTestId(int $test_id): self
39  {
40  $clone = clone $this;
41  $clone->test_id = $test_id;
42  return $clone;
43  }
44 
45  abstract public function toForm(
49  array $environment = null
50  ): FormInput;
51 
52  abstract public function toStorage(): array;
53 }
This is what a factory for input fields looks like.
Definition: Factory.php:28
$lng
withTestId(int $test_id)
__construct(int $test_id)
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment=null)
This describes inputs that can be used in forms.
Definition: FormInput.php:31
Refinery Factory $refinery